AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
smodel_design.h
1// An AdH DESIGN MODEL
2#ifndef H_SMODEL_DESIGN_
3#define H_SMODEL_DESIGN_
4
5/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
6/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
7typedef struct {
8 int model1;
9 int model2;
10 int type;
12
13/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
14/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
15typedef struct {
16
17 char filebase[MAXLINE]; // the base project filename
18 char filename_design[MAXLINE]; // file - design data
19 char filename_grid[MAXLINE]; // file - design grid
20 char filename_params[MAXLINE]; // file - supermodel parameters
21 FILE *xmf;
22
23 int nSuperModels; // total # of superModels
24 SMODEL_SUPER *superModel; // superModel array
25 SMODEL_COUPLE *superCouple; // superModel coupling type
26 int nMono; // number of monolothic-coupled supermodels
27 int nSimple; // number of single physics supermodels (nMono+nSimple = nSuperModels)
28
29 SGRID *grid; // the designer grid
30 SDT ts; // top-level time-stepping info
31
32 SSERIES *series_dt; // time-step series
33 SSERIES *series_out; // output series
34
35 SCOVERAGE *params; // superModel shared parameter coverage
36
37
38 // only allocate memory for linear systems of each sparsity pattern
39 int nlin_sys; // number of unique supermodels, leading to unique sparsity structure
40 // a Unique supermodel is one that is either monolithically coupled or
41 // unique sparsity
42 int *lin_sys_id; // array of [nSuperModels] that gives the index of the linear system it belongs to
43 //likely unnecessary
44 int *unique_id; // integer array of size nlin_sys, saves index of first Unique super model for each sparsity pattern
45
46 SLIN_SYS *lin_sys; // array of [nlin_sys] systems
47
48 // int *nFluxInterfaces; // total # of flux interfaces between supermodesl
49 // SINTERFACE_FLUX will hold all data for interfacing between supermodels
50
52
53/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
54/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
55// Methods
56void smodel_design_defaults(SMODEL_DESIGN *dm);
57void smodel_design_alloc_init(SMODEL_DESIGN **dmod, int nSuperModels);
58void smodel_design_free(SMODEL_DESIGN *dmod);
59void smodel_design_printScreen(SMODEL_DESIGN *dmod);
60#ifdef _MESSG
61int smodel_design_init(SMODEL_DESIGN *dmod, char *filename, bool input_check, MPI_Comm *comm);
62#else
63int smodel_design_init(SMODEL_DESIGN *dmod, char *filename, bool input_check);
64#endif
65void smodel_design_read(SMODEL_DESIGN *dmod, char *filename);
66void smodel_design_init_no_read(SMODEL_DESIGN *dmod, double dt_in, double t_init, double t_final,
67 int nSuperModels, int nphysics_mats[], char ***elemVarCode, int **coverage_arrays);
68void smodel_design_xmf_init(SMODEL_DESIGN *dm, char *filename, char *domain_name);
69void smodel_design_xmf_write(SMODEL_DESIGN *dm, int mesh_no);
70/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
71/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
72
73#endif
Definition: scoverage.h:13
Definition: sdt.h:7
Definition: sgrid.h:28
Definition: slin_sys.h:5
Definition: smodel_design.h:7
Definition: smodel_design.h:15
Definition: smodel_super.h:7
Definition: sseries.h:18