-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathElectricField.h
39 lines (31 loc) · 1.03 KB
/
ElectricField.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// Created by ryanz on 10/5/2022.
//
#ifndef PHYSICSFORMULA_ELECTRICFIELD_H
#define PHYSICSFORMULA_ELECTRICFIELD_H
#include <iostream>
// Created by Ryan.Zurrin001 on 12/16/2021.
/**
* @brief ElectricField class represents the electric field
*/
class ElectricField {
public:
ElectricField();
ElectricField(const ElectricField& t);
ElectricField(ElectricField&& t) noexcept;
ElectricField& operator=(const ElectricField& t);
ElectricField& operator=(ElectricField&& t) noexcept;
~ElectricField();
static double electricFieldStrength();
static double electricFieldEnergy();
static double electricFieldForce();
static double electricFieldPower();
static double electricFieldPotential();
static double electricFieldWork();
static double electricFieldVoltage();
static double electricFieldResistance();
static double electricFieldCapacitance();
static double electricFieldInductance();
static double electricFieldMagneticFlux();
};
#endif //PHYSICSFORMULA_ELECTRICFIELD_H