-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbhns_header.h
43 lines (36 loc) · 1.46 KB
/
bhns_header.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
40
41
42
#ifndef bhns_header_LIB_H
#define bhns_header_LIB_H
#include "core_lib.h"
#include "maths_general_lib.h"
#include "manifold_lib.h"
#include "utilities_lib.h"
#include "checkpoint_lib.h"
#include "fields_lib.h"
#include "maths_spectral_methods_lib.h"
#include "maths_calculus_lib.h"
#include "physics_lib.h"
#include "physics_EoS_lib.h"
#include "physics_stress_energy_lib.h"
#include "physics_transformation_lib.h"
#include "physics_observe_lib.h"
#include "physics_blackhole_lib.h"
#include "physics_system_lib.h"
#include "physics_star_lib.h"
/* prefix internal parameters of this project,
// PLEASE keep it capitalized.
// NOTE: this prefix must be consistent with physics->ssys
// which initialized in init_physics function, and the reason is
// that some parameters when are read in various parts of physics
// libraries assume this consistency otherwise it might get
// error of undefined parameter. */
#define P_ "BHNS_"
Physics_T *bhns_initialize_new_physics(Physics_T *const phys);
void bhns_add_fields(Physics_T *const phys,const char *const region);
void bhns_print_physical_system_properties(Physics_T *const phys,
FILE *const file,
const int iteration,
const int pr_screen);
Physics_T *bhns_read_physics_from_checkpoint(void);
void bhns_analyze(Physics_T *const phys,const int iteration);
void bhns_solve_equation(Physics_T *const phys);
#endif