New physical surfaces implemented
This commit is contained in:
parent
a0d45503f7
commit
ce6b6a41a6
11 changed files with 122 additions and 99 deletions
|
|
@ -39,6 +39,27 @@ submodule(moduleMesh) elements
|
|||
|
||||
end function meshNodePointer_equal_type_int
|
||||
|
||||
function meshEdgePointer_equal_type_type(self, other) result(isEqual)
|
||||
implicit none
|
||||
|
||||
class(meshEdgePointer), intent(in):: self, other
|
||||
logical:: isEqual
|
||||
|
||||
isEqual = self%obj%n == other%obj%n
|
||||
|
||||
end function meshEdgePointer_equal_type_type
|
||||
|
||||
function meshEdgePointer_equal_type_int(self, other) result(isEqual)
|
||||
implicit none
|
||||
|
||||
class(meshEdgePointer), intent(in):: self
|
||||
integer, intent(in):: other
|
||||
logical:: isEqual
|
||||
|
||||
isEqual = self%obj%n == other
|
||||
|
||||
end function meshEdgePointer_equal_type_int
|
||||
|
||||
!Constructs the global K matrix
|
||||
SUBROUTINE constructGlobalK(self)
|
||||
IMPLICIT NONE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue