6char*
concat(
const char *s1,
const char *s2);
7bool ext_match(
const char *name,
const char *ext);
9int **allocate_dptr_int(
int rows,
int cols);
10void free_dptr_int(
int **ptr,
int rows,
int cols);
11double **allocate_dptr_dbl(
int rows,
int cols);
12void free_dptr_dbl(
double **ptr,
int rows,
int cols);
13char **allocate_dptr_char(
int rows,
int cols);
14void free_dptr_char(
char **ptr,
int rows,
int cols);
18bool doesFileExist(
const char *fname);
23void tc_timeunits(FILE *,
int);
24double tc_eval_series(
SSERIES,
int,
double,
int);
25#ifdef _ADH_GROUNDWATER
26double tc_eval_series_slope(
SSERIES,
int,
double,
int);
28double tc_conversion_factor(
int,
int);
29double tc_trap_area(
double,
double,
double,
double);
38char * build_filename(
char *,
const int,
const char *,
const char *);
39char * build_filename2(
char *,
const int,
const char *,
const char *,
const int,
const char *,
const int);
40char * build_filename3(
char *,
const int,
const char *,
const char *,
const int,
const char *,
const int,
const char *,
const int);
41FILE * io_fopen(
const char *filename,
const char *mode,
const int abort);
48int strip_comments(
char *fileline);
49int strip_white(
char **
string);
50int get_index_as_text(
const int index,
char *text);
51char * convert_to_uppercase(
char *text);
52void pdata(
char *proj_name,
char *run_name, FILE *fp_out,
int o_flag,
char *title,
char *initials,
char *begtype,
char *meshdim,
int lnodes,
int lnelems);
54void phot(FILE *fp_out,
char *title,
char *begtype,
char *meshdim,
int lnodes,
int lelems);
55void phot_index(FILE *fp_out,
char *title,
char *begtype,
char *meshdim,
int lnodes,
int lelems,
int index);
56void print_header_sw2d(
SMODEL_SUPER *mod, FILE * fp_out,
int ps_flag);
57void print_header_sw3d(
SMODEL_SUPER *mod, FILE * fp_out,
int ps_flag);
58void print_header_sediment(
SMODEL_SUPER *mod, FILE *fp_out,
int ps_flag,
int index);
59#ifdef _ADH_GROUNDWATER
60void print_header_gw(
SMODEL_SUPER *mod, FILE * fp_out,
int ps_flag);
62void print_header(
SMODEL_SUPER *mod, FILE * fp_out,
int ps_flag);
63SGRID create_rectangular_grid(
double xmin,
double xmax,
double ymin,
double ymax,
int npx,
int npy,
64 double theta,
int dz,
double a0,
double ax,
double ax2,
double ay,
double ay2,
double axy,
65 double ax2y,
double axy2,
double ax2y2,
int flag3d );
68int solv_isnan(
double value);
69int solv_isinf(
double value);
70double l2_error(
double *v1,
double *v2,
int n);
71double linf_error(
double *v1,
double *v2,
int n);
72bool is_near(
double x,
double y);
73double l2_norm(
double *v,
int size);
74int binary_search_part(
int *arr,
int start,
int end,
int target);
75double max_dbl(
double a,
double b);
76int compare_ints(
const void *a,
const void *b);
79void printScreen_dble_array(
char * descript,
double *array,
int size,
int linenumber,
char *filename);
80void printScreen_int_array(
char * descript,
int *array,
int size,
int linenumber,
char *filename);
82void printScreen_debug2_dbl(
char *descript,
double *f,
int n,
int *global_nd_ids);
83void printScreen_debug_int(
char *descript,
int *f,
int n);
84void printScreen_debug_dbl(
char *descript,
double *f,
int n);
85void printScreen_debug2_dbl(
char *descript,
double *f,
int n,
int *global_nd_ids);
86void printScreen_rhs_3dof(
char *
string,
int nnodes,
int ie,
int *nodes,
double *elem_rhs);
87void Is_Double_Inf_or_NaN(
double X,
char *filename,
int linenumber);
88void Is_DoubleArray_Inf_or_NaN(
double *X,
int arraybounds,
char *filename,
int linenumber);
97 double drying_lower_limit,
103double get_coriolis_angular_speed(
double coriolis_factor);
104int is_double_small(
double value ) ;
105double fe_get_supg_tau_sw(
int nnodes,
SVECT *nodes,
double g,
double elem_avg_depth,
double elem_avg_u,
double elem_avg_v,
106 double elem_avg_w,
double *grad_shp_x,
double *grad_shp_y,
double *grad_shp_z,
double djac,
107 double alpha,
int ndim,
int tau_method_flag,
int le_method_flag);
108double get_element_length(
int nnodes,
SVECT *node,
double elem_avg_u,
double elem_avg_v,
double elem_avg_w,
109 double *grad_shp_x,
double *grad_shp_y,
double *grad_shp_z,
double volume_or_area,
110 int ndim,
int method_flag);
113double tl_find_grid_mass_error_elem2d(
double density,
double *depth,
SVECT2D *vel,
SGRID *grid,
SFLAGS flags,
double initial_grid_mass,
SSERIES *series_head,
STR_VALUE *str,
double dt,
double *total_time_mass_flux_T);
114double tl_find_grid_mass_elem3d(
double density,
SGRID *grid,
double *displacement);
115double tl_find_3d_grid_mass_error(
STR_VALUE *str,
SSERIES *series_head,
double initial_grid_mass,
double density,
SGRID *grid,
SVECT *vel,
double *displacement,
double *old_displacement,
double *older_displacement,
double dt,
double *new_grid_mass,
double *total_time_mass_flux_T);
116double fe_3m2d_dry_wet_factornew(
SVECT2D *x,
double s,
double *h,
double djac,
int *num_dry);
bool ext_match(const char *name, const char *ext)
Checks character string extension against a given string.
Definition: strings.c:52
char * concat(const char *s1, const char *s2)
Concatenates two string and returns the results.
Definition: strings.c:26
Definition: smodel_design.h:15
Definition: smodel_super.h:7
Definition: sstr_value.h:49