Skeleton implementation of text mesh for simple 1D cases.
This commit is contained in:
parent
d5bcf8ce50
commit
9f9bacca7c
6 changed files with 179 additions and 1 deletions
67
src/modules/mesh/inout/text/moduleMeshOutputText.f90
Normal file
67
src/modules/mesh/inout/text/moduleMeshOutputText.f90
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
module moduleMeshOutputText
|
||||
contains
|
||||
|
||||
subroutine writeSpeciesOutput(self, fileID, speciesIndex)
|
||||
use moduleMesh
|
||||
use moduleOutput
|
||||
implicit none
|
||||
|
||||
class(meshParticles), INTENT(in):: self
|
||||
integer, intent(in):: fileID
|
||||
integer, intent(in):: speciesIndex
|
||||
|
||||
end subroutine writeSpeciesOutput
|
||||
|
||||
subroutine writeCollOutput(self, fileID)
|
||||
use moduleMesh
|
||||
use moduleCollisions
|
||||
implicit none
|
||||
|
||||
class(meshGeneric), intent(in):: self
|
||||
integer, intent(in):: fileID
|
||||
|
||||
end subroutine writeCollOutput
|
||||
|
||||
subroutine writeEMOutput(self, fileID)
|
||||
use moduleMesh
|
||||
use moduleRefParam
|
||||
implicit none
|
||||
|
||||
class(meshParticles), intent(in):: self
|
||||
integer, intent(in):: fileID
|
||||
|
||||
end subroutine writeEMOutput
|
||||
|
||||
subroutine printOutputText(self)
|
||||
use moduleMesh
|
||||
implicit none
|
||||
|
||||
class(meshParticles), intent(in):: self
|
||||
|
||||
end subroutine printOutputText
|
||||
|
||||
subroutine printCollText(self)
|
||||
use moduleMesh
|
||||
implicit none
|
||||
|
||||
class(meshGeneric), intent(in):: self
|
||||
|
||||
end subroutine printCollText
|
||||
|
||||
subroutine printEMText(self)
|
||||
use moduleMesh
|
||||
implicit none
|
||||
|
||||
class(meshParticles), intent(in):: self
|
||||
|
||||
end subroutine printEMText
|
||||
|
||||
subroutine printAverageText(self)
|
||||
use moduleMesh
|
||||
implicit none
|
||||
|
||||
class(meshParticles), intent(in):: self
|
||||
|
||||
end subroutine printAverageText
|
||||
|
||||
end module moduleMeshOutputText
|
||||
Loading…
Add table
Add a link
Reference in a new issue