TAGGED: frequency-response
-
-
August 7, 2023 at 2:52 am
BÙI HIẾU
Subscriberi'm working on simulating cubesat's shock response during its launch. Although I have read many documents, I still do not understand how to make the shock response spectrum in shock response. Or can someone give me the steps to simulate it. I'm working to simulate models and don't know what to do next with them.
-
August 7, 2023 at 2:27 pm
dlooman
Ansys EmployeeA Shock Response Spectrum can be created with the APDL command, RESP, using the transient time-history. A blog on this topic is pasted below.
In the input below the POST26 RESP command is used to compute the shock response spectrum for a 20g triangular acceleration of 10 milli-sec duration. The time-history includes time after the shock load for the lower frequencies to reach their peak displacement value. The input assumes that a modal analysis has been done and expanded.
! After a modal analysis...
pi=acos(-1)
amplitude=20Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ! pulse amplitude (20 g)
width=0.01Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ! pulse width (10 milli-secs)
Â
*dim,acel,table,4,1
acel(1,0)=0.0, 0.5*width, width, 5.0*width
acel(1,1)=0.0, amplitude, 0.0, 0.0
Â
/axlab,x,TIMEÂ Â Â Â Â Â Â Â Â Â Â Â Â
/axlab,y,ACEL (g)
*vplot,acel(1,0),acel(1,1)Â Â Â Â ! verify acceleration input
Â
Â
Â
The table array, acel, can now be used as input to the RESP command in the time-history post-processor.
Â
/post26
Â
store,alloc,10Â Â Â Â Â Â Â Â ! allocate the number of frequencies to be solved for
vput,acel(1,0),1,0Â Â Â Â ! variable 1 is time values
vput,acel(1,1),2,0Â Â Â Â ! variable 2 is acceleration values
data,5,1,10,1,Frequncy ! variable 5 is frequency list (I love this old command!)Â
(10F5.1)
10.0 20.0 30.0 40.0 50.0 60.0 70.0 80.0 90.0 100.0
Â
! Use parameters for RESP command input to make more readable
Spec=6Â Â Â Â Â Â Â Â Â Â Â Â ! variable to contain spectrum output
Freq=5Â Â Â Â Â Â Â Â Â Â Â Â ! variable with frequencies to be solved for
Inp_Acel=2Â Â Â Â Â Â Â Â ! variable with acceleration input
Out_Type=3Â Â Â Â Â Â Â Â ! create acceleration spectrum
Damp=0.05Â Â Â Â Â Â Â Â Â ! damping (ratio to critical) to be used
Tinc=0.0005Â Â Â Â Â Â Â ! integration time step, 20 pts per cycle at 100 hz
Inp_Type=1Â Â Â Â Â Â Â Â ! acceleration input, new at 14.0
Â
resp,Spec,Freq,Inp_Acel,Out_Type,Damp,Tinc,,,Inp_Type Â
Â
/title,Response Spectrum for %amplitude%g, %width*1000% m-sec shock load (5% Damping)
/axlab,x,Frequency (Hz)
/axlab,y,Peak Acceleration (g)
xvar,Freq         ! x axis is frequency
plvar,Spec        ! plot acceleration spectrum
Â
Â
So with 15 or 20 lines of APDL input you can create your own shock response spectrum based on any arbitrary shape, peak value or duration of loading. To provide a complete overview of the spectrum process the commands below retrieve the spectrum values into an array named SRS and input the values in a sample spectrum analysis.
Â
*dim,SRS,,10
vget,SRS,Spec        ! retrieve variable 6 (Spec) into array parameter SRS
*stat,SRS(1)
Â
/solu
antype,spectrum
spopt,sprs
sed,1Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ! x direction
svtype,2,386.4Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ! accel spectrum, factor to convert g values to in/s^2
freq,10,20,30,40,50,60,70,80,90 ! limit of 9 frequencies per line
freq,100
sv,Damp,SRS(1),SRS(2),SRS(3),SRS(4),SRS(5),SRS(6),SRS(7),SRS(8),SRS(9),
sv,Damp,SRS(10)
svplot,,Damp                   ! plot spectrum to verify input
Â
-
August 8, 2023 at 2:01 am
BÙI HIẾU
SubscriberThank you for your help. I will try itÂ
Â
-
-
August 7, 2023 at 3:57 pm
peteroznewman
SubscriberIf you have matlab, you can use the Vibrationdata app package to create an SRS from acceleration-time history data.
If you don't have matlab, you can use the runtime Vibrationdata program to create an SRS from acceleration-time history data.
-
- The topic ‘simulation of cubesat shock response during launch’ is closed to new replies.
-
3572
-
1193
-
1076
-
1063
-
952
© 2025 Copyright ANSYS, Inc. All rights reserved.