Replies: 2 comments 2 replies
-
What is the total surface area of this OBST? What HRR do you get when you multiple the HRRPUA on Fire by that surface area? &OBST ID = 'Fire source' |
Beta Was this translation helpful? Give feedback.
1 reply
-
Look carefully at the XB for your beam. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
I want to make a FDS code to do the following:
I want to make a 0.1 m wide steel pipe with a certain thickness. I want a fire to burn in a certain distance away from the fire in an open space, and I want to observe the temperatures in the pipe in two points along the pipe.
I have two questions:
This is my code:
&HEAD CHID = 'Steel beam' /
&TIME T_END = 3 / Seconds
&MESH ID = 'MESH', IJK = 15,15,15, XB = 0,0.15,0,0.15,0,0.15/
%MISC TMPA = 25 / Intital temperature
&SURF ID = 'STEEL BEAM'
COLOR = 'STEEL BLUE'
THICKNESS = 0.005
MATL_ID = 'STEEL'
TMP_INNER = 25
/
&OBST ID = 'STEEL BEAM'
XB = 0.075,0.075,0.025,0.125,0.04,0.04,
SURF_ID = 'STEEL BEAM'
/
&SURF ID = 'Fire'
TMP_FRONT = 400
COLOR = 'RED'
HRRPUA = 500
TAU_Q = -1.0
/ TAU_Q = -1 means that it will rise quickly.
&OBST ID = 'Fire source'
XB = 0.015,0.015,0.072,0.078,0.04,0.04
SURF_ID = 'Fire'
/
&REAC FUEL = 'PROPANE'
CO_YIELD = 0.05
SOOT_YIELD = 0.01 /
&MATL ID ='STEEL'
EMISSIVITY = 0.7
DENSITY = 7700
CONDUCTIVITY = 45
SPECIFIC_HEAT = 0.46 /
&DEVC XYZ = 0.075,0.05,0.04 QUANTITY = 'TEMPERATURE' ID = 'Temperature el 1'
&DEVC XYZ = 0.075,0.10,0.04 QUANTITY = 'TEMPERATURE' ID = 'Temperature el 2'
&TAIL /
Beta Was this translation helpful? Give feedback.
All reactions