Interface ICircleHollowProfile
Defines a hollow circular section profile from
Diameter and
WallThickness.
Inherited Members
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface ICircleHollowProfile : IProfile
Remarks
ICircleHollowProfile inherits IProfile.
The hollow circle is centered at the origin of its local coordinate system.
Properties
Diameter
The diameter of the hollow circle.
Declaration
Length Diameter { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the diameter is not a positive and finite value. |
WallThickness
The wall thickness of the hollow circle.
Declaration
Length WallThickness { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the wall thickness is not a positive and finite value. |
Methods
Create(Length, Length)
Creates a new ICircleHollowProfile profile from its Diameter and WallThickness.
Declaration
static ICircleHollowProfile Create(Length diameter, Length wallThickness)
Parameters
Type | Name | Description |
---|---|---|
OasysUnits.Length | diameter | Defines the profile's diameter. |
OasysUnits.Length | wallThickness | Defines the profile's wall thickness. |
Returns
Type | Description |
---|---|
ICircleHollowProfile | Hollow circle profile with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When any of its dimensions is not a positive and finite value. |