Version: 13.0

    Show / Hide Table of Contents

    Class GeometryModellerSettings

    Inheritance
    System.Object
    System.MarshalByRefObject
    SMT.MastaAPIUtility.MarshalByRefObjectPermanent
    APIBase
    PersistentSingleton
    PerMachineSettings
    GeometryModellerSettings
    Implements
    System.IEquatable<APIBase>
    Inherited Members
    PerMachineSettings.ResetToDefaults()
    PersistentSingleton._parent
    PersistentSingleton.Save()
    PersistentSingleton.ReportNames
    PersistentSingleton.OutputDefaultReportTo(String)
    PersistentSingleton.GetDefaultReportWithEncodedImages()
    PersistentSingleton.OutputActiveReportTo(String)
    PersistentSingleton.OutputActiveReportAsTextTo(String)
    PersistentSingleton.GetActiveReportWithEncodedImages()
    PersistentSingleton.OutputNamedReportTo(String, String)
    PersistentSingleton.OutputNamedReportAsMastaReport(String, String)
    PersistentSingleton.OutputNamedReportAsTextTo(String, String)
    PersistentSingleton.GetNamedReportWithEncodedImages(String)
    APIBase.DisconnectFromMASTA()
    APIBase.GetProperty<T>(String)
    APIBase.SetProperty(String, Object)
    APIBase.cacheRpds
    APIBase.clearCachedRpds()
    APIBase.getNamedObjectList<TElementType>(String)
    APIBase.getExpandableProperty<TReturnType>(String)
    APIBase.callPartialMethod(String, (T1, T2)<Type, Object>[])
    APIBase.callPartialMethod<T>(String, T)
    APIBase.callPartialMethod<T>(String, (T1, T2)<Type, Object>, T)
    APIBase.callPartialMethod<T>(String, (T1, T2)<Type, Object>, (T1, T2)<Type, Object>, T)
    APIBase.callPartialMethod<T>(String, (T1, T2)<Type, Object>, (T1, T2)<Type, Object>, (T1, T2)<Type, Object>, T)
    APIBase.callPartialMethod<T1, T2>(String, (T1, T2)<Type, Object>, T1, T2)
    APIBase.getPartialProperty(String)
    APIBase.setPartialProperty(String, Object)
    APIBase.IsValid(String)
    APIBase.IsReadOnly(String)
    APIBase.isInvalid
    APIBase.DocumentationUrl()
    APIBase.ToString()
    APIBase.RunPython<T>(String, String, Object)
    APIBase.RunPythonCode<T>(String, String, Object)
    APIBase.RunPythonCode<T>(String)
    APIBase.RunPython<T>(String, String)
    APIBase.CreateObjRef(Type)
    APIBase.RunPython(String, String, Object)
    APIBase.createWrappedRange(Double, Double)
    APIBase.createWrappedVector2D(Double, Double)
    APIBase.createWrappedPosition3D(Double, Double, Double)
    APIBase.Equals(APIBase)
    APIBase.GetHashCode()
    APIBase.Equals(Object)
    SMT.MastaAPIUtility.MarshalByRefObjectPermanent.InitializeLifetimeService()
    Namespace: SMT.MastaAPI.NodalAnalysis.GeometryModellerLink
    Assembly: SMT.MastaAPI.13.0.dll
    Syntax
    public class GeometryModellerSettings : PerMachineSettings, IEquatable<APIBase>

    Properties

    AutoDetectedGeometryModellerPath

    Declaration
    public ListWithSelectedItem<string> AutoDetectedGeometryModellerPath { get; set; }
    Property Value
    Type Description
    ListWithSelectedItem<System.String>

    DisableIntelMKLInternalMultithreading

    Use this to fix errors when opening Geometry Modeller of the form "OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.". The fix sets an environment variable for the Geometry Modeller process, 'MKL_THREADING_LAYER=sequential' which prevents the Intel Math Kernel Library (MKL) from running on multiple threads for Geometry Modeller.

    Declaration
    public bool DisableIntelMKLInternalMultithreading { get; set; }
    Property Value
    Type Description
    System.Boolean

    FolderPath

    Declaration
    public string FolderPath { get; }
    Property Value
    Type Description
    System.String

    GeometryModellerArguments

    If problems occur launching Geometry Modeller from MASTA, additional command line arguments can be specified here.

    Declaration
    public string GeometryModellerArguments { get; set; }
    Property Value
    Type Description
    System.String

    HideGeometryModellerInsteadOfClosing

    Declaration
    public bool HideGeometryModellerInsteadOfClosing { get; set; }
    Property Value
    Type Description
    System.Boolean

    IsGeometryModellerConnected

    Declaration
    public bool IsGeometryModellerConnected { get; }
    Property Value
    Type Description
    System.Boolean

    NoLicenceForGeometryModeller

    Declaration
    public string NoLicenceForGeometryModeller { get; }
    Property Value
    Type Description
    System.String

    ShowMessageWhenHidingGeometryModeller

    Declaration
    public bool ShowMessageWhenHidingGeometryModeller { get; set; }
    Property Value
    Type Description
    System.Boolean

    UseAutoDetectedGeometryModellerPath

    Declaration
    public bool UseAutoDetectedGeometryModellerPath { get; set; }
    Property Value
    Type Description
    System.Boolean

    Methods

    LaunchGeometryModeller(String)

    Declaration
    public MethodOutcome LaunchGeometryModeller(string filePath = null)
    Parameters
    Type Name Description
    System.String filePath
    Returns
    Type Description
    MethodOutcome

    SelectFolderPath(String)

    Declaration
    public void SelectFolderPath(string path)
    Parameters
    Type Name Description
    System.String path

    Implements

    System.IEquatable<T>

    Extension Methods

    UtilityMethods.IsReadOnly<T>(T, Expression<Func<T, Object>>)
    UtilityMethods.IsValid<T>(T, Expression<Func<T, Object>>)
    UtilityMethods.IsMethodValid<T>(T, Expression<Func<T, Action>>)
    UtilityMethods.IsMethodReadOnly<T>(T, Expression<Func<T, Action>>)
    Back to top