Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1147b8c
add restart file
pcarruscag May 5, 2021
399b3a9
Merge pull request #61 from su2code/interp_restart
pcarruscag May 5, 2021
e54d228
Add files for unsteady CHT adjoint case. Mesh adn primal solution files.
TobiKattmann May 12, 2021
dcefc4e
Regression test for dyn discadj fsi (#62)
cvencro May 13, 2021
65cf039
Merge pull request #63 from su2code/add_unstchtcase
pcarruscag May 13, 2021
ea23a1b
Merge pull request #67 from su2code/nemo_update
WallyMaier Jul 21, 2021
8027b00
Added little fluid mesh for heat transfer bc. This is the fluid zone …
TobiKattmann Jul 31, 2021
445467b
Created feature_turbo_bodyforce branch with testcase mesh
EvertBunschoten Aug 5, 2021
4ede0ff
Add mesh file and TargetEA.dat for PR 1329 (#65)
snow54 Aug 7, 2021
097698a
Update FFD box (#69)
snow54 Aug 9, 2021
0589a0c
Update solution file (#72)
snow54 Aug 16, 2021
4ed4d69
added testcase for wallfunctions
bigfooted Aug 24, 2021
90178c3
change filename
bigfooted Aug 24, 2021
4cf97af
update restart file
FlorianDm Sep 1, 2021
d8b7434
Merge pull request #75 from su2code/fix_axisym
FlorianDm Sep 1, 2021
6d5ec6d
Merge pull request #74 from bigfooted/develop
bigfooted Sep 6, 2021
cab04e8
moved flatplate testcase for wallfunctions into wallfunctions/flatplate
bigfooted Sep 20, 2021
5722eea
Add periodic pins Testcase (#76)
TobiKattmann Sep 27, 2021
c1259f9
Test cases for turbulence modeling
suargi Oct 27, 2021
9a584a1
add flamelet testcase with lookup table
Oct 29, 2021
2b08925
Revert "add flamelet testcase with lookup table"
pcarruscag Oct 29, 2021
425b281
Merge remote-tracking branch 'origin/master' into develop
pcarruscag Oct 29, 2021
6d4b7d8
rename viscwedge folder
WallyMaier Nov 1, 2021
3257646
Merge pull request #80 from su2code/feature_turbmod_variants
suargi Nov 2, 2021
6f4e4f0
Merge pull request #82 from su2code/fix_nemo_viscous_case
WallyMaier Nov 2, 2021
4a0fa4b
Updated reference gradient file in radiation/p1adjoint for the couple…
thomasdick Nov 13, 2021
b914352
update restart file after fix (#85)
FlorianDm Nov 13, 2021
52a2f07
Feature species transport (#78)
TobiKattmann Nov 30, 2021
70dc321
convert cgns test to hdf5
MicK7 Jan 19, 2022
430b88c
Merge pull request #89 from su2code/feature_cgns_hdf5
MicK7 Jan 19, 2022
120f754
Feature sobolev smoothing solver (#88)
thomasdick Jan 21, 2022
b97ebd1
Merge branch 'master' into develop
pcarruscag Jan 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified axisymmetric_rans/air_nozzle/solution_flow.dat
Binary file not shown.
Binary file modified euler/wedge/mesh_wedge_inv.cgns
Binary file not shown.
1 change: 1 addition & 0 deletions grad_smooth/naca0012/mesh_NACA0012_inv.su2
Binary file added grad_smooth/naca0012/solution_adj_cd.dat
Binary file not shown.
97,763 changes: 97,763 additions & 0 deletions grad_smooth/oneram6/mesh_tutorial_ffd.su2

Large diffs are not rendered by default.

Binary file added grad_smooth/oneram6/solution_adj_cd.dat
Binary file not shown.
2 changes: 1 addition & 1 deletion radiation/p1adjoint/of_grad_cd.csv.ref
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"VARIABLE" , "GRADIENT" , "FINDIFF_STEP"
0 , -0.000954218 , 0.001
1 , -0.00432385 , 0.001
1 , -0.00432384 , 0.001
2 , -0.0111485 , 0.001
3 , -0.0214656 , 0.001
4 , -0.0344212 , 0.001
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
// ----------------------------------------------------------------------------------- //
// Tobias Kattmann, 24.09.2021, 2D rectangle for mixing validation testcase
// ----------------------------------------------------------------------------------- //

// Evoque Meshing Algorithm?
Do_Meshing= 1; // 0=false, 1=true
// Write Mesh files in .su2 format
Write_mesh= 1; // 0=false, 1=true

// Geometric inputs
length= 10; // downstream direction
height= 5; // crossstream direction, full length
border= 1; // height of gas inlet, height-border= air inlet length

// Mesh sizing inputs. Note that the #cells+Prgression needs some fiddeling such that mesh size at the border fits.
Nl= 50; // Nodes in 'l'ength direction
Nhg= 25; // Nodes in 'h eight direction of the 'g'as side
Rhg= 0.9; // Progression of gas side [0,1], lower means more agressive
Nha= 40; // Nodes in 'h eight direction of the 'a'ir side
Rha= 0.9; // Progression of air side [0,1], lower means more agressive

gridsize= 0.1; // Later on not important as structured mesh is achieved

// ----------------------------------------------------------------------------------- //
// POINTS

// Starting in the origin, which is the most low-left point, and going clockwise.

Point(1) = {0, 0, 0, gridsize};
Point(2) = {0, border, 0, gridsize};
Point(3) = {0, height, 0, gridsize};
Point(4) = {length, height, 0, gridsize};
Point(5) = {length, border, 0, gridsize};
Point(6) = {length, 0, 0, gridsize};

// ----------------------------------------------------------------------------------- //
// LINES

// gas inlet
Line(1) = {1,2};
// air inlet
Line(2) = {2,3};
// top sym
Line(3) = {3,4};
// air outlet
Line(4) = {4,5};
// gas outlet
Line(5) = {5,6};
// bottom sym
Line(6) = {6,1};
// species border
Line(7) = {2,5};

// ----------------------------------------------------------------------------------- //
// SURFACES (and Lineloops)
Curve Loop(1) = {6, 1, 7, 5}; Plane Surface(1) = {1}; // gas box
Curve Loop(2) = {3, 4, -7, 2}; Plane Surface(2) = {2}; // air box

// make structured mesh with transfinite Lines
// NOTE: The usage of Nwall and the progression has to be tuned again for any changes.
Transfinite Line{3,-6,7} = Nl ; // downstream direction, no progression
Transfinite Line{1,-5} = Nhg Using Progression Rhg; // gas side, progression towards border
Transfinite Line{-2,4} = Nha Using Progression Rha; // air side, progression towards border

// ----------------------------------------------------------------------------------- //
// PHYSICAL GROUPS

Physical Line("gas_inlet") = {1};
Physical Line("air_inlet") = {2};
Physical Line("outlet") = {4,5};
Physical Line("top") = {3};
Physical Line("bottom") = {6};

Physical Surface("fluid") = {1,2};

// ----------------------------------------------------------------------------------- //
// Meshing
Transfinite Surface "*";
Recombine Surface "*";

If (Do_Meshing == 1)
Mesh 1; Mesh 2;
EndIf

// ----------------------------------------------------------------------------------- //
// Write .su2 meshfile
If (Write_mesh == 1)

Mesh.Format = 42; // .su2 mesh format,
Save "rectangle_mixing.su2";

EndIf
Loading