Compute the geometric parameters based on the grid points
The geometric parameters include the face normals and areas and the cell volumes.
subroutine compute_geometric_parameters()
!< Compute the geometric parameters based on the grid points
!<
!< The geometric parameters include the face normals and
!< areas and the cell volumes.
!-----------------------------------------------------------
implicit none
call dmsg(1, 'geometry', 'compute_geometric_parameters')
call compute_face_areas_and_normals()
call compute_volumes()
end subroutine compute_geometric_parameters