forked from precious/dr_program
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.h
More file actions
31 lines (22 loc) · 703 Bytes
/
Copy pathconstants.h
File metadata and controls
31 lines (22 loc) · 703 Bytes
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
#ifndef CONSTANTS_H
#define CONSTANTS_H
#include <cmath>
typedef float real;
typedef float velocity;
extern velocity ORBITAL_VELOCITY;
//extern velocity ION_VELOCITY;
//extern velocity ELECTRON_VELOCITY;
extern real ELECTRON_VELOCITY_M;
extern real ELECTRON_VELOCITY_D;
extern real ION_VELOCITY_M;
extern real ION_VELOCITY_D;
// заряд, умноженный на 10^10
extern double ELECTRON_ELECTRIC_CHARGE;
extern double ION_ELECTRIC_CHARGE;
// Дебаевский радиус
extern int ELECTRONS_GENERATIVE_SPHERE_RADIUS;
extern int IONS_GENERATIVE_SPHERE_RADIUS;
// плотность частиц
extern int ELECTRONS_CONSISTENCE;
extern int IONS_CONSISTENCE;
#endif // CONSTANTS_H