Fix an issue and starting to read information from .vtu initial files

For some reason the connectivity for collision meshes was not being
properly assigned.

Also, the first subroutine to read information from .vtu files as
initial states has been added.
It is currently giving wrong results.
This commit is contained in:
Jorge Gonzalez 2023-02-06 19:54:54 +01:00
commit 515e5c7744
2 changed files with 43 additions and 0 deletions

View file

@ -991,6 +991,11 @@ MODULE moduleInput
END SELECT
IF (doubleMesh) THEN
meshColl%connectMesh => mesh%connectMesh
END IF
!Get the format of mesh
CALL config%get(object // '.meshType', meshFormat, found)
SELECT CASE(meshFormat)