I am trying to configure a load case mass conversion table using the FEM Design 23 API .NET.
I discovered the class FemDesign.Loads.MassConversion, which has just one private and one internal constructor, rendering it inaccessible for client applications.
Is there another object available that allows programmatic setup of the load case mass conversion table?
I have figured it out.
There’s a class called MassConversionTable, which has a public constructor: MassConversionTable(List factors, List loadCases).
To serialize the model with mass conversion, you need to add an instance of the MassConversionTable object as you would with any other load, using the FemDesign.Model.AddEntities method.
You are spot on!
For anyone interested in dynamic, have a look at the example in the link
1 Like