3.3. Example - Steckler Compartment#

Experimental Setup#

In 1982 a series of 55 full-scale experiments was coducted by K.D. Steckler, J.G. Quintiere, W.J. Rinkinen [SQR82]. In this study they investigated a compartment with the size of \(\mf 2.8~m \times 2.8~m \times 2.18~m\).

This compartment had an opening, either a door or a window, with a variable width. Inside the compartment a gas burner with a variable heating power was placed at different locations. The measured data are the temperature and velocity profiles (w.r.t. to height) inside the compartment and in the opening.

All gemetrical details, the experimental matrix and the measurement data can be found in the original publication [SQR82].

Initial FDS Setup#

There are two specifics to be pointed to in this setup, which is based on the validation cases provided with FDS.

  • The TIME_SHRINK_FACTOR=10. acceletes the computation if a steady-state condition is to be expected. It basically reduces the time for the solids to reach an equilibrium. See section 6.2.3 (Special Topic: Steady-State Applications) in [MHF+20d].

  • The surface definition DEFAULT=.TRUE. sets all, i.e. also the implicit domain boundaries, to the definition of the according SURF definition.

&HEAD CHID='Steckler_012', TITLE='Steckler Compartment, Test 012'/

## Computational domain, simulation time and ambient values
&MESH IJK=18,14,11, XB=0.00,3.60,-1.40,1.40,0.00,2.20 /
&TIME T_END=1800.0, TIME_SHRINK_FACTOR=10./
&MISC TMPA=20.0 /

## Fire definition
&REAC FUEL='METHANE', SOOT_YIELD=0. /
&SURF ID='BURNER', HRRPUA=100.0, TMP_FRONT=100.0, COLOR='ORANGE' /

## Geometry, here a wall with a hole
&OBST XB = 2.80, 2.90, -1.40, 1.40, 0.00, 2.20 / Wall with door
&HOLE XB = 2.75, 2.95, -0.50, 0.50, 0.00, 1.83 / Door opening

## Burner surface
&VENT XB=1.30,1.50, -0.10, 0.10, 0.00,0.00, SURF_ID='BURNER' /

## Domain boundary conditions, here open, but in the compartment
&VENT MB='XMAX',SURF_ID='OPEN'/
&VENT XB= 2.90, 3.60, -1.40,-1.40, 0.00, 2.20, SURF_ID='OPEN'/
&VENT XB= 2.90, 3.60,  1.40, 1.40, 0.00, 2.20, SURF_ID='OPEN'/
&VENT XB= 2.90, 3.60, -1.40, 1.40, 2.20, 2.20, SURF_ID='OPEN'/

## Boundary conditions of the walls, default for all walls
&SURF ID='FIBER BOARD', DEFAULT=.TRUE., MATL_ID='INSULATION', THICKNESS=0.013 /
&MATL ID            = 'INSULATION' 
      DENSITY       = 200.
      CONDUCTIVITY  = 0.1
      SPECIFIC_HEAT = 1. /

## Output definition
&SLCF PBY=0.0, QUANTITY='TEMPERATURE', VECTOR=.TRUE., CELL_CENTERED=.TRUE./
&SLCF PBY=0.0, QUANTITY='PRESSURE', VECTOR=.TRUE., CELL_CENTERED=.TRUE./

&TAIL /

Tasks#

Based on the initial FDS setup from above, the following steps are to be conducted in order to simulate test number 13.

Step 0 – Reading#

Familiarise yourself with the work of Steckler et al., especially for the test number 13.

Step 1 – Opening#

Add an opening to the FDS input file, with the extension given by the experimental setup.

Which grid resolution \(\mf \Delta x\) is defined in the initial FDS setup?

Check your setup, especially the opening’s width with smokeview by executing FDS with a zero simulation time. It is helpful to display the grid and turn on the projection method to a size preserving mode, see the keyboard shortcut section in SMV Basics. Fig. 3.26 illustrates an example of a suitable view on an opening.

../../../_images/steckler_opening.png

Fig. 3.26 Check for the opening size.#

Step 2 – HRR#

In the initial setup, there is already a surface property defined. Adopt the specific heat release rate to match the one in test number 13 and add a surface tempertaure of \(\mf 100~^\circ C\). This elevated temperature represents the hot surface of the burner.

Plot the heat release rate like in Fig. 3.27, where the curve is shown for the full simulation time.

../../../_images/steckler_20cm_hrr.svg

Fig. 3.27 Comparison of the targeted heat realease rate and the one achieved in the simulations.#

Step 3 – Output#

Add multiple devices at the center of the opening, from the bottom to the top of the opening. The quantities to monitor are the gas temperature and the gas velocity.

How many devices should be used?

There are two ways to setup the devices:

  • A set of individual devices, or

  • with a linear array of devices, see section 21.2.2 (Linear Array of Point Devices) in [MHF+20d].

Check their positions with Smokeview. They are indicated as green dots, see Fig. 3.28.

../../../_images/steckler_devices.png

Fig. 3.28 Check for the device positioning.#

Additionally, check if the quasi steady-state is reached in the simulations, like shown in Fig. 3.29.

../../../_images/steckler_20cm_temp-devc.svg

Fig. 3.29 Time series of a point temperature measurement in the opening.#

Step 4 – Comparison with the Experiment#

Plot the simulation results for temperature and velocity as time averaged values during the quasi steady-state. Add to these plots the experimental data stated by the study, here you can use the central values (in x-direction). A common representation is to use the y-axis of the plot for the height and the x-axis for the values.

Your results may look like those in Fig. 3.30 and Fig. 3.31.

../../../_images/steckler_20cm_temp-exp.svg

Fig. 3.30 Comparison of the predicted temperature profile with experimental data.#

../../../_images/steckler_20cm_velo-exp.svg

Fig. 3.31 Comparison of the predicted velocity profile with experimental data.#

Step 5 – Grid Resolution#

Reduce the grid resolution by a factor of two and four.

Note: check the total heat release rate!

How does the simulation time change? If you want to reduce the computational time, you can run FDS in parallel, see parallel execution for more details.

Plot the simulation outcome for the three grid resolutions. Do the results depend on the grid resolution?

../../../_images/steckler_20cm_temp-grid-sensitivity.svg

Fig. 3.32 Grid sensitivity of the temperature profile.#

../../../_images/steckler_20cm_velo-grid-sensitivity.svg

Fig. 3.33 Grid sensitivity of the velocity profile.#