|
FactoryMaterialIsotropicMaterial Method
|
create a new isotropic material
Namespace:
KarambaCommon.Factories
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic FemMaterial IsotropicMaterial(
string family,
string name,
double E,
double Gip,
double Gtr,
double gamma,
double fy,
double alphaT,
Nullable<Color> color = null
)
Public Function IsotropicMaterial (
family As String,
name As String,
E As Double,
Gip As Double,
Gtr As Double,
gamma As Double,
fy As Double,
alphaT As Double,
Optional color As Nullable(Of Color) = Nothing
) As FemMaterial
public:
FemMaterial^ IsotropicMaterial(
String^ family,
String^ name,
double E,
double Gip,
double Gtr,
double gamma,
double fy,
double alphaT,
Nullable<Color> color = nullptr
)
member IsotropicMaterial :
family : string *
name : string *
E : float *
Gip : float *
Gtr : float *
gamma : float *
fy : float *
alphaT : float *
?color : Nullable<Color>
(* Defaults:
let _color = defaultArg color null
*)
-> FemMaterial
Parameters
- family
- Type: SystemString
family name - name
- Type: SystemString
name - E
- Type: SystemDouble
Young's Modulus [kN/m2] - Gip
- Type: SystemDouble
in-plane shear modulus [kN/m2] - Gtr
- Type: SystemDouble
transverse shear modulus [kN/m2] - gamma
- Type: SystemDouble
specific weight [kN/m3] - fy
- Type: SystemDouble
material strength [kN/m2] - alphaT
- Type: SystemDouble
coefficient of thermal expansion - color (Optional)
- Type: SystemNullableColor
color
Return Value
Type:
FemMaterialnew material
See Also