Skip to content

Commit 1a1da59

Browse files
committed
Fix undefined variable bug
1 parent 36c97ff commit 1a1da59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CfdOF/Mesh/CfdMeshTools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ def processRefinements(self):
495495
snappy_settings['BoundaryLayers'][self.patch_names[k][mr_id + 1]] = \
496496
{
497497
'NumberLayers': mr_obj.NumberLayers,
498-
'ExpansionRatio': expratio,
498+
'ExpansionRatio': mr_obj.ExpansionRatio,
499499
# 'FinalLayerHeight': self.scale * Units.Quantity(mr_obj.FinalLayerHeight).Value
500500
}
501501

package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package format="1">
33
<name>CfdOF</name>
44
<description>Computational Fluid Dynamics (CFD) for FreeCAD based on OpenFOAM</description>
5-
<version>1.25.16</version>
5+
<version>1.25.17</version>
66
<maintainer email="[email protected]">Oliver Oxtoby</maintainer>
77
<license file="LICENSE">LGPL-2.0-or-later</license>
88
<url type="repository" branch="master">https://github.com/jaheyns/CfdOF</url>

0 commit comments

Comments
 (0)