CrossSectionExtensionsGetWettedPerimeterGeometric Method

Get geometric wetted perimeter.

The geometric wetted perimeter is the sum of all cross-section line segments below a given water level. It can be limited to be not smaller than storage width by using doLimit flag. A hydraulic wetted perimeter is returned in case a cross section has no raw cross section points.

Definition

Namespace: DHI.Mike1D.CrossSectionModule
Assembly: DHI.Mike1D.CrossSectionModule (in DHI.Mike1D.CrossSectionModule.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public static double GetWettedPerimeterGeometric(
	this ICrossSection cs,
	double waterLevel,
	CrossSectionBufferLevel? wlBuffer = null,
	bool doLimit = true
)

Parameters

cs  ICrossSection

[Missing <param name="cs"/> documentation for "M:DHI.Mike1D.CrossSectionModule.CrossSectionExtensions.GetWettedPerimeterGeometric(DHI.Mike1D.CrossSectionModule.ICrossSection,System.Double,System.Nullable{DHI.Mike1D.CrossSectionModule.CrossSectionBufferLevel},System.Boolean)"]

waterLevel  Double

[Missing <param name="waterLevel"/> documentation for "M:DHI.Mike1D.CrossSectionModule.CrossSectionExtensions.GetWettedPerimeterGeometric(DHI.Mike1D.CrossSectionModule.ICrossSection,System.Double,System.Nullable{DHI.Mike1D.CrossSectionModule.CrossSectionBufferLevel},System.Boolean)"]

wlBuffer  NullableCrossSectionBufferLevel  (Optional)

[Missing <param name="wlBuffer"/> documentation for "M:DHI.Mike1D.CrossSectionModule.CrossSectionExtensions.GetWettedPerimeterGeometric(DHI.Mike1D.CrossSectionModule.ICrossSection,System.Double,System.Nullable{DHI.Mike1D.CrossSectionModule.CrossSectionBufferLevel},System.Boolean)"]

doLimit  Boolean  (Optional)

[Missing <param name="doLimit"/> documentation for "M:DHI.Mike1D.CrossSectionModule.CrossSectionExtensions.GetWettedPerimeterGeometric(DHI.Mike1D.CrossSectionModule.ICrossSection,System.Double,System.Nullable{DHI.Mike1D.CrossSectionModule.CrossSectionBufferLevel},System.Boolean)"]

Return Value

Double

[Missing <returns> documentation for "M:DHI.Mike1D.CrossSectionModule.CrossSectionExtensions.GetWettedPerimeterGeometric(DHI.Mike1D.CrossSectionModule.ICrossSection,System.Double,System.Nullable{DHI.Mike1D.CrossSectionModule.CrossSectionBufferLevel},System.Boolean)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ICrossSection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also