Skip to content

Commit b4e8662

Browse files
authored
Update Dynamic_FSI_Python.md
1 parent 986dd52 commit b4e8662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_tutorials/multiphysics/Unsteady_FSI_Python/Dynamic_FSI_Python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,9 @@ Available keywords for the config file:
217217

218218
* __MOVING_MARKER__ (string): name for the interface marker
219219

220-
* __IMPOSED_MODES__ (dictionary): In case of imposed motion this list contains the modes with imposed motion and the type of motion. Example: ```IMPOSED_MODES={0:"SINUSOIDAL",3:"BLENDED_STEP",4:"SINUSOIDAL"}```. If more imposed motions have to be superposed on the same mode, we can write: ```IMPOSED_MODES={0:["SINUSOIDAL","BLENDED_STEP"]}```
220+
* __IMPOSED_MODES__ (dictionary): In case of imposed motion this list contains the modes with imposed motion and the type of motion. Example: ```IMPOSED_MODES={0:["SINUSOIDAL"],3:["BLENDED_STEP"],4:["SINUSOIDAL"]}```. If more imposed motions have to be superposed on the same mode, we can write: ```IMPOSED_MODES={0:["SINUSOIDAL","BLENDED_STEP"]}```
221221

222-
* __IMPOSED_PARAMETERS__ (dictionary): Depending on what was selected above, different parameters are required to complete the definition of motion. For example, in case of a sinusoidal motion, it is required to know if there is a bias, the initial time, the frequency and the amplitude. If we want to specify a sine with no bias, initial time of 5s, 20 of amplitude and 10 Hz of frequency for mode 7, we would write: ```IMPOSED_PARAMETERS={6:{"SINUSOIDAL":{"BIAS":0.0, "AMPLITUDE":20.0, "FREQUENCY":10.0, "TIME_0":5.0}}}```. Please note that more imposed motions can be superposed on the same mode simply adding more entries for the same mode: ```IMPOSED_PARAMETERS={6:{"SINUSOIDAL":{...}, "BLENDED_STEP":{...}}}```. For more information about these parameters please look at the module ```pysu2_nastran.py```
222+
* __IMPOSED_PARAMETERS__ (dictionary): Depending on what was selected above, different parameters are required to complete the definition of motion. For example, in case of a sinusoidal motion, it is required to know if there is a bias, the initial time, the frequency and the amplitude. If we want to specify a sine with no bias, initial time of 5s, 20 of amplitude and 10 Hz of frequency for mode 7, we would write: ```IMPOSED_PARAMETERS={6:[{"BIAS":0.0, "AMPLITUDE":20.0, "FREQUENCY":10.0, "TIME_0":5.0}]}```. Please note that more imposed motions can be superposed on the same mode simply adding more entries for the same mode: ```IMPOSED_PARAMETERS={6:[{...},{...}]}```. For more information about these parameters please look at the module ```pysu2_nastran.py```. Note that the order of the parameter dictionaries must be coincident with the order defined in IMPOSED_MODES dictionary.
223223

224224
* __INITIAL_MODES__ (dictionary): list containing the initial amplitudes of the modes. Example is {0:0.1,1:0.0,3:5.0,...}
225225

0 commit comments

Comments
 (0)