CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > SU2

lobb case

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 26, 2024, 22:52
Question lobb case
  #1
New Member
 
李以乐
Join Date: Apr 2024
Posts: 18
Rep Power: 2
lqliang1222 is on a distinguished road
hello everyone,
Recently, I have been working on a two-dimensional axisymmetric ball head case. The calculation conditions are: incoming Mach number of 15.3, velocity of 5280 m/s, temperature of 293 K, pressure of 664 Pa, Reynolds number of 14605, and isothermal wall conditions. The wall temperature is 1200 K, the ball head radius is 6.35 mm, and the characteristic length of Reynolds number is the head radius of the model. However, when I drew the grid and set up the configuration file, running su2 stopped shortly after. I guess my configuration file was the only problem, I hope to find a solution,thanks
lqliang1222 is offline   Reply With Quote

Old   September 26, 2024, 23:03
Default
  #2
New Member
 
李以乐
Join Date: Apr 2024
Posts: 18
Rep Power: 2
lqliang1222 is on a distinguished road
What is the content of my configuration file is:
% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------%
%
SOLVER= NEMO_NAVIER_STOKES
MATH_PROBLEM= DIRECT
RESTART_SOL= NO
AXISYMMETRIC= YES

% ----------- COMPRESSIBLE AND INCOMPRESSIBLE FREE-STREAM DEFINITION ----------%
%
MACH_NUMBER=15.3
AOA= 0.0
SIDESLIP_ANGLE= 0.0
FREESTREAM_PRESSURE=664
FREESTREAM_TEMPERATURE=293
FREESTREAM_TEMPERATURE_VE=293
REYNOLDS_LENGTH= 0.00635
%FREESTREAM_DENSITY= 0.001547
FREESTREAM_VELOCITY= (5280.00, 0.00, 0.00 )
INIT_OPTION=TD_CONDITIONS

% ---- NONEQUILIBRIUM GAS, IDEAL GAS, POLYTROPIC, VAN DER WAALS AND PENG ROBINSON CONSTANTS -------%
%
FLUID_MODEL= SU2_NONEQ
GAS_MODEL= AIR-5
GAS_COMPOSITION= (0.77, 0.23, 0.0, 0.0, 0.0)
TRANSPORT_COEFF_MODEL= GUPTA-YOS

% -------------------- BOUNDARY CONDITION DEFINITION --------------------------%
%
MARKER_ISOTHERMAL=(wall, 1200.0)
MARKER_FAR= (far, exit)
MARKER_SYM= (symm)
MARKER_PLOTTING= (wall)
MARKER_MONITORING= (wall)

%CATALYTIC_WALL= (wall)
%SUPERCATALYTIC_WALL= YES
%SUPERCATALYTIC_WALL_COMPOSITION= (0.75430935, 0.00713, 0.01026, 0.00000065, 0.2283)

% ------------- COMMON PARAMETERS DEFINING THE NUMERICAL METHOD ---------------%
%
NUM_METHOD_GRAD= WEIGHTED_LEAST_SQUARES
CFL_NUMBER= 3.0
ITER= 1000000
LINEAR_SOLVER= BCGSTAB
LINEAR_SOLVER_ERROR= 1E-6
LINEAR_SOLVER_ITER= 5

% -----------------------------------------------------------------------%
%
CONV_NUM_METHOD_FLOW= AUSM
MUSCL_FLOW= YES
SLOPE_LIMITER_FLOW= VENKATAKRISHNAN
VENKAT_LIMITER_COEFF= 0.05
TIME_DISCRE_FLOW= EULER_IMPLICIT

% --------------------------- CONVERGENCE PARAMETERS --------------------------%
%
CONV_RESIDUAL_MINVAL= -6
CONV_STARTITER= 10

% ------------------------- INPUT/OUTPUT INFORMATION --------------------------%
%
MESH_FILENAME= lobb.su2
MESH_FORMAT= SU2
SOLUTION_FILENAME= restart_flow_gy.dat
RESTART_FILENAME= restart_flow_gy.dat
TABULAR_FORMAT= TECPLOT
CONV_FILENAME= convergence
VOLUME_FILENAME= soln_volume
SURFACE_FILENAME= soln_surface
OUTPUT_WRT_FREQ= 2500
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY_0, RMS_DENSITY_1, RMS_DENSITY_2, RMS_DENSITY_3, RMS_DENSITY_4, RMS_ENERGY, RMS_ENERGY_VE, LIFT, DRAG, TOTAL_HEATFLUX)
lqliang1222 is offline   Reply With Quote

Old   September 27, 2024, 18:47
Default
  #3
Senior Member
 
bigfoot
Join Date: Dec 2011
Location: Netherlands
Posts: 676
Rep Power: 21
bigfootedrockmidget is on a distinguished road
why did SU2 stop? Did the solution diverge or was there another error?
bigfootedrockmidget is offline   Reply With Quote

Old   September 27, 2024, 22:40
Default
  #4
New Member
 
李以乐
Join Date: Apr 2024
Posts: 18
Rep Power: 2
lqliang1222 is on a distinguished road
yeah,the solution diverge,after making some modifications to the configuration file, it can now run normally, but I don't understand how the boundary condition MARK OUT LET=(out, 100) is solved for 100,
This is my modified configuration file, with the main change being the boundary conditions section,
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SU2 configuration file %

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------%
%
SOLVER= NEMO_NAVIER_STOKES
MATH_PROBLEM= DIRECT
RESTART_SOL= NO
AXISYMMETRIC= YES


% ----------- COMPRESSIBLE AND INCOMPRESSIBLE FREE-STREAM DEFINITION ----------%
%
SYSTEM_MEASUREMENTS= SI
MACH_NUMBER=15.3
AOA= 0.0
SIDESLIP_ANGLE= 0.0
FREESTREAM_PRESSURE=664
FREESTREAM_TEMPERATURE=293
FREESTREAM_TEMPERATURE_VE=293
INIT_OPTION=TD_CONDITIONS

% ---- NONEQUILIBRIUM GAS, IDEAL GAS, POLYTROPIC, VAN DER WAALS AND PENG ROBINSON CONSTANTS -------%
%
FLUID_MODEL= SU2_NONEQ
GAS_MODEL= AIR-5
GAS_COMPOSITION= (0.77, 0.23, 0.0, 0.0, 0.0)
%TRANSPORT_COEFF_MODEL= GUPTA-YOS

% -------------------- BOUNDARY CONDITION DEFINITION --------------------------%
%
MARKER_ISOTHERMAL=(wall, 1200.0)
MARKER_FAR= (far)
MARKER_OUTLET=(out,100)
MARKER_SYM= (symm)
MARKER_PLOTTING= (wall)
MARKER_MONITORING= (wall)

% ------------- COMMON PARAMETERS DEFINING THE NUMERICAL METHOD ---------------%
%
NUM_METHOD_GRAD= WEIGHTED_LEAST_SQUARES
CFL_NUMBER= 0.5
ITER= 1000000
LINEAR_SOLVER= BCGSTAB
LINEAR_SOLVER_ERROR= 1E-6
LINEAR_SOLVER_ITER= 5

% -----------------------------------------------------------------------%
%
CONV_NUM_METHOD_FLOW= AUSM
MUSCL_FLOW= YES
SLOPE_LIMITER_FLOW= VENKATAKRISHNAN
VENKAT_LIMITER_COEFF= 0.05
TIME_DISCRE_FLOW= EULER_IMPLICIT

% --------------------------- CONVERGENCE PARAMETERS --------------------------%
%
CONV_RESIDUAL_MINVAL= -10
CONV_STARTITER= 10

% ------------------------- INPUT/OUTPUT INFORMATION --------------------------%
%
MESH_FILENAME= lobb.su2
MESH_FORMAT= SU2
SOLUTION_FILENAME= restart_flow_gy.dat
RESTART_FILENAME= restart_flow_gy.dat
TABULAR_FORMAT= TECPLOT
CONV_FILENAME= convergence
VOLUME_FILENAME= soln_volume
SURFACE_FILENAME= soln_surface
OUTPUT_WRT_FREQ= 2500
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY_0, RMS_DENSITY_1, RMS_DENSITY_2, RMS_DENSITY_3, RMS_DENSITY_4, RMS_ENERGY, RMS_ENERGY_VE, LIFT, DRAG, TOTAL_HEATFLUX)
lqliang1222 is offline   Reply With Quote

Reply

Tags
lobb .cfg


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Shape optimizing the tunnel case with energy on zyao1 FLUENT 0 December 1, 2020 16:05
Is Playstation 3 cluster suitable for CFD work hsieh OpenFOAM 9 August 16, 2015 15:53
MRFSimpleFoam wind turbine case diverges ysh1227 OpenFOAM Running, Solving & CFD 2 May 7, 2015 11:13
Transient case running with a super computer microfin FLUENT 0 March 31, 2009 12:20
Turbulent Flat Plate Validation Case Jonas Larsson Main CFD Forum 0 April 2, 2004 11:25


All times are GMT -4. The time now is 13:19.