Files
mp-units/example/capacitor_time_curve.cpp

81 lines
2.2 KiB
C++
Raw Normal View History

/*
Copyright (c) 2003-2020 Andy Little.
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./
*/
/*
capacitor discharge curve using compile_time
physical_quantities
*/
#include <units/physical/si/capacitance.h>
#include <units/physical/si/resistance.h>
#include <units/physical/si/time.h>
2020-01-14 12:50:30 +01:00
#include <units/physical/si/voltage.h>
#include <cmath>
2020-01-14 12:50:30 +01:00
#include <iostream>
namespace {
2020-01-14 12:50:30 +01:00
namespace voltage {
2020-01-14 12:50:30 +01:00
template<typename Rep = double>
using V = units::si::voltage<units::si::volt, Rep>;
2020-01-14 12:50:30 +01:00
template<typename Rep = double>
using mV = units::si::voltage<units::si::millivolt, Rep>;
2020-01-14 12:50:30 +01:00
template<typename Rep = double>
using uV = units::si::voltage<units::si::microvolt, Rep>;
2020-01-14 12:50:30 +01:00
template<typename Rep = double>
using nV = units::si::voltage<units::si::nanovolt, Rep>;
2020-01-14 12:50:30 +01:00
template<typename Rep = double>
using pV = units::si::voltage<units::si::picovolt, Rep>;
2020-01-14 12:50:30 +01:00
} // namespace voltage
} // namespace
using namespace units::si::literals;
2020-01-14 12:50:30 +01:00
int main()
{
2020-01-14 12:50:30 +01:00
std::cout << "mpusz/units capacitor time curve example...\n";
std::cout.setf(std::ios_base::fixed, std::ios_base::floatfield);
std::cout.precision(3);
2020-02-17 15:56:06 +01:00
constexpr auto C = 0.47q_uF;
constexpr auto V0 = 5.0q_V;
constexpr auto R = 4.7q_kR;
2020-01-14 12:50:30 +01:00
2020-02-17 15:56:06 +01:00
for (auto t = 0q_ms; t <= 50q_ms; ++t) {
2020-01-14 12:50:30 +01:00
const auto Vt = V0 * std::exp(-t / (R * C));
std::cout << "at " << t << " voltage is ";
2020-02-17 15:56:06 +01:00
if (Vt >= 1q_V)
2020-01-14 12:50:30 +01:00
std::cout << Vt;
2020-02-17 15:56:06 +01:00
else if (Vt >= 1q_mV)
2020-01-14 12:50:30 +01:00
std::cout << voltage::mV<>{Vt};
2020-02-17 15:56:06 +01:00
else if (Vt >= 1q_uV)
2020-01-14 12:50:30 +01:00
std::cout << voltage::uV<>{Vt};
2020-02-17 15:56:06 +01:00
else if (Vt >= 1q_nV)
2020-01-14 12:50:30 +01:00
std::cout << voltage::nV<>{Vt};
else
std::cout << voltage::pV<>{Vt};
std::cout << "\n";
}
}