2.4.6. Wind Tunnel Experiment

This application will take the wind tunnel data provided and scale it based on wind speed provided in this interface, and the building dimensions provided in the General Information. The theory on scaling wind tunnel data is provided in the theory. The data for the wind tunnel is provided in a JSON file format. That file contains information on model dimensions, model wind speed, model frequency, tap locations and time-varying pressure tap coefficients.

../../../../../_images/windTunnelExperiment.png

Fig. 2.4.6.1 Wind tunnel experiment wind loading event.

  1. The user to select the shape of the building, currently only Cuboid shapes are permitted.

  2. The Wind speed.

  3. The file containing the experimental data. The file contains information about the dimensions of the building model in the wind tunnel, the wind speed (the meaning of wind speed is dependent on what wind speed measurement was used in the test), time-varying data for the pressure coefficients, information on the frequency of these data points, and information on the locations of pressure taps for which pressure coefficients are provided. An abbreviated example is shown below.

Random Variables: For this event, the wind speed can be a random variable.

The format for the wind tunnel data file is presently a JSON file. Future versions will allow the input of Matlab .mat files. A valid file is as follows:

{
 "windSpeed":22.000000,
 "modelShape":"Cuboid",
 "depth":24.000000,
 "height":12.000000,
 "breadth":16.000000,
 "frequency":600.000000,
 "period": 15.000000,
 "units":{
"length":"m",
"time":"sec"
   },
"tapLocations": [
{"id":1,"xLoc":1.000000,"yLoc":15.000000,"face":1},
{"id":2,"xLoc":3.000000,"yLoc":15.000000,"face":1},
......
   ],
"pressureCoefficients": [
        {"id": 1 , "data":[-1.083194,-1.372954, ....]},
        {"id": 2 , "data":[-1.181435,-1.164351, ....]},
        ......
   ]
}

Note

  1. The length of the data arrays should be equal to frequencey times period, where period refers to the duration of the recorded data. (In future versions, duration will be accepted instead of period)

  2. It should be noted that at present the only valid modelShape is a Cuboid. For users requiring other shapes, please post shape requests on the Message Board.

For a cuboid, the input file contains information about the wind tunnel model’s width, depth, height and wind speed. In addition for each of the 4 faces the user provides information on tap location for which pressure coefficients are given. The coordinate system for each face is x and ym and assumes the origin is at the bottom left of an elevation of the building assuming the user is looking at that face of the building, as shown in the figure below.

../../../../../_images/windTunnel.png

Fig. 2.4.6.2 Wind Tunnel Experiment Event