Entropy constructor

Entropy({
  1. dynamic joulesPerKelvin,
  2. double uncert = 0.0,
})

Constructs an Entropy with joules per kelvin. Optionally specify a relative standard uncertainty.

Implementation

Entropy({dynamic joulesPerKelvin, double uncert = 0.0})
    : super(joulesPerKelvin ?? 0.0, Entropy.joulesPerKelvin, uncert);