CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT > Fluent UDF and Scheme Programming

Averaging over iterations for steady-state simulation

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By AlexanderZ

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 26, 2021, 12:15
Arrow Averaging over iterations for steady-state simulation
  #1
New Member
 
Join Date: Apr 2021
Posts: 2
Rep Power: 0
CFD student is on a distinguished road
Hi all,

I'm currently doing a steady-state simulation in a parallel fluent environment. The results (inlet mass flow, outlet mass flow, total temperature at a specific created surface...) all vary in a certain band, the iterations don't lead to a 'constant' value.

Is there any possibility to let Fluent automatically write the average value of the last 1000 iterations of e.g. the total temperature to an output file?

If not, is it possible to do this with an UDF? I'm completely new to UDF's so a bit of help/a starting point is much appreciated!


Thanks in advance!
CFD student is offline   Reply With Quote

Old   April 26, 2021, 22:41
Default
  #2
Senior Member
 
Alexander
Join Date: Apr 2013
Posts: 2,363
Rep Power: 34
AlexanderZ will become famous soon enoughAlexanderZ will become famous soon enough
why don't you want to write variable into file and get average value later, for instance in excel?
it's the easiest way if you have a few monitors.
pakk likes this.
__________________
best regards


******************************
press LIKE if this message was helpful
AlexanderZ is offline   Reply With Quote

Old   April 27, 2021, 02:03
Default
  #3
New Member
 
Join Date: Apr 2021
Posts: 2
Rep Power: 0
CFD student is on a distinguished road
Im doing batch simulations, so I have about 6 monitors and 100 simulations. Copying results to excel would take loads of time.

Thank you for your suggestion!
CFD student is offline   Reply With Quote

Old   April 27, 2021, 03:25
Default
  #4
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
If you really want to do it in Fluent:
*Make a global array with 1000 values.
*make a global index.
*after every time step:
- set the monitor value in the array, at the location of the index.
- increase the index by one (modulo 1000)
- calculate the average value of your array, and save it /print it.

There are many other ways to do it, but this is the easiest way I could think of.
__________________
"The UDF library you are trying to load (libudf) is not compiled for parallel use on the current platform" is NOT the error after compiling. It is the error after loading. To see compiler errors, look at your screen after you click "build".
pakk is offline   Reply With Quote

Old   April 27, 2021, 04:51
Default
  #5
Senior Member
 
Alexander
Join Date: Apr 2013
Posts: 2,363
Rep Power: 34
AlexanderZ will become famous soon enoughAlexanderZ will become famous soon enough
make a script ,for example in python or any other language, to get 1000 last values from file and to calculate average value.
this will be much easier comparing to UDF. And more flexible.

in case you want to proceed with UDF, Ansys Fluent Customization manual, look for DEFINE_ON_DEMAND macro, there is good example on how to get average temperature

for your case you will use DEFINE_EXECUTE_AT_END to calculate and write variables after each iteration

my recommendation: make it works for single core computation and later move to parallel
__________________
best regards


******************************
press LIKE if this message was helpful
AlexanderZ is offline   Reply With Quote

Old   April 28, 2021, 09:10
Default Iterations for simulation with schiaparelli capsule?
  #6
New Member
 
Join Date: Mar 2021
Posts: 14
Rep Power: 5
jean@cfd is on a distinguished road
temperature limited to 1.000000e+01 in 1 cells on zone 4
43 6.2712e-02 1.5462e-02 2.2252e+00 4.0021e+00 1.1799e-01 1.1802e+01 3.5830e-01 3.8173e+00 6.1537e-02 5.9306e+04 2.3388e+04 6.0264e+04 3656:11:52 99964

reversed flow in 941 faces on pressure-outlet 9.

time step reduced in 25 cells due to excessive temperature change

absolute pressure limited to 1.000000e+00 in 1 cells on zone 4

temperature limited to 1.000000e+01 in 1 cells on zone 4
44 6.2213e-02 1.4892e-02 2.1214e+00 3.8880e+00 1.1235e-01 1.1824e+01 3.5848e-01 3.8248e+00 6.1033e-02 5.9061e+04 2.3360e+04 6.0090e+04 3430:17:51 99963

reversed flow in 940 faces on pressure-outlet 9.

time step reduced in 26 cells due to excessive temperature change

absolute pressure limited to 1.000000e+00 in 1 cells on zone 4

temperature limited to 1.000000e+01 in 1 cells on zone 4
45 6.1251e-02 1.3971e-02 2.0221e+00 3.7188e+00 1.0513e-01 1.3652e+01 4.1026e-01 4.4168e+00 6.0076e-02 5.8774e+04 2.3335e+04 5.9885e+04 3355:05:22 99962

FOR MY RESEARCH ON RE ENTRY VEHICLES MY ITERATIONS ARE COMING LIKE THIS WITH CONVERGENCE?
jean@cfd is offline   Reply With Quote

Old   April 28, 2021, 11:37
Default
  #7
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
Yes for your research on re entry vehicles your iterations are coming like this with convergence.

Or possibly for your research your iterations are going like that with convergence.

I'm sorry, did you ask a question?
__________________
"The UDF library you are trying to load (libudf) is not compiled for parallel use on the current platform" is NOT the error after compiling. It is the error after loading. To see compiler errors, look at your screen after you click "build".

Last edited by pakk; April 28, 2021 at 12:58.
pakk is offline   Reply With Quote

Old   September 21, 2022, 19:12
Default
  #8
New Member
 
Mehrnoosh Ahmadi
Join Date: Sep 2022
Posts: 2
Rep Power: 0
Nush87 is on a distinguished road
Quote:
Originally Posted by CFD student View Post
Hi all,

I'm currently doing a steady-state simulation in a parallel fluent environment. The results (inlet mass flow, outlet mass flow, total temperature at a specific created surface...) all vary in a certain band, the iterations don't lead to a 'constant' value.

Is there any possibility to let Fluent automatically write the average value of the last 1000 iterations of e.g. the total temperature to an output file?

If not, is it possible to do this with an UDF? I'm completely new to UDF's so a bit of help/a starting point is much appreciated!


Thanks in advance!

Did you manage to get the UDF? Could you share it please? I am having a similar issue in some of my simulations...
Nush87 is offline   Reply With Quote

Old   September 22, 2022, 03:39
Default boundary conditions for cfd analysis on schiapparelli re entry anomaly to mars
  #9
New Member
 
Join Date: Mar 2021
Posts: 14
Rep Power: 5
jean@cfd is on a distinguished road
what are the boundary conditions required to do simulation for schiapparelli Re-entry parachute on mars with chemical reaction USING ANSYS FLUENT?
i AM GETTING ERRORS LIKE THIS IN ITERATIONS.



iter continuity x-velocity y-velocity z-velocity energy k omega o2 n2 co co2 ar lift drag time/iter

time step reduced in 3070 cells due to excessive temperature change
1 1.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00 1.3796e+00 3.9952e+01 1.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00 8.1163e+01 2.2151e-02 592:26:19 99999

time step reduced in 409 cells due to excessive temperature change
2 8.7776e-01 8.9218e-01 7.7470e-01 9.0141e-01 8.8065e-01 5.2790e-01 1.5746e+00 8.7949e-01 8.7949e-01 8.7949e-01 8.7949e-01 8.7949e-01 8.6531e+01 2.9118e-02 585:03:18 99998

time step reduced in 1 cells due to excessive temperature change
3 7.9447e-01 8.5818e-01 6.0148e-01 8.8642e-01 7.9693e-01 3.1214e-01 2.0716e+00 7.9437e-01 7.9437e-01 7.9437e-01 7.9437e-01 7.9437e-01 9.1377e+01 3.4414e-02 579:08:49 99997

temperature limited to 1.000000e+01 in 2 cells on zone 6
4 7.3263e-01 8.5805e-01 4.7445e-01 9.0105e-01 7.3457e-01 2.0892e-01 2.4484e+00 7.2866e-01 7.2866e-01 7.2866e-01 7.2866e-01 7.2866e-01 9.5611e+01 3.7657e-02 574:25:11 99996
5 6.8119e-01 8.6124e-01 3.8238e-01 9.1376e-01 6.8223e-01 1.3115e-01 1.2466e+00 6.7283e-01 6.7283e-01 6.7283e-01 6.7283e-01 6.7283e-01 9.9062e+01 3.8107e-02 570:38:12 99995

temperature limited to 1.000000e+01 in 2 cells on zone 6
6 6.3514e-01 8.5297e-01 3.1759e-01 9.1104e-01 6.3800e-01 5.9694e-02 4.7819e-01 6.2254e-01 6.2254e-01 6.2254e-01 6.2254e-01 6.2254e-01 1.0169e+02 3.7325e-02 567:36:33 99994

temperature limited to 1.000000e+01 in 4 cells on zone 6
7 5.9138e-01 8.3199e-01 2.7306e-01 8.9185e-01 5.9412e-01 1.7979e-02 2.4112e-01 5.7540e-01 5.7540e-01 5.7540e-01 5.7540e-01 5.7540e-01 1.0360e+02 3.3643e-02 565:11:10 99993

temperature limited to 1.000000e+01 in 5 cells on zone 6
8 5.4818e-01 8.0948e-01 2.4247e-01 8.6600e-01 5.6147e-01 2.2429e-02 1.3672e-01 5.3057e-01 5.3057e-01 5.3057e-01 5.3057e-01 5.3057e-01 1.0500e+02 3.1647e-02 563:14:48 99992

temperature limited to 1.000000e+01 in 7 cells on zone 6
9 5.0534e-01 7.8389e-01 2.2212e-01 8.3184e-01 5.1651e-01 3.7330e-02 8.1428e-02 4.8745e-01 4.8745e-01 4.8745e-01 4.8745e-01 4.8745e-01 1.0606e+02 2.9878e-02 567:14:56 99991

temperature limited to 1.000000e+01 in 17 cells on zone 6
10 4.6399e-01 7.5331e-01 2.0839e-01 7.9065e-01 5.1820e-01 4.6142e-02 4.9511e-02 4.4614e-01 4.4614e-01 4.4614e-01 4.4614e-01 4.4614e-01 1.0683e+02 2.7599e-02 564:53:41 99990

temperature limited to 1.000000e+01 in 8 cells on zone 6
11 4.2671e-01 7.2131e-01 1.9801e-01 7.4838e-01 4.6967e-01 4.9973e-02 3.0238e-02 4.0921e-01 4.0921e-01 4.0921e-01 4.0921e-01 4.0921e-01 1.0756e+02 2.6543e-02 563:00:36 99989

temperature limited to 1.000000e+01 in 22 cells on zone 6

iter continuity x-velocity y-velocity z-velocity energy k omega o2 n2 co co2 ar lift drag time/iter
12 3.9455e-01 6.8922e-01 1.8899e-01 7.0791e-01 5.8119e-01 5.0749e-02 1.8300e-02 3.7781e-01 3.7781e-01 3.7781e-01 3.7781e-01 3.7781e-01 1.0844e+02 2.8801e-02 567:03:22 99988

temperature limited to 1.000000e+01 in 24 cells on zone 6
13 3.6741e-01 6.5785e-01 1.8099e-01 6.7091e-01 5.0565e-01 4.9712e-02 1.0810e-02 3.5176e-01 3.5176e-01 3.5176e-01 3.5176e-01 3.5176e-01 1.0950e+02 3.0127e-02 570:17:31 99987

temperature limited to 1.000000e+01 in 45 cells on zone 6
14 3.4514e-01 6.2965e-01 1.7357e-01 6.3924e-01 8.3592e-01 4.7666e-02 6.0963e-03 3.3077e-01 3.3077e-01 3.3077e-01 3.3077e-01 3.3077e-01 1.1070e+02 3.0789e-02 567:19:28 99986

temperature limited to 1.000000e+01 in 110 cells on zone 6
15 3.2721e-01 6.0599e-01 1.6638e-01 6.1413e-01 6.9339e-01 4.5115e-02 3.8127e-03 3.1418e-01 3.1418e-01 3.1418e-01 3.1418e-01 3.1418e-01 1.1190e+02 3.3269e-02 564:56:58 99985

temperature limited to 1.000000e+01 in 92 cells on zone 6
16 3.1309e-01 5.8598e-01 1.5971e-01 5.9338e-01 1.3729e+00 4.2380e-02 3.7657e-03 3.0097e-01 3.0097e-01 3.0097e-01 3.0097e-01 3.0097e-01 1.1298e+02 3.4045e-02 568:36:11 99984

temperature limited to 1.000000e+01 in 144 cells on zone 6
17 3.0278e-01 5.6622e-01 1.5374e-01 5.7347e-01 1.1026e+00 3.9631e-02 4.5840e-03 2.9040e-01 2.9040e-01 2.9040e-01 2.9040e-01 2.9040e-01 1.1368e+02 3.3296e-02 571:31:29 99983

temperature limited to 1.000000e+01 in 138 cells on zone 6
18 2.9589e-01 5.4676e-01 1.4833e-01 5.5390e-01 2.3439e+00 3.7000e-02 5.1768e-03 2.8196e-01 2.8196e-01 2.8196e-01 2.8196e-01 2.8196e-01 1.1393e+02 3.0661e-02 573:51:39 99982

temperature limited to 1.000000e+01 in 151 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6
19 2.9195e-01 5.2715e-01 1.4346e-01 5.3407e-01 1.8575e+00 3.4539e-02 5.5674e-03 2.7546e-01 2.7546e-01 2.7546e-01 2.7546e-01 2.7546e-01 1.1373e+02 2.4643e-02 570:10:27 99981

temperature limited to 1.000000e+01 in 144 cells on zone 6
20 2.9034e-01 5.0835e-01 1.3887e-01 5.1514e-01 2.8013e+00 3.2268e-02 5.8199e-03 2.7064e-01 2.7064e-01 2.7064e-01 2.7064e-01 2.7064e-01 1.1314e+02 1.6829e-02 567:13:25 99980

time step reduced in 2 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 187 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6
21 2.9073e-01 4.9225e-01 1.3424e-01 4.9920e-01 2.4099e+00 3.0191e-02 5.9624e-03 2.6721e-01 2.6721e-01 2.6721e-01 2.6721e-01 2.6721e-01 1.1232e+02 9.5387e-03 564:51:44 99979

temperature limited to 1.000000e+01 in 161 cells on zone 6
22 2.9202e-01 4.7832e-01 1.2967e-01 4.8544e-01 2.8888e+00 2.8294e-02 6.0247e-03 2.6445e-01 2.6445e-01 2.6445e-01 2.6445e-01 2.6445e-01 1.1137e+02 2.3966e-03 562:58:19 99978

time step reduced in 2 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 165 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

iter continuity x-velocity y-velocity z-velocity energy k omega o2 n2 co co2 ar lift drag time/iter
23 2.9320e-01 4.6698e-01 1.2537e-01 4.7420e-01 2.5500e+00 2.6582e-02 6.0450e-03 2.6185e-01 2.6185e-01 2.6185e-01 2.6185e-01 2.6185e-01 1.1029e+02 -5.1667e-03 567:00:46 99977

temperature limited to 1.000000e+01 in 156 cells on zone 6
24 2.9373e-01 4.5762e-01 1.2154e-01 4.6488e-01 2.9317e+00 2.5044e-02 6.0410e-03 2.5930e-01 2.5930e-01 2.5930e-01 2.5930e-01 2.5930e-01 1.0920e+02 -1.2272e-02 559:08:09 99976

time step reduced in 2 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 197 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6
25 2.9298e-01 4.4987e-01 1.1807e-01 4.5751e-01 2.6107e+00 2.3661e-02 6.0169e-03 2.5672e-01 2.5672e-01 2.5672e-01 2.5672e-01 2.5672e-01 1.0825e+02 -1.6214e-02 558:23:15 99975

temperature limited to 1.000000e+01 in 205 cells on zone 6
26 2.9143e-01 4.4518e-01 1.1533e-01 4.5282e-01 2.9576e+00 2.2416e-02 5.9817e-03 2.5441e-01 2.5441e-01 2.5441e-01 2.5441e-01 2.5441e-01 1.0752e+02 -1.5874e-02 557:47:16 99974

time step reduced in 2 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 175 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6
27 2.8946e-01 4.4279e-01 1.1292e-01 4.5011e-01 2.6379e+00 2.1310e-02 5.9212e-03 2.5245e-01 2.5245e-01 2.5245e-01 2.5245e-01 2.5245e-01 1.0683e+02 -1.3526e-02 557:18:25 99973

temperature limited to 1.000000e+01 in 193 cells on zone 6
28 2.8739e-01 4.4201e-01 1.1098e-01 4.4922e-01 2.9773e+00 2.0327e-02 5.8637e-03 2.5078e-01 2.5078e-01 2.5078e-01 2.5078e-01 2.5078e-01 1.0622e+02 -9.2031e-03 562:28:30 99972

time step reduced in 2 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 221 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6
29 2.8575e-01 4.4247e-01 1.0953e-01 4.4939e-01 2.6524e+00 1.9447e-02 5.8126e-03 2.4945e-01 2.4945e-01 2.4945e-01 2.4945e-01 2.4945e-01 1.0568e+02 -7.2741e-03 561:03:16 99971

time step reduced in 1 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 221 cells on zone 6
30 2.8468e-01 4.4420e-01 1.0855e-01 4.5085e-01 2.9953e+00 1.8664e-02 5.7590e-03 2.4846e-01 2.4846e-01 2.4846e-01 2.4846e-01 2.4846e-01 1.0543e+02 -3.7354e-03 559:55:01 99970

time step reduced in 1 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 204 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6
31 2.8396e-01 4.4633e-01 1.0770e-01 4.5292e-01 2.6640e+00 1.7986e-02 5.7092e-03 2.4750e-01 2.4750e-01 2.4750e-01 2.4750e-01 2.4750e-01 1.0537e+02 -1.8093e-03 570:06:48 99969

time step reduced in 868 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 209 cells on zone 6
32 2.8349e-01 4.4761e-01 1.0660e-01 4.5400e-01 3.0166e+00 1.7370e-02 5.6649e-03 2.4679e-01 2.4679e-01 2.4679e-01 2.4679e-01 2.4679e-01 1.0554e+02 5.7392e-03 567:09:42 99968

time step reduced in 997 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 253 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 1 cells on zone 3
33 2.8313e-01 4.4789e-01 1.0503e-01 4.5413e-01 2.6719e+00 1.6815e-02 5.6442e-03 2.4643e-01 2.4643e-01 2.4643e-01 2.4643e-01 2.4643e-01 1.0595e+02 1.2064e-02 570:21:11 99967

temperature limited to 1.000000e+01 in 272 cells on zone 6

absolute pressure limited to 1.000000e+00 in 2 cells on zone 3

iter continuity x-velocity y-velocity z-velocity energy k omega o2 n2 co co2 ar lift drag time/iter
34 2.8263e-01 4.4821e-01 1.0349e-01 4.5437e-01 3.0408e+00 1.6301e-02 5.7053e-03 2.4631e-01 2.4631e-01 2.4631e-01 2.4631e-01 2.4631e-01 1.0652e+02 1.6194e-02 572:54:17 99966

temperature limited to 1.000000e+01 in 239 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 2 cells on zone 3

temperature limited to 1.000000e+01 in 1008 cells on zone 3
35 2.8178e-01 4.4873e-01 1.0197e-01 4.5450e-01 2.6811e+00 1.5842e-02 5.7567e-03 2.4657e-01 2.4657e-01 2.4657e-01 2.4657e-01 2.4657e-01 1.0725e+02 1.8679e-02 569:23:29 99965

temperature limited to 1.000000e+01 in 233 cells on zone 6

absolute pressure limited to 1.000000e+00 in 3 cells on zone 3

temperature limited to 1.000000e+01 in 1016 cells on zone 3
36 2.8084e-01 4.4940e-01 1.0045e-01 4.5481e-01 3.0707e+00 1.5425e-02 5.7767e-03 2.4725e-01 2.4725e-01 2.4725e-01 2.4725e-01 2.4725e-01 1.0803e+02 2.0858e-02 561:01:34 99964

temperature limited to 1.000000e+01 in 258 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1016 cells on zone 3
37 2.8056e-01 4.4968e-01 9.8553e-02 4.5479e-01 2.6908e+00 1.5070e-02 5.7931e-03 2.4823e-01 2.4823e-01 2.4823e-01 2.4823e-01 2.4823e-01 1.0884e+02 2.2917e-02 565:26:24 99963

time step reduced in 975 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 291 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1024 cells on zone 3
38 2.8088e-01 4.4994e-01 9.6056e-02 4.5473e-01 3.1069e+00 1.4761e-02 5.7911e-03 2.4935e-01 2.4935e-01 2.4935e-01 2.4935e-01 2.4935e-01 1.0965e+02 2.3977e-02 568:58:11 99962

time step reduced in 984 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 267 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1016 cells on zone 3
39 2.8169e-01 4.5002e-01 9.3596e-02 4.5452e-01 2.7058e+00 1.4468e-02 5.7556e-03 2.5043e-01 2.5043e-01 2.5043e-01 2.5043e-01 2.5043e-01 1.1042e+02 2.4121e-02 566:14:21 99961

time step reduced in 9 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 258 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 998 cells on zone 3
40 2.8266e-01 4.4973e-01 9.1171e-02 4.5417e-01 3.1504e+00 1.4252e-02 5.7397e-03 2.5122e-01 2.5122e-01 2.5122e-01 2.5122e-01 2.5122e-01 1.1113e+02 2.3296e-02 569:36:24 99960

temperature limited to 1.000000e+01 in 269 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1970 cells on zone 3
41 2.8371e-01 4.4948e-01 8.8722e-02 4.5391e-01 2.7209e+00 1.4066e-02 5.7321e-03 2.5172e-01 2.5172e-01 2.5172e-01 2.5172e-01 2.5172e-01 1.1180e+02 2.1686e-02 566:44:47 99959

time step reduced in 2 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 315 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1952 cells on zone 3
42 2.8477e-01 4.4961e-01 8.6540e-02 4.5414e-01 3.2013e+00 1.3875e-02 5.7138e-03 2.5207e-01 2.5207e-01 2.5207e-01 2.5207e-01 2.5207e-01 1.1241e+02 2.1101e-02 570:00:37 99958

time step reduced in 967 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 291 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1894 cells on zone 3
43 2.8568e-01 4.5029e-01 8.4749e-02 4.5490e-01 2.7390e+00 1.3507e-02 5.6851e-03 2.5243e-01 2.5243e-01 2.5243e-01 2.5243e-01 2.5243e-01 1.1301e+02 2.1424e-02 567:04:01 99957

time step reduced in 1660 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 293 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1028 cells on zone 3
44 2.8621e-01 4.5123e-01 8.3499e-02 4.5578e-01 3.2643e+00 1.3100e-02 5.6370e-03 2.5277e-01 2.5277e-01 2.5277e-01 2.5277e-01 2.5277e-01 1.1359e+02 2.2791e-02 564:42:40 99956

time step reduced in 165 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 311 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 1029 cells on zone 3

iter continuity x-velocity y-velocity z-velocity energy k omega o2 n2 co co2 ar lift drag time/iter
45 2.8677e-01 4.5228e-01 8.2544e-02 4.5669e-01 2.7622e+00 1.2968e-02 5.6533e-03 2.5312e-01 2.5312e-01 2.5312e-01 2.5312e-01 2.5312e-01 1.1417e+02 2.3972e-02 568:22:43 99955

time step reduced in 9 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 317 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 3621 cells on zone 3
46 2.8757e-01 4.5320e-01 8.1767e-02 4.5750e-01 3.3385e+00 1.2937e-02 5.7283e-03 2.5354e-01 2.5354e-01 2.5354e-01 2.5354e-01 2.5354e-01 1.1474e+02 2.4977e-02 565:45:30 99954

time step reduced in 11 cells due to excessive temperature change

temperature limited to 1.000000e+01 in 298 cells on zone 6

temperature limited to 5.000000e+04 in 2 cells on zone 6

absolute pressure limited to 1.000000e+00 in 4 cells on zone 3

temperature limited to 1.000000e+01 in 3754 cells on zone 3
47 2.8853e-01 4.5377e-01 8.0770e-02 4.5793e-01 2.7922e+00 1.2867e-02 5.8509e-03 2.5393e-01 2.5393e-01 2.5393e-01 2.5393e-01 2.5393e-01 1.1531e+02 2.5734e-02 563:39:40 99953
jean@cfd is offline   Reply With Quote

Reply

Tags
averaging, iteration averaging, iterations, parallel, udf


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
Compressible flows with larger Courant numbers Tobi OpenFOAM Running, Solving & CFD 5 February 26, 2021 15:20
pressure in incompressible solvers e.g. simpleFoam chrizzl OpenFOAM Running, Solving & CFD 13 March 28, 2017 05:49
Extrusion with OpenFoam problem No. Iterations 0 Lord Kelvin OpenFOAM Running, Solving & CFD 8 March 28, 2016 11:08
Compressor Simulation using rhoPimpleDyMFoam Jetfire OpenFOAM Running, Solving & CFD 107 December 9, 2014 13:38
calculation stops after few time steps sivakumar OpenFOAM Running, Solving & CFD 7 March 17, 2013 06:37


All times are GMT -4. The time now is 22:02.