Skip to content

Commit 14dab1b

Browse files
authored
Merge pull request #15 from su2code/feature_solvers
Adapting tutorial cases
2 parents edc6998 + 99449cd commit 14dab1b

File tree

32 files changed

+35
-67
lines changed

32 files changed

+35
-67
lines changed

Inc_Inviscid_Hydrofoil/inv_naca0012.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@
1313
% Physical governing equations (EULER, NAVIER_STOKES,
1414
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1515
% POISSON_EQUATION)
16-
PHYSICAL_PROBLEM= EULER
17-
%
18-
% Regime type (COMPRESSIBLE, INCOMPRESSIBLE)
19-
REGIME_TYPE= INCOMPRESSIBLE
16+
SOLVER= INC_EULER
2017
%
2118
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
2219
MATH_PROBLEM= DIRECT

Inc_Laminar_Cavity/lam_buoyancy_cavity.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@
1313
% Physical governing equations (EULER, NAVIER_STOKES,
1414
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1515
% POISSON_EQUATION)
16-
PHYSICAL_PROBLEM= NAVIER_STOKES
16+
SOLVER= INC_NAVIER_STOKES
1717
%
18-
% Regime type (COMPRESSIBLE, INCOMPRESSIBLE, FREESURFACE)
19-
REGIME_TYPE= INCOMPRESSIBLE
2018
%
2119
% Specify turbulent model (NONE, SA, SA_NEG, SST)
2220
KIND_TURB_MODEL= NONE

Inc_Laminar_Flat_Plate/lam_flatplate.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,11 @@
1313
% Physical governing equations (EULER, NAVIER_STOKES,
1414
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1515
% POISSON_EQUATION)
16-
PHYSICAL_PROBLEM= NAVIER_STOKES
16+
SOLVER= INC_NAVIER_STOKES
1717
%
1818
% Specify turbulence model (NONE, SA)
1919
KIND_TURB_MODEL= NONE
2020
%
21-
% Regime type (COMPRESSIBLE, INCOMPRESSIBLE)
22-
REGIME_TYPE= INCOMPRESSIBLE
23-
%
2421
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
2522
MATH_PROBLEM= DIRECT
2623
%

Inc_Laminar_Step/lam_backwardstep.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,11 @@
1313
% Physical governing equations (EULER, NAVIER_STOKES,
1414
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1515
% POISSON_EQUATION)
16-
PHYSICAL_PROBLEM= NAVIER_STOKES
16+
SOLVER= INC_NAVIER_STOKES
1717
%
1818
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
1919
MATH_PROBLEM= DIRECT
2020
%
21-
% Regime type (COMPRESSIBLE, INCOMPRESSIBLE, FREESURFACE)
22-
REGIME_TYPE= INCOMPRESSIBLE
23-
%
2421
% Restart solution (NO, YES)
2522
RESTART_SOL= NO
2623

Inc_Turbulent_Flat_Plate/turb_flatplate.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,11 @@
1313
% Physical governing equations (EULER, NAVIER_STOKES,
1414
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1515
% POISSON_EQUATION)
16-
PHYSICAL_PROBLEM= NAVIER_STOKES
16+
SOLVER= INC_NAVIER_STOKES
1717
%
1818
% If Navier-Stokes, kind of turbulent model (NONE, SA)
1919
KIND_TURB_MODEL= SA
2020
%
21-
% Regime type (COMPRESSIBLE, INCOMPRESSIBLE)
22-
REGIME_TYPE= INCOMPRESSIBLE
23-
%
2421
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
2522
MATH_PROBLEM= DIRECT
2623
%

Inc_Turbulent_NACA0012/turb_naca0012.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,14 @@
1414
% Physical governing equations (EULER, NAVIER_STOKES,
1515
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1616
% POISSON_EQUATION)
17-
PHYSICAL_PROBLEM= NAVIER_STOKES
17+
SOLVER= INC_NAVIER_STOKES
1818
%
1919
% Specify turbulent model (NONE, SA, SA_NEG, SST)
2020
KIND_TURB_MODEL= SA
2121
%
2222
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
2323
MATH_PROBLEM= DIRECT
2424
%
25-
% Regime type (COMPRESSIBLE, INCOMPRESSIBLE, FREESURFACE)
26-
REGIME_TYPE= INCOMPRESSIBLE
27-
%
2825
% Restart solution (NO, YES)
2926
RESTART_SOL= NO
3027

Inviscid_2D_Unconstrained_NACA0012/inv_NACA0012_basic.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
% Physical governing equations (EULER, NAVIER_STOKES,
1515
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1616
% POISSON_EQUATION)
17-
PHYSICAL_PROBLEM= EULER
17+
SOLVER= EULER
1818
%
1919
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
2020
MATH_PROBLEM= DIRECT

Inviscid_3D_Constrained_ONERAM6/inv_ONERAM6_adv.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
% Physical governing equations (EULER, NAVIER_STOKES,
1515
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
1616
% POISSON_EQUATION)
17-
PHYSICAL_PROBLEM= EULER
17+
SOLVER= EULER
1818
%
1919
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT, DISCRETE_ADJOINT)
2020
MATH_PROBLEM= DISCRETE_ADJOINT

Inviscid_Bump/inv_channel.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
%
1414
% Physical governing equations (EULER, NAVIER_STOKES, NS_PLASMA)
1515
%
16-
PHYSICAL_PROBLEM= EULER
16+
SOLVER= EULER
1717
%
1818
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
1919
MATH_PROBLEM= DIRECT

Inviscid_ONERAM6/inv_ONERAM6.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------%
1313
%
1414
% Physical governing equations (EULER, NAVIER_STOKES)
15-
PHYSICAL_PROBLEM= EULER
15+
SOLVER= EULER
1616
%
1717
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
1818
MATH_PROBLEM= DIRECT

0 commit comments

Comments
 (0)