No longer needed
The correction in the node volume is no longer needed as now things are being calculated right with the last change. Still, at some point I should review the calculation of the node volume in 2DCyl.
This commit is contained in:
parent
72dd3c9073
commit
152ae6b097
2 changed files with 0 additions and 28 deletions
|
|
@ -297,20 +297,6 @@ MODULE moduleMeshInputGmsh2
|
||||||
|
|
||||||
CLOSE(10)
|
CLOSE(10)
|
||||||
|
|
||||||
! Adjust node volume at axis
|
|
||||||
SELECT CASE(self%geometry)
|
|
||||||
CASE("Cyl")
|
|
||||||
DO n = 1, self%numNodes
|
|
||||||
r = self%nodes(n)%obj%getCoordinates()
|
|
||||||
IF (r(2) == 0.D0) THEN
|
|
||||||
self%nodes(n)%obj%v = self%nodes(n)%obj%v * 3.0D0/2.0D0
|
|
||||||
|
|
||||||
END IF
|
|
||||||
|
|
||||||
END DO
|
|
||||||
|
|
||||||
END SELECT
|
|
||||||
|
|
||||||
!Call mesh connectivity
|
!Call mesh connectivity
|
||||||
CALL self%connectMesh
|
CALL self%connectMesh
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -497,20 +497,6 @@ MODULE moduleMeshInputVTU
|
||||||
|
|
||||||
END DO
|
END DO
|
||||||
|
|
||||||
! Adjust node volume at axis
|
|
||||||
SELECT CASE(self%geometry)
|
|
||||||
CASE("Cyl")
|
|
||||||
DO n = 1, self%numNodes
|
|
||||||
r = self%nodes(n)%obj%getCoordinates()
|
|
||||||
IF (r(2) == 0.D0) THEN
|
|
||||||
self%nodes(n)%obj%v = self%nodes(n)%obj%v * 3.0D0/2.0D0
|
|
||||||
|
|
||||||
END IF
|
|
||||||
|
|
||||||
END DO
|
|
||||||
|
|
||||||
END SELECT
|
|
||||||
|
|
||||||
!Call mesh connectivity
|
!Call mesh connectivity
|
||||||
CALL self%connectMesh
|
CALL self%connectMesh
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue