C# Класс SharpFE.ModelTypeExtensions

This is an extension to the ModelType enumeration which provides useful information about the degrees of freedom each model type allows.
Показать файл Открыть проект

Открытые методы

Метод Описание
GetAllowedDegreesOfFreedomForBoundaryConditions ( this modelType ) : IList

The allowed degrees of freedom in which the applied forces and constraints can be created.

GetAllowedDegreesOfFreedomForGeometry ( this modelType ) : IList

The allowed degrees of freedom in which the model geometry can be created.

GetDimensions ( this modelType ) : GeometryDimensionality

Indicates how many dimensions the geometry can be created in by this type of model type.

IsAllowedDegreeOfFreedomForBoundaryConditions ( this modelType, DegreeOfFreedom candidate ) : bool

Indicates whether a degree of freedom is allowed for the creation of boundary conditions by this model type.

IsAllowedDegreeOfFreedomForGeometry ( this modelType, DegreeOfFreedom candidate ) : bool

Indicates whether a degree of freedom is allowed for the creation of geometry by this model type.

Описание методов

GetAllowedDegreesOfFreedomForBoundaryConditions() публичный статический Метод

The allowed degrees of freedom in which the applied forces and constraints can be created.
public static GetAllowedDegreesOfFreedomForBoundaryConditions ( this modelType ) : IList
modelType this The type of model which will then dictate the allowed degrees of freedom
Результат IList

GetAllowedDegreesOfFreedomForGeometry() публичный статический Метод

The allowed degrees of freedom in which the model geometry can be created.
public static GetAllowedDegreesOfFreedomForGeometry ( this modelType ) : IList
modelType this The type of model which ultimately dictates the allowed degrees of freedom
Результат IList

GetDimensions() публичный статический Метод

Indicates how many dimensions the geometry can be created in by this type of model type.
public static GetDimensions ( this modelType ) : GeometryDimensionality
modelType this The which dictates the geometrical dimensions.
Результат GeometryDimensionality

IsAllowedDegreeOfFreedomForBoundaryConditions() публичный статический Метод

Indicates whether a degree of freedom is allowed for the creation of boundary conditions by this model type.
public static IsAllowedDegreeOfFreedomForBoundaryConditions ( this modelType, DegreeOfFreedom candidate ) : bool
modelType this The which dictates the allowable degrees of freedom.
candidate DegreeOfFreedom The degree of freedom to check as to whether it is allowed.
Результат bool

IsAllowedDegreeOfFreedomForGeometry() публичный статический Метод

Indicates whether a degree of freedom is allowed for the creation of geometry by this model type.
public static IsAllowedDegreeOfFreedomForGeometry ( this modelType, DegreeOfFreedom candidate ) : bool
modelType this The which dictates the allowable degrees of freedom.
candidate DegreeOfFreedom The degree of freedom to check as to whether it is allowed.
Результат bool