Boundary wall conditions problem #13663
-
I am solving a natural convection problem in closed cubic cavity in FDS. I am giving hot and cold wall temps as 50C and 10C. But it is not showing the temps at t=0 and also they are not reaching that temp even after 2hrs simulation. Pls help!!! My input file: &HEAD CHID='chid' TITLE='simulation' / &MESH IJK=20,20,20, XB=0,0.75,-0.375,0.375,0,0.75 / &TIME T_END=7200/ &DUMP DT_DEVC=60, DT_RESTART = 60/ &MISC STRATIFICATION=F, SIMULATION_MODE='LES'/ &RADI RADIATION=.TRUE./ &SPEC ID='LJ AIR', SPECIFIC_HEAT=1.007, CONDUCTIVITY=0.02588, VISCOSITY=1.872E-5, BACKGROUND=.TRUE./ &VENT PBX = 0, SURF_ID='hot_wall' / left face &SURF ID = 'hot_wall', COLOR = 'RED', TMP_FRONT = 50, TAU_T=0., EMISSIVITY=0.9 / &INIT XB=0,0.75,-0.375,0.375,0,0.75, TEMPERATURE=30./ &DEVC XYZ=0,0,0.375, IOR=1, QUANTITY='TEMPERATURE', ID='HotWall_Temp'/ &DEVC XYZ=0,0,0.375, IOR = 1, QUANTITY='CONVECTIVE HEAT FLUX', ID='HotWall_ConvectiveHeatFlux'/ &DEVC XYZ=0,0,0.375, IOR = 1, QUANTITY='HEAT TRANSFER COEFFICIENT', ID='HotWall_HTC'/ &DEVC XYZ=0.375,0,0.375, QUANTITY='TEMPERATURE', ID='Core_MidPoint_Temp' / &TAIL / Devc file: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
Can you explain the issue in more detail? What values do you expect at which devices which they do not reach? |
Beta Was this translation helpful? Give feedback.
-
TEMPERATURE is a gas phase quantity. It is not going to give you the temperature of the solid surface. See the table of solid phase output quantities in the User Guide. You don't need to define the specific heat, conductivity, etc. on SPEC. LJ AIR is a predefined species and already has those defined. |
Beta Was this translation helpful? Give feedback.
DT_DEVC is the duration of time the output is averaged. To accurately follow the output in shorter time intervals, DT_DEVC should be small (in your model it is 60 seconds).
try adding this device line to monitor wall temperature:
&DEVC ID='Wall temp Hot wall', QUANTITY='WALL TEMPERATURE', XYZ=0.0,0.0,0.0, IOR=1/
and replace DUMP line with this:
&DUMP DT_SLCF=1 DT_DEVC=0.1/
If you add this line, you can monitor the temperature profile in time:
&SLCF QUANTITY='TEMPERATURE', ID='Slice', PBY=0.01875/