-
Hello everyone, I assumed FDS would be able to find the required solutions, but I'm far from it. Attached is the task (in excel and pdf) and my code. I'm using Pyrosim as a platform, so I hope the code can be used without problems. After 30 minutes, the temperature should be between 337.1 and 343.9°C in the center of the filling. However, I'm only getting a temperature of approximately 231°C, which is significantly different. Does anyone have any new approaches for me or find any errors? I tried (in desperation) already to change between LES and DNS; As an additional question. As soon as i changed my mesh size to < 0,05 i also got an error for my solid temperatur profil (ERROR(429): PROF 1 requires repositioning) and could not find any valid position. Any Idea aswell how to solve that? Exampel Case 3_FDS Code.txt Thanks a lot to anyone taking some time :) |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 7 replies
-
You are not replicating the test problem. The test problem is idealized with the gas temperature adacent to the surface is always 1000 C. In your inputs, the moment the simulation starts you will convect heat from the gas to the object, and the gas temperature adjacent to the object is going to drop. This will result in a flow downward along the sides of the object. This will bring back warmer gas from the surroundings but you are not going to have a 1000 C temperature at the block. In the image below plut a slice file of temperature at Y=0.1 m. You can see at 10 s the temperature adjacent to the block has dropped ~20 %. In addition to this the FDS heat conduction you are using is one dimensional. However, this problem is a 2D problem where the center of the insulation is getting heat transfer from all sides of the block. You are not modelling the additional dimension and over the long term will have reduced heating as a result. |
Beta Was this translation helpful? Give feedback.
-
ht3d_filled_column.txt |
Beta Was this translation helpful? Give feedback.
-
Pyrosim runs the version of fds that it installs not the version you have
installed.
…On Fri, May 2, 2025, 06:52 GebChr ***@***.***> wrote:
I'm currently mainly looking for problems with predetermined results that
fit my upcoming work. Then I try to solve the problem to determine where my
shortcomings lie. This will hopefully help me better understand FDS.
The ht3d_filled_column file will help me better understand my mistakes and
perhaps find the adjustments. So, thanks a lot!
But to progress, I need problems and models to recreate myself.
Ps.:
It worked great with FDS, but when imported into Pyrosim, I get different
results, which I now need to investigate.
—
Reply to this email directly, view it on GitHub
<#14593 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADBUZ4I5ITTRXHWHNTOM7R324NFARAVCNFSM6AAAAAB4H5XOAGVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTGMBRGI4TIOA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Holy Moly, thanks a lot, FDS 6.9.1 - temp (Boundaries wall temp) around 520 °C at end of simulation (36000 sec); Lesson learned, thanks a lot!!! |
Beta Was this translation helpful? Give feedback.
-
This Discussion thread inspired me to take a look at some simple verification cases for a 2-D or 3-D heat conduction solver. I remember that about 10 years ago I co-authored an appendix to an SFPE Standards document. This appendix contains 16 heat transfer problems with which one can verify the accuracy of a multi-dimensional solid phase heat conduction solver. The cases and some explanatory notes are found here in the file named SFPE_Verification_Cases. Some of these cases originated in the German standard, and some were developed by Ulf Wickstrom in developing TASEF. I have begun to add some cases to the FDS Verification Guide. The input files for Cases 6, 7, 8, 9, 13, and 16 can be found here. The cases are documented in the FDS Verification Guide, which should be available the next time the nightly build updates. |
Beta Was this translation helpful? Give feedback.
You are not replicating the test problem. The test problem is idealized with the gas temperature adacent to the surface is always 1000 C. In your inputs, the moment the simulation starts you will convect heat from the gas to the object, and the gas temperature adjacent to the object is going to drop. This will result in a flow downward along the sides of the object. This will bring back warmer gas from the surroundings but you are not going to have a 1000 C temperature at the block. In the image below plut a slice file of temperature at Y=0.1 m. You can see at 10 s the temperature adjacent to the block has dropped ~20 %.
In addition to this the FDS heat conduction you are using is one di…