26 lines
351 B
C++
26 lines
351 B
C++
#include <iostream>
|
|
#include <vector>
|
|
#include <cmath>
|
|
#include <fstream>
|
|
#include <iomanip>
|
|
#include <chrono>
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
enum Variables {
|
|
dU_C1 = 0,
|
|
dU_Cb,
|
|
dI_L,
|
|
U_C1,
|
|
U_Cb,
|
|
I_L,
|
|
phi_1,
|
|
phi_2,
|
|
phi_3,
|
|
phi_4,
|
|
phi_5,
|
|
I_E1,
|
|
I_E2
|
|
};
|
|
|
|
constexpr char RESULT[] = "result.dat"; |