compas-dev / compas_fea

COMPAS interface to common Finite Element Analysis software.
https://compas.dev/compas_fea
MIT License
36 stars 18 forks source link

loads porpagation in Abaqus #92

Closed franaudo closed 5 years ago

franaudo commented 5 years ago

In abaqus the loads from a previous step by default are propagated to the next one. To change the default behavior it is possible to add the key word OP=NEW to the step definition. OP can take the value NEW or MOD.

it should work like this:

This applies only to the same type of load: for example, specifying OP=NEW for a concentrated force will not delete the gravity load (I am not sure about this, I will check...)

More info here

andrewliew commented 5 years ago

Altered the GeneralStep object to have the .modify attribute (more appropriate than .propagate). If this is True (default) then OP=MOD, if False it switches to OP=NEW.