-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProblem.h
103 lines (81 loc) · 2.8 KB
/
Problem.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#ifndef _PROBLEM_H_
#define _PROBLEM_H_
#include "Mesh.h"
#include "MaterialModel.h"
#include "Device.h"
#include <vector>
#include <string>
#include <armadillo>
struct integration_output {
arma::mat N;
arma::mat B;
};
class Problem {
/* =============== Attributes =============== */
private:
//Init list attributes
const unsigned int number_elements_length;
const unsigned int number_elements_depth;
const double domain_length;
const double domain_depth;
const double pulse_intensity;
const double pulse_frequency;
const double delta_time;
const unsigned int n_steps;
const double control_init_value;
//Key instance attributes
SquareLinearMesh* problem_mesh;
MaterialModel* control;
arma::mat* ricker_pulse;
arma::sp_mat* global_stiffness_consistent;
arma::sp_mat* global_mass_consistent;
arma::mat* global_mass;
std::vector<Device> receivers;
std::vector<Device> sources;
arma::Mat<unsigned int> receiver_nodes;
arma::Mat<unsigned int> source_nodes;
arma::cube* solution;
/* =============== Public Methods =============== */
public:
//Constructors
Problem(unsigned int nel,
unsigned int ned,
double d_length,
double d_depth,
double pulse_int,
double pulse_freq,
double obs_period,
double deltaT,
double control_init);
~Problem();
//Solutions
void solve(std::string mode);
void build();
//Writers
void print_levels();
void print_velocities();
void print_receivers();
void print_sources();
void print_pulse();
void write_validation();
void write_output(bool save_solution, unsigned int shot_id, unsigned int sample_size);
//Getters
//Setters
void set_control(unsigned int n_levels, std::vector<double> levels, std::vector<double> velocities_arr);
void add_device(std::string mode, double posx, double posy, unsigned int id);
/* =============== Private Methods =============== */
private:
void generate_ricker_pulse();
void calculate_stiffness_matrix();
void calculate_mass_matrix();
void lumping_mass(std::string mode);
void update();
arma::mat load_gauss_points();
integration_output integrate(double r, double s, arma::mat element_coord, double& det_jacob);
void find_element_coordinates(arma::mat& element_coord, unsigned int element);
void find_element_global_nodes(arma::mat& aux_matrix, unsigned int element);
void find_element_stiffness(arma::mat& element_stiff, arma::mat& element_coord);
void find_element_mass(arma::mat& element_mass, arma::mat& element_coord);
double find_element_slowness(unsigned int element);
};
#endif // _PROBLEM_H_