-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathModelCollagenEXLstruc.hpp
More file actions
40 lines (24 loc) · 946 Bytes
/
Copy pathModelCollagenEXLstruc.hpp
File metadata and controls
40 lines (24 loc) · 946 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
31
32
33
34
35
36
37
38
39
40
//
// ModelCollagenEXLstruc.hpp
// fullstructuralmodel
//
// Created by Will Zhang on 5/15/18.
// Copyright © 2018 Will Zhang. All rights reserved.
//
#ifndef ModelCollagenEXLstruc_hpp
#define ModelCollagenEXLstruc_hpp
#include <math.h>
#include "Gauss_Quad_Points.hpp"
#include "BetaDistribution.hpp"
#include "ModelCollagenTissueStruc.hpp"
#include "ModelCollagenEnsembleEXLstruc.hpp"
class model_col_int_tissue_struc_PF: public model_col_tissue_struc_PF {
private:
public:
model_col_exl_ens_struc ensembleinteraction;
model_col_int_tissue_struc_PF(): model_col_tissue_struc_PF(), ensembleinteraction() {}
model_col_int_tissue_struc_PF(double arg[13]): model_col_tissue_struc_PF(arg), ensembleinteraction(arg[3], arg[4], arg[5], arg[6]) {}
int int_stress(double vF[4], double res[4]);
int stress_total(double vF[4], double res[4]);
};
#endif /* ModelCollagenEXLstruc_hpp */