Rapid temperature drop in room during fire #15017
-
Hello, In one of the fire scenarios, there is a large heated room with an initial internal temperature of 20°C and an external temperature of 0°C (winter). This is defined using: As expected, the temperature around the inlet openings quickly drops from 20°C to 0°C. However, the overall cooling of the room happens much faster than expected. With a 5 MW fire and openings relatively close to the fire, the smoke temperature decreases, which is expected. But the issue is that the entire room, with a large volume of about 30,000 m³, almost reaches 0°C, and the smoke temperature drops to around 10°C after just 10 minutes of fire. The cooling seems too rapid for such a short time. The inlet openings are about 30 m², and the outlet openings are around 40 m². Is this cooling rate typical due to the large openings, which account for roughly 1% of the room’s ground floor area? In this case, the natural smoke extraction is proving to be highly inefficient. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
INIT only sets gas temperatures. All the solid surfaces start at TMPA. At the start of your calculation you will immediately convect heat fom the warm room to the cold walls. You can specify the intial wall temperature profile. See the User's Guide. You can do a quick hand calc to get the steady-state wall temperature profle with the inside 20 C and the outside 0 C. |
Beta Was this translation helpful? Give feedback.
-
Thank you. I guess I need to define the initial temperatures of the inner and outer walls, since they are currently cold. &MATL ID='CONCRETE', &SURF ID='Concrete Inside Walls', &SURF ID='Concrete Outside Walls', Is this correct? Or could I just put TMP_INNER=20 to get some more realistic drop of inner temperature in the room? |
Beta Was this translation helpful? Give feedback.
One of the best ways to learn FDS is to get in the habit of making simple test cases that run in a few minutes. Here all you need to do is establish that the correct wall temperature profile is set in initialization. You could have a very simple case with one temperature &PROF for an exterior wall and one for an interior wall. This would have given you the answer in a few minutes rather than waiting for someone to respond in the forum. I suggest you try that as practice and see.
TMP_INNER=20 would not get a more realistic drop. In the real world, heat is being conducted through the walls. Setting the entire wall to 20 C would stop that real world behavior, and thus, be less realistic. Dep…