forked from spatialmodel/inmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plumerise.go
92 lines (80 loc) · 3.17 KB
/
plumerise.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
Copyright © 2013 the InMAP authors.
This file is part of InMAP.
InMAP is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
InMAP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with InMAP. If not, see <http://www.gnu.org/licenses/>.
*/
package inmap
import (
"github.com/ctessum/atmos/plumerise"
)
// IsPlumeIn calculates whether the plume rise from an emission is at the height
// of c when given stack information
// (see github.com/ctessum/atmos/plumerise for required units).
// The return values are whether the plume rise ends within the current cell,
// the height of the plume rise in meters, and whether there was an error.
func (c *Cell) IsPlumeIn(stackHeight, stackDiam, stackTemp, stackVel float64) (bool, float64, error) {
// Find the cells in the vertical column below c.
var cellStack []*Cell
cc := c
for {
cellStack = append(cellStack, cc)
if (*cc.groundLevel)[0].Cell == cc {
break
}
cc = (*cc.below)[0].Cell
}
// reverse the order of the stack so it starts at ground level.
for left, right := 0, len(cellStack)-1; left < right; left, right = left+1, right-1 {
cellStack[left], cellStack[right] = cellStack[right], cellStack[left]
}
layerHeights := make([]float64, len(cellStack)+1)
temperature := make([]float64, len(cellStack))
windSpeed := make([]float64, len(cellStack))
windSpeedInverse := make([]float64, len(cellStack))
windSpeedMinusThird := make([]float64, len(cellStack))
windSpeedMinusOnePointFour := make([]float64, len(cellStack))
sClass := make([]float64, len(cellStack))
s1 := make([]float64, len(cellStack))
for i, cell := range cellStack {
layerHeights[i+1] = layerHeights[i] + cell.Dz
temperature[i] = cell.Temperature
windSpeed[i] = cell.WindSpeed
windSpeedInverse[i] = cell.WindSpeedInverse
windSpeedMinusThird[i] = cell.WindSpeedMinusThird
windSpeedMinusOnePointFour[i] = cell.WindSpeedMinusOnePointFour
sClass[i] = cell.SClass
s1[i] = cell.S1
}
plumeIndex, plumeHeight, err := plumerise.ASMEPrecomputed(stackHeight, stackDiam,
stackTemp, stackVel, layerHeights, temperature, windSpeed,
sClass, s1, windSpeedMinusOnePointFour, windSpeedMinusThird,
windSpeedInverse)
if err != nil {
if err == plumerise.ErrAboveModelTop {
// If the plume is above the top of our stack, return true if c is
// in the top model layer (because we want to put the plume in the
// top layer even if it should technically go above it),
// otherwise return false.
if (*c.above)[0].boundary {
return true, plumeHeight, nil
}
return false, plumeHeight, nil
}
return false, plumeHeight, err
}
// if the index of the plume is at the end of the cell stack,
// that means that the plume should go in this cell.
if plumeIndex == c.Layer {
return true, plumeHeight, nil
}
return false, plumeHeight, nil
}