Replies: 3 comments 11 replies
-
Your initial condition is quite poor. You are essentially accelerating the entire flow from 0 velocity. It would be better to put the same value as at the inlet. How are the iteration counts for the linear solvers looking in the log? |
Beta Was this translation helpful? Give feedback.
-
I could get your case running with the following config: {
"version": 1.0,
"case":
{
"mesh_file": "cyl.nmsh",
"output_checkpoints": true,
"checkpoint_control": "tsteps",
"checkpoint_value": "100",
"output_at_end": true,
"output_boundary": true,
"end_time": 200.0,
"timestep": 2e-5,
"numerics": {
"time_order": 2,
"polynomial_order": 3,
"dealias": true
},
"fluid": {
"scheme": "pnpn",
"Re": 80000,
"initial_condition": {
"type": "uniform",
"value": [1.0, 0.0, 0.0]
},
"inflow_condition": {
"type": "uniform",
"value": [1.0, 0.0, 0.0]
},
"velocity_solver": {
"type": "cg",
"preconditioner": "jacobi",
"projection_space_size": 0,
"absolute_tolerance": 1e-7,
"max_iterations": 800
},
"pressure_solver": {
"type": "gmres",
"preconditioner": "hsmg",
"projection_space_size": 0,
"absolute_tolerance": 1e-5,
"max_iterations": 100
},
"boundary_types": ["v", "o", "w", "", "", "", ""],
"output_control": "tsteps",
"output_value": 100
}
}
} Note:
After a few hundred time-steps the solver starts converging. But I see some weird stuff at the outlet. Maybe using |
Beta Was this translation helpful? Give feedback.
-
The dong doesn't seem to help, which is unfortunate. @MartinKarp , any ideas what this could be? |
Beta Was this translation helpful? Give feedback.
-
Hi, this morning I have tested neko simulation of flow past a cylinder at Re=80,000,
The mesh consists of 131,856 elements, 7rd SEM is used.
The simulation runs quite slowly, takes about 300 seconds each step on 7 RTX4090 GPUs, so I wonder if I have made any mistakes in setting up the runing parameters ?
The mesh file is available from following link,
https://drive.google.com/file/d/1wox2-WCoKu_bvVUj8CSX-8PyhQtckwkn/view?usp=sharing
And the parameter file *.case is on below,
Beta Was this translation helpful? Give feedback.
All reactions