NuSiF-Solver/BasicSolver/3D-mpi/src/parameter.h

28 lines
751 B
C
Raw Normal View History

2023-02-05 07:34:23 +01:00
/*
2024-01-31 17:40:36 +01:00
* Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
2023-02-05 07:34:23 +01:00
* All rights reserved. This file is part of nusif-solver.
* Use of this source code is governed by a MIT style
* license that can be found in the LICENSE file.
*/
#ifndef __PARAMETER_H_
#define __PARAMETER_H_
typedef struct {
int imax, jmax, kmax;
double xlength, ylength, zlength;
int itermax;
double eps, omg;
double re, tau, gamma;
double te, dt;
double gx, gy, gz;
char* name;
int bcLeft, bcRight, bcBottom, bcTop, bcFront, bcBack;
double u_init, v_init, w_init, p_init;
2024-07-27 02:19:56 +02:00
int levels, presmooth, postsmooth;
2023-02-05 07:34:23 +01:00
} Parameter;
void initParameter(Parameter*);
void readParameter(Parameter*, const char*);
void printParameter(Parameter*);
#endif