/// <inheritdoc cref="HeatFlux.FromBtusPerHourSquareFoot(double)"/> public static HeatFlux BtusPerHourSquareFoot(this decimal value) => HeatFlux.FromBtusPerHourSquareFoot(Convert.ToDouble(value));
/// <inheritdoc cref="HeatFlux.FromBtusPerHourSquareFoot(double?)"/> public static HeatFlux?BtusPerHourSquareFoot(this decimal?value) => HeatFlux.FromBtusPerHourSquareFoot(value == null ? (double?)null : Convert.ToDouble(value.Value));
/// <inheritdoc cref="HeatFlux.FromBtusPerHourSquareFoot(double?)"/> public static HeatFlux?BtusPerHourSquareFoot(this float?value) => HeatFlux.FromBtusPerHourSquareFoot(value);