Model.loadtype#
- Model.loadtype(config, type)#
Sets the global load type variable.
- Parameters:
Examples#
Set the type of forces to 2#import hm import hm.entities as ent model = hm.Model() model.loadtype(config="1", type="2")
Set the type of forces to MBFRC in OptiStruct user profile#import hm import hm.entities as ent model = hm.Model() model.loadtype(config="force", type="MBFRC")
Note
After the type has been set, all loads of the corresponding configuration are set to the value of type.