-
Tobias Triffterer authored
The software uses Pascal internally as this is the SI unit, but the old guide to the real experiment uses Torr, so we add a conversion function to display both in the GUI.
Verifiedec06e567
experimentstate.cpp 1.23 KiB
/**
* @file experimentstate.cpp
*
* @author Tobias Triffterer
*
* @brief Data Struct to keep Key Parameters of the Experimental Setup
*
* Rutherford Experiment Lab Course Online
* Copyright © 2021 Ruhr-Universität Bochum, Institut für Experimentalphysik I
* https://www.ep1.ruhr-uni-bochum.de/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
**/
#include "experimentstate.h"
using namespace Fp311Online;
ExperimentState::ExperimentState(const uint64_t experimentId)
: id(experimentId)
{}
ExperimentState::PressureTorr ExperimentState::convertHectoPascalToTorr(const PressureHectoPascal& pressure)
{
return pressure*76000.0/101325.0;
}