Include Ts and T0 values in output
These are calculated by the two-period spectra calculator (T_0 and T_S). Briefly...
ts = sm1 / sms;
if (ts > 1.0) {
ts = 1.0;
}
t0 = 0.2 * ts;
Add these outputs to documentation.
These are calculated by the two-period spectra calculator (T_0 and T_S). Briefly...
ts = sm1 / sms;
if (ts > 1.0) {
ts = 1.0;
}
t0 = 0.2 * ts;
Add these outputs to documentation.