We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5478885 commit 23a90d5Copy full SHA for 23a90d5
stagpy/stagyydata.py
@@ -40,10 +40,13 @@ class _Scales:
40
def __init__(self, sdat):
41
self._sdat = sdat
42
43
- @property
+ @crop
44
def length(self):
45
"""Length in m."""
46
- return self._sdat.par['geometry']['d_dimensional']
+ thick = self._sdat.par['geometry']['d_dimensional']
47
+ if self._sdat.par['boundaries']['air_layer']:
48
+ thick += self._sdat.par['boundaries']['air_thickness']
49
+ return thick
50
51
@property
52
def temperature(self):
0 commit comments