Boolean MaterialModel.Suppressed { get; set; }

Gets or sets whether this material model should be used in the analysis.

Examples

In this example the material has two Isotropic Hardening models (Multilinear and Bilinear) but only one can be active. The initial analysis will be run by suppressing the Multilinear model. mat=[mat for mat in Model.Materials.Children if "test1" == mat.Name][0] miso=[mm for mm in mat.MaterialModels if "Multilinear Isotropic Hardening" == mm.Name][0] miso.Suppressed=True