Skeleton implementation of text mesh for simple 1D cases.

This commit is contained in:
Jorge Gonzalez 2026-01-19 14:48:06 +01:00
commit 9f9bacca7c
6 changed files with 179 additions and 1 deletions

View 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