Skip to content

Commit 5d7e0b6

Browse files
committed
Fix for Issue #133, with respect to active interface nodes for during assebly of matrix
1 parent f3f66f0 commit 5d7e0b6

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
Please see the release notes in ``doc/devsim.pdf`` or at [https://devsim.net](https://devsim.net) for more detailed information about changes.
77

8+
## Version 2.7.3
9+
10+
Fixed issue [#133](https://github.com/devsim/devsim/issues/133) identified by [k@yh-kwok](https://github.com/@yh-kwok).
11+
812
## Version 2.7.2
913

1014
* macOS package is now Universal. Both `x86_64` and `arm64` will use `clang` compiler and macOS 12.0 is now the minimum supported version.
@@ -26,7 +30,7 @@ More helpful exception information returned to python if the error is considered
2630

2731
### Bugs
2832

29-
Fixed issue [#123](https://github.com/devsim/devsim/issues/123) identified by [@gluek](https://github.com/gluek) This resulted in bad results on Windows and macOS in calculation of 3d mesh areas and volumes.
33+
Fixed issue [#123](https://github.com/devsim/devsim/issues/123) identified by [@gluek](https://github.com/gluek). This resulted in bad results on Windows and macOS in calculation of 3d mesh areas and volumes.
3034

3135
## Version 2.6.4
3236

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ INCLUDE(${PROJECT_SOURCE_DIR}/cmake/${DEVSIM_CONFIG}.cmake OPTIONAL)
2121
INCLUDE(${PROJECT_SOURCE_DIR}/local.cmake OPTIONAL)
2222

2323
#also change this in setup.cfg
24-
ADD_DEFINITIONS(-DDEVSIM_VERSION_STRING=\"2.7.2\")
24+
ADD_DEFINITIONS(-DDEVSIM_VERSION_STRING=\"2.7.3\")
2525
ADD_DEFINITIONS(-DDEVSIM_COPYRIGHT_YEAR=\"2009-2024\")
2626
2727
IF (DEVSIM_MATERIALDB)

dist/bdist_wheel/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
py-limited-api = cp37
33
#plat-name=
44
[metadata]
5-
version = 2.7.2
5+
version = 2.7.3
66
classifiers =
77
Development Status :: 5 - Production/Stable
88
Intended Audience :: Science/Research

src/Equation/InterfaceEquation.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ void InterfaceEquation<DoubleType>::NodeVolumeType1Assemble(const std::string &i
432432
const Node *node0 = nodes0[i];
433433
const Node *node1 = nodes1[i];
434434

435-
if (!(activeNodes0.count(node0)) && (activeNodes1.count(node1)))
435+
if (!(activeNodes0.count(node0) && (activeNodes1.count(node1))))
436436
{
437437
continue;
438438
}

0 commit comments

Comments
 (0)