/* * Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg. * All rights reserved. * Use of this source code is governed by a MIT-style * license that can be found in the LICENSE file. */ #include #include #include #include #include #include "parameter.h" #include "progress.h" #include "solver.h" #include "timing.h" #include int main(int argc, char** argv) { int rank; double S, E; Parameter params; Solver solver; MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &rank); initParameter(¶ms); if (argc != 2) { printf("Usage: %s \n", argv[0]); exit(EXIT_SUCCESS); } readParameter(¶ms, argv[1]); if (rank == 0) { printParameter(¶ms); } initSolver(&solver, ¶ms); initProgress(solver.te); double tau = solver.tau; double te = solver.te; double t = 0.0; S = getTimeStamp(); while (t <= te) { if (tau > 0.0) { computeTimestep(&solver); } setBoundaryConditions(&solver); setSpecialBoundaryCondition(&solver); computeFG(&solver); computeRHS(&solver); solve(&solver); adaptUV(&solver); t += solver.dt; #ifdef VERBOSE if (rank == 0) { printf("TIME %f , TIMESTEP %f\n", t, solver.dt); } #else printProgress(t); #endif } E = getTimeStamp(); stopProgress(); if (rank == 0) { printf("Solution took %.2fs\n", E - S); } collectResult(&solver); MPI_Finalize(); return EXIT_SUCCESS; }