Calculators
Measurements Helper
Hydrostatics
using AceLand.Measurements.Calculators;
// calculate with Length to Pressue
Length currentDepth = 223.Meters();
Pressure currentPressueInSubmarine = currentDepth.FromSaltWaterDepth();
// calculat with double to Pressue
double currentDepthMetres = 223.0;
Pressure currentPressueInSubmarine = Hydrostatics.FromSaltWaterDepth(currentDepthMetres);Last updated