|
DistributedLoadTryComputeValueFromPosition Method
|
Namespace:
Karamba.Loads.Beam
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic bool TryComputeValueFromPosition(
double position,
out double value,
out bool isOnLoadPosition
)
Public Function TryComputeValueFromPosition (
position As Double,
<OutAttribute> ByRef value As Double,
<OutAttribute> ByRef isOnLoadPosition As Boolean
) As Boolean
public:
bool TryComputeValueFromPosition(
double position,
[OutAttribute] double% value,
[OutAttribute] bool% isOnLoadPosition
)
member TryComputeValueFromPosition :
position : float *
value : float byref *
isOnLoadPosition : bool byref -> bool
Parameters
- position
- Type: SystemDouble
The position of the value to compute. - value
- Type: SystemDouble
The computed value of the load at position. - isOnLoadPosition
- Type: SystemBoolean
True if the given position coincides with a load-collocation point.
Return Value
Type:
Boolean if the given position is valid.
otherwise and
value will be
NaN.
See Also