Pressure(Mass, Area) Constructor

Creates a new Pressure whose value is the multiple of three Length values.

Definition

Namespace: InnerDrive.Quantitative
Assembly: InnerDrive.Quantitative (in InnerDrive.Quantitative.dll) Version: 5.2.9017.0
C#
public Pressure(
	Mass force,
	Area area
)

Parameters

force  Mass
The Mass (standing in for force) dimension of the Pressure.
area  Area
The Area over which the force (represented by force) applies.

Remarks

The new Pressure will be instantiated using Pascal units.

Example

The following example creates a Pressure of 1 kg/m²:
C#
Unit unit = new Gram();
MetricExponent exponent = MetricExponent.Kilo;
double value = 1d;

Mass force = new Mass(value, unit, exponent);
Area area = new Area(value, unit, exponent)

Pressure kilogramMeterSquare = new Pressure(force, area);

See Also