lymph
RunSetup.m
Go to the documentation of this file.
1 %> @file RunSetup.m
2 %> @author The Lymph Team
3 %> @date 9 October 2023
4 %> @brief Configuration setup
5 %>
6 %==========================================================================
7 %> @section classRunSetup Class description
8 %==========================================================================
9 %> @brief Configuration setup
10 %
11 %> @param ~
12 %>
13 %> @retval ~
14 %>
15 %==========================================================================
16 
17 %% Simulation - Setup
18 
19 % Plot polygonal mesh y/n
20 Setup.isPlotMesh = 0;
21 
22 % Save VTK polygonal mesh y/n
23 Setup.isSaveVTKMesh = 1;
24 
25 % Plot solution y/n
26 Setup.isPlotSolution = 0;
27 
28 % Save solution y/n -> .mat file
29 Setup.isSaveSolution = 0;
30 Setup.OutFolder = 'Output';
31 
32 % Additional solution output y/n -> .csv file
33 Setup.isSaveCSV = 0;
34 
35 % Additional solution output y/n -> .vtk file
36 Setup.isSaveVTK = 0;
37 Setup.OutFolderVTK = 'OutputVTK';
38 
39 % Compute errors y/n
40 Setup.isError = 1;
41 
42 % Use parallel implementation y/n
43 Setup.isParallel = 0;
44 Setup.numCores = 4;