When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Atmospheric dispersion modeling - Wikipedia

    en.wikipedia.org/wiki/Atmospheric_dispersion...

    Emissions or release parameters such as source location and height, type of source (i.e., fire, pool or vent stack) and exit velocity, exit temperature and mass flow rate or release rate. Terrain elevations at the source location and at the receptor location(s), such as nearby homes, schools, businesses and hospitals.

  3. Fundamentals of Stack Gas Dispersion - Wikipedia

    en.wikipedia.org/wiki/Fundamentals_Of_Stack_Gas...

    The subjects covered in the book include atmospheric turbulence and stability classes, buoyant plume rise, Gaussian dispersion calculations and modeling, time-averaged concentrations, wind velocity profiles, fumigations, trapped plumes and gas flare stack plumes. The constraints and assumptions involved in the basic equations are fully explained.

  4. Stack effect - Wikipedia

    en.wikipedia.org/wiki/Stack_effect

    Reference [10] explains how the NPL affects the stack effect in high-rise buildings. For flue gas stacks or chimneys, where air is on the outside and combustion flue gases are on the inside, the equation will only provide an approximation. Also, A is the cross-sectional flow area and h is the height of the flue gas stack or chimney.

  5. Shunting yard algorithm - Wikipedia

    en.wikipedia.org/wiki/Shunting_yard_algorithm

    */ /* This implementation does not implement composite functions, functions with a variable number of arguments, or unary operators. */ while there are tokens to be read: read a token if the token is: - a number: put it into the output queue - a function: push it onto the operator stack - an operator o 1: while ( there is an operator o 2 at the ...

  6. Block-stacking problem - Wikipedia

    en.wikipedia.org/wiki/Block-stacking_problem

    The first nine blocks in the solution to the single-wide block-stacking problem with the overhangs indicated. In statics, the block-stacking problem (sometimes known as The Leaning Tower of Lire (Johnson 1955), also the book-stacking problem, or a number of other similar terms) is a puzzle concerning the stacking of blocks at the edge of a table.

  7. Hypsometric equation - Wikipedia

    en.wikipedia.org/wiki/Hypsometric_equation

    In radiosonde observation, the hypsometric equation can be used to compute the height of a pressure level given the height of a reference pressure level and the mean virtual temperature in between. Then, the newly computed height can be used as a new reference level to compute the height of the next level given the mean virtual temperature in ...

  8. Lifting condensation level - Wikipedia

    en.wikipedia.org/wiki/Lifting_condensation_level

    The LCL can be either computed or determined graphically using standard thermodynamic diagrams such as the skew-T log-P diagram or the tephigram.Nearly all of these formulations make use of the relationship between the LCL and the dew point, which is the temperature to which an air parcel needs to be cooled isobarically until its RH just reaches 100%.

  9. Maze generation algorithm - Wikipedia

    en.wikipedia.org/wiki/Maze_generation_algorithm

    While the stack is not empty Pop a cell from the stack and make it a current cell; If the current cell has any neighbours which have not been visited Push the current cell to the stack; Choose one of the unvisited neighbours; Remove the wall between the current cell and the chosen cell; Mark the chosen cell as visited and push it to the stack