! File: module_bns_fuka.f90 ! Authors: Francesco Torsello (FT) !************************************************************************ ! Copyright (C) 2020-2023 Francesco Torsello * ! * ! This file is part of SPHINCS_ID * ! * ! SPHINCS_ID is free software: you can redistribute it and/or modify * ! it under the terms of the GNU General Public License as published by * ! the Free Software Foundation, either version 3 of the License, or * ! (at your option) any later version. * ! * ! SPHINCS_ID is distributed in the hope that it will be useful, * ! but WITHOUT ANY WARRANTY; without even the implied warranty of * ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * ! GNU General Public License for more details. * ! * ! You should have received a copy of the GNU General Public License * ! along with SPHINCS_ID. If not, see . * ! The copy of the GNU General Public License should be in the file * ! 'COPYING'. * !************************************************************************ MODULE bns_fuka !*********************************************************** ! !# This module contains the definition of TYPE bnsfuka, ! and the SUBROUTINES that bind to the methods ! of |fuka|'s procedures ! ! [|fuka| official site](https://kadath.obspm.fr/fuka/#){:target="_blank"} ! !*********************************************************** ! !-- INTRINSIC MODULE to link to the C++ library Kadath ! USE, INTRINSIC:: ISO_C_BINDING, ONLY: C_INT, C_DOUBLE, C_CHAR, C_NULL_CHAR, & C_PTR, C_NULL_PTR, C_ASSOCIATED ! !-- MODULES from SPHINCS_ID ! USE id_base, ONLY: idbase USE bns_base, ONLY: bnsbase USE utility, ONLY: itr, ios, err_msg, test_status, & perc, creturn, compute_g4, & determinant_sym4x4, show_progress ! !-- MODULES from SPHINCS_BSSN ! USE mesh_refinement, ONLY: grid_function_scalar USE timing, ONLY: timer IMPLICIT NONE !******************************************************** ! * ! Definition of TYPE bnsfuka * ! * ! This class reads and stores the |fuka| |bns| |id| * ! * !******************************************************** ! Enumeration-style variables to enumerate the fields read from the ! |fuka| |id| INTEGER, PARAMETER:: id$x = 1 INTEGER, PARAMETER:: id$y = 2 INTEGER, PARAMETER:: id$z = 3 INTEGER, PARAMETER:: id$lapse = 4 INTEGER, PARAMETER:: id$shiftx = 5 INTEGER, PARAMETER:: id$shifty = 6 INTEGER, PARAMETER:: id$shiftz = 7 INTEGER, PARAMETER:: id$gxx = 8 INTEGER, PARAMETER:: id$gxy = 9 INTEGER, PARAMETER:: id$gxz = 10 INTEGER, PARAMETER:: id$gyy = 11 INTEGER, PARAMETER:: id$gyz = 12 INTEGER, PARAMETER:: id$gzz = 13 INTEGER, PARAMETER:: id$kxx = 14 INTEGER, PARAMETER:: id$kxy = 15 INTEGER, PARAMETER:: id$kxz = 16 INTEGER, PARAMETER:: id$kyy = 17 INTEGER, PARAMETER:: id$kyz = 18 INTEGER, PARAMETER:: id$kzz = 19 INTEGER, PARAMETER:: id$massdensity = 20 INTEGER, PARAMETER:: id$specificenergy= 21 INTEGER, PARAMETER:: id$pressure = 22 INTEGER, PARAMETER:: id$eulvelx = 23 INTEGER, PARAMETER:: id$eulvely = 24 INTEGER, PARAMETER:: id$eulvelz = 25 INTEGER, PARAMETER:: n_fields_fuka = 25 INTEGER, PARAMETER:: max$tpo= 20 !# Maximum number of [[standard_tpo_formulation:tpo]] objects that can be ! constructed using a [[bnsfuka]] object ! @note This number is arbitrary; it can be modified as needed. TYPE id_lattice !! Type representing the |id| on a 3D lattice DOUBLE PRECISION, DIMENSION(:,:,:,:), ALLOCATABLE:: coords DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: lapse DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: shift_x DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: shift_y DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: shift_z DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: g_xx DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: g_xy DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: g_xz DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: g_yy DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: g_yz DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: g_zz DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: k_xx DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: k_xy DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: k_xz DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: k_yy DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: k_yz DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: k_zz DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: mass_density DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: specific_energy DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: pressure DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: v_eul_x DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: v_eul_y DOUBLE PRECISION, DIMENSION(:,:,:), ALLOCATABLE:: v_eul_z CONTAINS PROCEDURE:: allocate_lattice_memory !! Allocates memory for all the member arrays PROCEDURE:: deallocate_lattice_memory !! Deallocates memory for all the member arrays END TYPE id_lattice TYPE, EXTENDS(bnsbase):: bnsfuka !# TYPE representing a binary system of neutron stars (|bns|) produced with ! |fuka| PRIVATE INTEGER:: bns_identifier= 0 !! Identifier of the bnsfuka object INTEGER:: eos1_fukaid !! |fuka| identifier for the |eos| of star 1 INTEGER:: eos2_fukaid !! |fuka| identifier for the |eos| of star 2 ! !-- ID fields on a lattice around each star ! INTEGER:: nx_lattice= 400 !! Number of points for each lattice around the stars, along the \(x\) axis INTEGER:: ny_lattice= 400 !! Number of points for each lattice around the stars, along the \(y\) axis INTEGER:: nz_lattice= 400 !! Number of points for each lattice around the stars, along the \(z\) axis TYPE(id_lattice), DIMENSION(2):: star_lattice !# Array storing two [[bns_fuka:id_lattice]] objects, one per star ! !-- Hydro fields stored on a refined mesh ! INTEGER, DIMENSION(max$tpo):: tpo$log= 0 !# Variable that stores the identifiers for the [[tpo]] objects constructed ! using this [[bnsfuka]] object INTEGER, PUBLIC:: tpo_curr= 0 !# Variable set to the current [[tpo]] object to consider, when reading ! the hydro |id| on the refined mesh in computing the constraints INTEGER, PUBLIC:: l_curr !# Variable set to the current refinement level to consider, when reading ! the hydro |id| on the refined mesh in computing the constraints TYPE(grid_function_scalar), DIMENSION(max$tpo), PUBLIC:: mass_density !! 1-D array storing the baryon mass density in the fluid frame TYPE(grid_function_scalar), DIMENSION(max$tpo), PUBLIC:: pressure !! 1-D array storing the pressure TYPE(grid_function_scalar), DIMENSION(max$tpo), PUBLIC:: specific_energy !! 1-D array storing the specific internal energy TYPE(grid_function_scalar), DIMENSION(max$tpo), PUBLIC:: v_euler_x !# 1-D array storing the x component of the fluid 3-velocity with respect to ! the Eulerian observer [c] TYPE(grid_function_scalar), DIMENSION(max$tpo), PUBLIC:: v_euler_y !# 1-D array storing the y component of the fluid 3-velocity with respect to ! the Eulerian observer [c] TYPE(grid_function_scalar), DIMENSION(max$tpo), PUBLIC:: v_euler_z !# 1-D array storing the z component of the fluid 3-velocity with respect to ! the Eulerian observer [c] DOUBLE PRECISION:: komar_mass !! Komar mass of the binary system \([M_\odot]\) !& C pointer to the |fuka|'s object storing the |bns| \id| ! N.B. This variable is global. The pointer to the second |fuka| |binns| ! object will overwrite the first one, and so on. ! This variable stores the pointer to the last defined |fuka| |binns| ! object. That's why it is not freed in the destructor of a bns object. ! Presently, it has to be freed by the user at the end of the PROGRAM. ! See the last part of the PROGRAM in sphincs_id.f90, for example. TYPE(C_PTR):: bns_ptr CHARACTER(LEN=:), ALLOCATABLE:: eos_type_1 !! String containing the type of the |eos| of star 1 CHARACTER(LEN=:), ALLOCATABLE:: eos_file_1 !! String containing the name of the |eos| file used by |fuka| of star 1 CHARACTER(LEN=:), ALLOCATABLE:: eos_type_2 !! String containing the type of the |eos| of star 2 CHARACTER(LEN=:), ALLOCATABLE:: eos_file_2 !! String containing the name of the |eos| file used by |fuka| of star 2 CHARACTER(LEN=:), ALLOCATABLE:: filename !! String containing the name of the '.info' |id| file output by |fuka| CONTAINS !-------------------! !-- SUBROUTINES --! !-------------------! PROCEDURE:: derived_type_constructor => construct_bnsfuka PROCEDURE:: construct_binary !! Constructs the |fuka| bns_export object PROCEDURE:: destruct_binary !! Destructs the |fuka| bns_export object PROCEDURE:: allocate_bnsfuka_memory !! Allocates memory for the [[bnsfuka]] member arrays !PROCEDURE:: allocate_bnsfuka_hydro_memory !# Allocates memory for the [[bnsfuka]] member 3D arrays storing the ! hydro fields PROCEDURE:: deallocate_bnsfuka_memory !! Deallocates memory for the [[bnsfuka]] member arrays PROCEDURE:: read_bns_properties !! Imports the parameters of the |bns| from |fuka| PROCEDURE:: run_kadath_reader !# Calls the MPI-parallelized version of the function KadathExportBNS ! within Kadath PROCEDURE:: set_up_lattices_around_stars !# Sets up two fine lattice, one around each star, to be able to interpolate ! the |id| at the particle positions. It calls [[bnsfuka:run_kadath_reader]] !PROCEDURE:: integrate_field_on_star => integrate_baryon_mass_density !# Integrates the |fuka| baryon mass density and computes the ! radial mass profile PROCEDURE, PUBLIC:: print_bns_properties !! Prints the parameters of the |bns| to the standard output PROCEDURE:: read_fuka_id_member !! Stores the |id| in the [[bnsfuka]] member arrays PROCEDURE:: read_id_full => read_fuka_id_full PROCEDURE:: read_id_spacetime => read_fuka_id_spacetime PROCEDURE:: read_id_hydro => read_fuka_id_hydro PROCEDURE:: read_id_k => read_fuka_id_k PROCEDURE:: read_fuka_id_particles PROCEDURE:: read_fuka_id_mass_b PROCEDURE:: read_id_particles => interpolate_fuka_id_particles PROCEDURE:: read_id_mass_b => interpolate_fuka_id_mass_b PROCEDURE:: print_summary_derived => print_summary_bnsfuka PROCEDURE:: initialize_id => initialize_id_bnsfuka PROCEDURE, NOPASS:: finalize !# Corrects the |sph| |id| so that the linear \(\mathrm{ADM}\) momentum ! is zero !-----------------! !-- FUNCTIONS --! !-----------------! !> Returns the |fuka|'s mass density at the given point PROCEDURE:: read_fuka_mass_density PROCEDURE:: read_mass_density => interpolate_fuka_mass_density !> Returns the |fuka|'s pressure at the desired point PROCEDURE:: read_fuka_pressure PROCEDURE:: read_pressure => interpolate_fuka_pressure !> Returns the |fuka|'s conformally flat spatial ADM metric PROCEDURE:: read_fuka_spatial_metric PROCEDURE:: interpolate_fuka_spatial_metric !& Returns 1 if the energy density or the specific energy or the pressure ! are negative PROCEDURE:: is_hydro_positive PROCEDURE:: test_position => is_hydro_positive_interpolation ! !-- Overloaded FUNCTION to access the fields as arrays and as values ! GENERIC, PUBLIC:: get_field => get_fa, get_fv !# GENERIC PROCEDURE, overloded to access the [[bnsfuka]]-member variables ! as arrays and as values PROCEDURE:: get_fa => get_field_array !! Access the [[bnsfuka]]-member arrays PROCEDURE:: get_fv => get_field_value !! Access the components of the [[bnsfuka]]-member arrays ! !-- FUNCTIONS that access member variables ! PROCEDURE:: get_eos1_id => get_eos1_fukaid !! Returns the |fuka| identifier for the EOS of star 1 PROCEDURE:: get_eos2_id => get_eos2_fukaid !! Returns the |fuka| identifier for the EOS of star 2 PROCEDURE:: return_eos_parameters => get_eos_parameters PROCEDURE, PUBLIC:: get_eos1_fukaid !! Returns [[bnsfuka:eos1_fukaid]] PROCEDURE, PUBLIC:: get_eos2_fukaid !! Returns [[bnsfuka:eos2_fukaid]] PROCEDURE, PUBLIC:: get_bns_identifier !! Returns [[bnsfuka:bns_identifier]] !PROCEDURE, PUBLIC:: get_bns_ptr !PROCEDURE:: derived_type_destructor => destruct_bnsfuka !PROCEDURE:: derived_type_destructor => destruct_bnsfuka FINAL:: destruct_bnsfuka !! Finalizer (Destructor) of a [[bnsfuka]] object END TYPE bnsfuka ! !-- Interfaces of the constructor and destructor of the TYPE bnsfuka ! INTERFACE MODULE SUBROUTINE construct_bnsfuka( derived_type, filename, eos_filenames ) !# Prints a summary of the physical properties the system ! to the standard output and, optionally, to a formatted file whose name ! is given as the optional argument `filename` CLASS(bnsfuka), INTENT(OUT):: derived_type !! Constructed [[bnsfuka]] object CHARACTER(LEN=*), INTENT(IN), OPTIONAL:: filename !! |fuka| binary file containing the spectral |bns| |id| CHARACTER(LEN=*), DIMENSION(:), INTENT(IN), OPTIONAL :: eos_filenames !# Array of strings containing the names of the files containing the |eos| ! to be used for each matter object. If not PRESENT, information from ! the file `filename` is used END SUBROUTINE construct_bnsfuka MODULE SUBROUTINE destruct_bnsfuka( this ) !! Destruct a [[bnsfuka]] object TYPE(bnsfuka), INTENT(INOUT):: this !! [[bnsfuka]] object to be destructed END SUBROUTINE destruct_bnsfuka END INTERFACE ! !-- Interfaces of the methods of the TYPE bnsfuka !-- Their implementations are in submodule_bnsfuka_methods.f90 ! INTERFACE !------------------------------! !-- OVERRIDING SUBROUTINES --! !------------------------------! MODULE SUBROUTINE print_summary_bnsfuka( this, filename ) !# Prints a summary of the physical properties of the |bns| produced by ! |fuka| to the standard output and, optionally, to a formatted file ! whose name is given as the optional argument `filename` CLASS(bnsfuka), INTENT(IN):: this CHARACTER(LEN=*), INTENT(INOUT), OPTIONAL:: filename !! Name of the formatted file to print the summary to END SUBROUTINE print_summary_bnsfuka !-------------------! !-- SUBROUTINES --! !-------------------! MODULE SUBROUTINE construct_binary( this, fukafile ) !! Interface of the subroutine that constructs the |fuka| |binns| object !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT) :: this !> |fuka| binary file containing the spectral |bns| |id| CHARACTER(KIND= C_CHAR, LEN=*), INTENT(IN), OPTIONAL:: fukafile END SUBROUTINE construct_binary MODULE SUBROUTINE destruct_binary( this ) !! Destructs a |fuka| |binns| object !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this END SUBROUTINE destruct_binary MODULE SUBROUTINE allocate_bnsfuka_memory( this, d ) !! Allocates allocatable arrays member of a [[bnsfuka]] object !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this !> Dimension of the arrays INTEGER, INTENT(IN) :: d END SUBROUTINE allocate_bnsfuka_memory ! MODULE SUBROUTINE allocate_bnsfuka_hydro_memory( this, nx, ny, nz ) ! !! Allocates allocatable arrays member of a [[bnsfuka]] object ! ! !> [[bnsfuka]] object which this PROCEDURE is a member of ! CLASS(bnsfuka), INTENT(INOUT):: this ! !> Dimensions of the arrays ! INTEGER, INTENT(IN) :: nx, ny, nz ! ! END SUBROUTINE allocate_bnsfuka_hydro_memory MODULE SUBROUTINE deallocate_bnsfuka_memory( this ) !! Deallocates allocatable arrays member of a [[bnsfuka]] object !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this END SUBROUTINE deallocate_bnsfuka_memory MODULE SUBROUTINE read_bns_properties( this ) !! Imports the |bns| parameters from |fuka| !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this END SUBROUTINE read_bns_properties MODULE SUBROUTINE print_bns_properties( this ) !! Prints the |bns| parameters to the standard output !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this END SUBROUTINE print_bns_properties MODULE SUBROUTINE run_kadath_reader( & this, mpi_ranks, nx, ny, nz, xmin, xmax, ymin, ymax, zmin, zmax, & coords, lapse, shift_x, shift_y, shift_z, g_xx, g_xy, g_xz, g_yy, g_yz, & g_zz, k_xx, k_xy, k_xz, k_yy, k_yz, k_zz, & mass_density, specific_energy, pressure, v_eul_x, v_eul_y, v_eul_z, & filename ) !# Calls the MPI-parallelized vsion of the function KadathExportBNS ! from Kadath CLASS(bnsfuka), INTENT(INOUT):: this !! [[bnsfuka]] object which this PROCEDURE is a member of INTEGER, INTENT(IN):: mpi_ranks !! Number of MPI ranks INTEGER, INTENT(IN):: nx !! Number of lattice points in the \(x\) direction INTEGER, INTENT(IN):: ny !! Number of lattice points in the \(y\) direction INTEGER, INTENT(IN):: nz !! Number of lattice points in the \(z\) direction DOUBLE PRECISION, INTENT(IN):: xmin !! Minimum value for \(x\) over the lattice DOUBLE PRECISION, INTENT(IN):: xmax !! Maximum value for \(x\) over the lattice DOUBLE PRECISION, INTENT(IN):: ymin !! Minimum value for \(x\) over the lattice DOUBLE PRECISION, INTENT(IN):: ymax !! Maximum value for \(x\) over the lattice DOUBLE PRECISION, INTENT(IN):: zmin !! Minimum value for \(x\) over the lattice DOUBLE PRECISION, INTENT(IN):: zmax !! Maximum value for \(x\) over the lattice DOUBLE PRECISION, DIMENSION(nx,ny,nz,3), INTENT(INOUT):: coords !# Array containing the |id| on a lattice. First three indices run over ! the lattice's dimensions, the fourth one runs ovr the fields DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: lapse DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: shift_x DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: shift_y DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: shift_z DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: g_xx DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: g_xy DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: g_xz DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: g_yy DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: g_yz DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: g_zz DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: k_xx DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: k_xy DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: k_xz DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: k_yy DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: k_yz DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: k_zz DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: mass_density DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: specific_energy DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: pressure DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: v_eul_x DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: v_eul_y DOUBLE PRECISION, DIMENSION(nx,ny,nz), INTENT(INOUT):: v_eul_z CHARACTER(LEN=*), INTENT(IN):: filename !# Path to the |id| file output by |fuka|, as given in the parameter fe ! sphincs_id_parameters.dat END SUBROUTINE run_kadath_reader MODULE SUBROUTINE set_up_lattices_around_stars( this ) !# Sets up two fine lattice, one around each star, to be able to interpolate ! the |id| at the particle positions. It calls [[bnsfuka:run_kadath_reader]] CLASS(bnsfuka), INTENT(INOUT):: this !! [[bnsfuka]] object which this PROCEDURE is a member of END SUBROUTINE set_up_lattices_around_stars MODULE SUBROUTINE read_fuka_id_member( this, n, x, y, z ) !! Stores the |id| in the [[bnsfuka]] member arrays !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this INTEGER, INTENT(IN) :: n DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: x DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: y DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: z END SUBROUTINE read_fuka_id_member MODULE SUBROUTINE read_fuka_id_full( this, n, x, y, z,& lapse, & shift_x, shift_y, shift_z, & g_xx, g_xy, g_xz, & g_yy, g_yz, g_zz, & k_xx, k_xy, k_xz, & k_yy, k_yz, k_zz, & baryon_density, & energy_density, & specific_energy, & pressure, & u_euler_x, u_euler_y, u_euler_z ) !# Stores the |id| in non [[bnsfuka]]-member arrays with the same shape as ! the [[bnsfuka]] member arrays !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this INTEGER, INTENT(IN) :: n DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: x DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: y DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: z DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: lapse DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_x DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_y DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_z DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xx DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_yy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_yz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_zz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_xx DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_xy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_xz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_yy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_yz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_zz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: baryon_density DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: energy_density DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: specific_energy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: pressure DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_x DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_y DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_z END SUBROUTINE read_fuka_id_full MODULE SUBROUTINE read_fuka_id_spacetime( this, nx, ny, nz, & pos, & lapse, & shift, & g, & ek ) !# Stores the spacetime |id| in multi-dimensional arrays needed to compute ! the BSSN variables and constraints !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this INTEGER, INTENT(IN) :: nx INTEGER, INTENT(IN) :: ny INTEGER, INTENT(IN) :: nz DOUBLE PRECISION, DIMENSION(:,:,:,:), INTENT(IN) :: pos DOUBLE PRECISION, DIMENSION(:,:,:), INTENT(INOUT):: lapse DOUBLE PRECISION, DIMENSION(:,:,:,:), INTENT(INOUT):: shift DOUBLE PRECISION, DIMENSION(:,:,:,:), INTENT(INOUT):: g DOUBLE PRECISION, DIMENSION(:,:,:,:), INTENT(INOUT):: ek END SUBROUTINE read_fuka_id_spacetime MODULE SUBROUTINE read_fuka_id_hydro( this, nx, ny, nz, & pos, & baryon_density, & energy_density, & specific_energy, & pressure, & u_euler ) !# Stores the hydro |id| in the arrays needed to compute the constraints ! on the refined mesh !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this INTEGER, INTENT(IN) :: nx INTEGER, INTENT(IN) :: ny INTEGER, INTENT(IN) :: nz DOUBLE PRECISION, DIMENSION(:,:,:,:), INTENT(IN) :: pos DOUBLE PRECISION, DIMENSION(:,:,:), INTENT(INOUT):: baryon_density DOUBLE PRECISION, DIMENSION(:,:,:), INTENT(INOUT):: energy_density DOUBLE PRECISION, DIMENSION(:,:,:), INTENT(INOUT):: specific_energy DOUBLE PRECISION, DIMENSION(:,:,:), INTENT(INOUT):: pressure DOUBLE PRECISION, DIMENSION(:,:,:,:), INTENT(INOUT):: u_euler END SUBROUTINE read_fuka_id_hydro MODULE SUBROUTINE read_fuka_id_particles( this, n, x, y, z, & lapse, & shift_x, shift_y, shift_z, & g_xx, g_xy, g_xz, & g_yy, g_yz, g_zz, & baryon_density, & energy_density, & specific_energy, & pressure, & u_euler_x, u_euler_y, u_euler_z ) !! Stores the hydro |id| in the arrays needed to compute the |sph| |id| !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this INTEGER, INTENT(IN) :: n REAL(C_DOUBLE), DIMENSION(:), INTENT(IN) :: x REAL(C_DOUBLE), DIMENSION(:), INTENT(IN) :: y REAL(C_DOUBLE), DIMENSION(:), INTENT(IN) :: z DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: lapse DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_x DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_y DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_z DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xx DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_yy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_yz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_zz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: baryon_density DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: energy_density DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: specific_energy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: pressure DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_x DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_y DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_z END SUBROUTINE read_fuka_id_particles MODULE SUBROUTINE interpolate_fuka_id_particles( this, n, x, y, z, & lapse, & shift_x, shift_y, shift_z, & g_xx, g_xy, g_xz, & g_yy, g_yz, g_zz, & baryon_density, & energy_density, & specific_energy, & pressure, & u_euler_x, u_euler_y, u_euler_z ) !! Stores the hydro |id| in the arrays needed to compute the |sph| |id| !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this INTEGER, INTENT(IN) :: n REAL(C_DOUBLE), DIMENSION(:), INTENT(IN) :: x REAL(C_DOUBLE), DIMENSION(:), INTENT(IN) :: y REAL(C_DOUBLE), DIMENSION(:), INTENT(IN) :: z DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: lapse DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_x DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_y DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: shift_z DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xx DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_xz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_yy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_yz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: g_zz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: baryon_density DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: energy_density DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: specific_energy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: pressure DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_x DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_y DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: u_euler_z END SUBROUTINE interpolate_fuka_id_particles MODULE SUBROUTINE read_fuka_id_mass_b( this, x, y, z, & g, & baryon_density, & gamma_euler ) !! Stores the hydro |id| in the arrays needed to compute the baryon mass !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this DOUBLE PRECISION, INTENT(IN) :: x DOUBLE PRECISION, INTENT(IN) :: y DOUBLE PRECISION, INTENT(IN) :: z DOUBLE PRECISION, DIMENSION(6), INTENT(OUT):: g DOUBLE PRECISION, INTENT(OUT):: baryon_density DOUBLE PRECISION, INTENT(OUT):: gamma_euler END SUBROUTINE read_fuka_id_mass_b MODULE SUBROUTINE interpolate_fuka_id_mass_b( this, x, y, z, & g, & baryon_density, & gamma_euler ) !! Stores the hydro |id| in the arrays needed to compute the baryon mass !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this DOUBLE PRECISION, INTENT(IN) :: x DOUBLE PRECISION, INTENT(IN) :: y DOUBLE PRECISION, INTENT(IN) :: z DOUBLE PRECISION, DIMENSION(6), INTENT(OUT):: g DOUBLE PRECISION, INTENT(OUT):: baryon_density DOUBLE PRECISION, INTENT(OUT):: gamma_euler END SUBROUTINE interpolate_fuka_id_mass_b MODULE SUBROUTINE read_fuka_id_k( this, n, x, y, z,& k_xx, k_xy, k_xz, & k_yy, k_yz, k_zz ) !! Stores the components of the extrinsic curvature in arrays !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(INOUT):: this INTEGER, INTENT(IN) :: n DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: x DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: y DOUBLE PRECISION, DIMENSION(:), INTENT(IN) :: z DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_xx DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_xy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_xz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_yy DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_yz DOUBLE PRECISION, DIMENSION(:), INTENT(INOUT):: k_zz END SUBROUTINE read_fuka_id_k ! !-- FUNCTIONS ! MODULE FUNCTION read_fuka_mass_density( this, x, y, z ) RESULT( res ) !! Returns the |fuka| baryon mass density at a point \((x,y,z)\) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: z !> Baryon mass density at \((x,y,z)\) DOUBLE PRECISION:: res END FUNCTION read_fuka_mass_density MODULE FUNCTION interpolate_fuka_mass_density( this, x, y, z ) RESULT( res ) !! Returns the |fuka| baryon mass density at a point \((x,y,z)\) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: z !> Baryon mass density at \((x,y,z)\) DOUBLE PRECISION:: res END FUNCTION interpolate_fuka_mass_density MODULE FUNCTION read_fuka_pressure( this, x, y, z ) RESULT( res ) !! Returns the |fuka| pressure at a point \((x,y,z)\) !> [[bnslorene]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: z !> Pressure at \((x,y,z)\) DOUBLE PRECISION:: res END FUNCTION read_fuka_pressure MODULE FUNCTION interpolate_fuka_pressure( this, x, y, z ) RESULT( res ) !! Returns the |fuka| pressure at a point \((x,y,z)\) !> [[bnslorene]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: z !> Pressure at \((x,y,z)\) DOUBLE PRECISION:: res END FUNCTION interpolate_fuka_pressure MODULE FUNCTION read_fuka_spatial_metric( this, x, y, z ) RESULT( res ) !# Returns the |fuka| conformally flat spatial metric component ! \(g_{xx}=g_{yy}=g_{zz}\) at a point \((x,y,z)\) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE:: z !> \(g_{xx}=g_{yy}=g_{zz}\) at \((x,y,z)\) REAL(C_DOUBLE):: res END FUNCTION read_fuka_spatial_metric MODULE FUNCTION interpolate_fuka_spatial_metric( this, x, y, z ) RESULT( res ) !# Returns the |fuka| conformally flat spatial metric component ! \(g_{xx}=g_{yy}=g_{zz}\) at a point \((x,y,z)\) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE:: z !> \(g_{xx}=g_{yy}=g_{zz}\) at \((x,y,z)\) REAL(C_DOUBLE):: res END FUNCTION interpolate_fuka_spatial_metric MODULE FUNCTION is_hydro_positive( this, x, y, z ) RESULT( res ) !# Returns 1 if the energy density or the specific energy or the pressure ! are negative, 0 otherwise !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: z !& `.TRUE.` if the energy density or the specific energy or the pressure ! are negative, `.FALSE.` otherwise LOGICAL:: res END FUNCTION is_hydro_positive MODULE FUNCTION is_hydro_positive_interpolation( this, x, y, z ) & RESULT( res ) !# Returns 1 if the energy density or the specific energy or the pressure ! are negative, 0 otherwise !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> \(x\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: x !> \(y\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: y !> \(z\) coordinate of the desired point DOUBLE PRECISION, INTENT(IN), VALUE:: z !& `.TRUE.` if the energy density or the specific energy or the pressure ! are negative, `.FALSE.` otherwise LOGICAL:: res END FUNCTION is_hydro_positive_interpolation MODULE FUNCTION get_field_array( this, field ) RESULT( field_array ) !! Returns the [[bnsfuka]] member arrays named field !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> Name of the desired [[bnsfuka]] member array CHARACTER(LEN=:), INTENT(IN), ALLOCATABLE:: field !> Desired [[bnsfuka]] member array DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE:: field_array END FUNCTION get_field_array MODULE FUNCTION get_field_value( this, field, n ) RESULT( field_value ) !! Returns the component n of the [[bnsfuka]] member arrays named field !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN) :: this !> Name of the desired [[bnsfuka]] member array CHARACTER(LEN=:), INTENT(IN), ALLOCATABLE:: field !> Component of the desired [[bnsfuka]] member array INTEGER, INTENT(IN) :: n !> Component n of the desired [[bnsfuka]] member array DOUBLE PRECISION :: field_value END FUNCTION get_field_value MODULE FUNCTION get_bns_identifier( this ) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN):: this ! Result DOUBLE PRECISION:: get_bns_identifier END FUNCTION get_bns_identifier MODULE FUNCTION get_eos1_fukaid( this ) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN):: this ! Result INTEGER:: get_eos1_fukaid END FUNCTION get_eos1_fukaid MODULE FUNCTION get_eos2_fukaid( this ) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN):: this ! Result INTEGER:: get_eos2_fukaid END FUNCTION get_eos2_fukaid MODULE SUBROUTINE get_eos_parameters( this, i_matter, eos_params ) !> [[bnsfuka]] object which this PROCEDURE is a member of CLASS(bnsfuka), INTENT(IN):: this INTEGER, INTENT(IN):: i_matter !! Index of the matter object whose parameter is to return DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE, INTENT(OUT):: eos_params !# Array containing the parameters of the |eos| for the `i_matter`-th ! matter object END SUBROUTINE get_eos_parameters MODULE SUBROUTINE finalize & ( npart, pos, nlrf, u, pr, vel_u, theta, nstar, nu ) !# Post-process the |sph| |id|; for example, correct for the residual ! ADM linear momentum. !IMPORT:: idbase !CLASS(idbase), INTENT(IN) :: this INTEGER, INTENT(IN) :: npart !! Particle number DOUBLE PRECISION, DIMENSION(3,npart), INTENT(INOUT):: pos !! Particle positions DOUBLE PRECISION, DIMENSION(npart), INTENT(INOUT):: nlrf !! Baryon density in the local rest frame on the particles DOUBLE PRECISION, DIMENSION(npart), INTENT(INOUT):: u !! Specific internal energy on the particles DOUBLE PRECISION, DIMENSION(npart), INTENT(INOUT):: pr !! Pressure on the particles DOUBLE PRECISION, DIMENSION(3,npart), INTENT(INOUT):: vel_u !! Spatial velocity in the computing frame on the particles DOUBLE PRECISION, DIMENSION(npart), INTENT(INOUT):: theta !! Generalized Lorentz factor on the particles DOUBLE PRECISION, DIMENSION(npart), INTENT(INOUT):: nstar !! Proper baryon density in the local rest frame on the particles DOUBLE PRECISION, DIMENSION(npart), INTENT(INOUT):: nu !! Baryon number per particle END SUBROUTINE finalize MODULE RECURSIVE SUBROUTINE initialize_id_bnsfuka( this, flag, switch ) !# Initialize the |fuka| |bns| |id|. ! ! - If `flag`= [[utility:flag$sph]], set up the lattices around the ! stars for the |bns| produced with |fuka|. ! - If `flag`= [[utility:flag$tpo]], allocate memory for the hydro ! grid functions. ! - If `flag` > 0, assign its value to [[bnsfuka:l_curr]]. ! - If [[utility:flag$tpo]] < `flag` < 0, assign its value to ! [[bnsfuka:tpo_curr]]. CLASS(bnsfuka), INTENT(INOUT) :: this INTEGER, INTENT(IN) :: flag !! Identifies what kind of initialization has to be done LOGICAL, INTENT(IN), OPTIONAL:: switch !! If `.TRUE.`, switch to a different initialization END SUBROUTINE initialize_id_bnsfuka !MODULE FUNCTION get_bns_ptr( this ) ! ! ! Argument ! CLASS(bnsfuka), INTENT(IN):: this ! ! Result ! TYPE(C_PTR):: get_bns_ptr ! !END FUNCTION get_bns_ptr END INTERFACE !------------------------------------------------------------------! !-- PRIVATE interfaces to the methods of |fuka|'s class |binns| --! !------------------------------------------------------------------! PRIVATE:: construct_bns_fuka, get_fuka_id, get_fuka_id_spacetime, & get_fuka_id_particles, get_fuka_id_mass_b, & get_fuka_id_hydro, get_fuka_id_k, get_fuka_mass_density, & get_fuka_pressure, get_fuka_spatial_metric, & positive_hydro, get_fuka_id_params, destruct_bns_fuka INTERFACE FUNCTION construct_bns_fuka( fuka_file ) RESULT( optr ) & BIND(C, NAME= "construct_bns_fuka") !*********************************************** ! !# Interface to the |fuka| method of class ! |binns| with the same name, that constructs ! the |fuka| |binns| object ! ! FT ! !*********************************************** IMPORT :: C_PTR, C_CHAR IMPLICIT NONE CHARACTER(KIND= C_CHAR), DIMENSION(*), INTENT(IN) :: fuka_file !# C string of the name of the |fuka| binary file storing the spectral ! |bns| |id| TYPE(C_PTR) :: optr !! C pointer pointing to the constructed |fuka| BNS_export object END FUNCTION construct_bns_fuka SUBROUTINE get_fuka_id( optr, & x, y, z, & lapse, & shift_x, shift_y, shift_z, & psi4, & k_xx, k_xy, k_xz, & k_yy, k_yz, k_zz, & mass_density, & specific_energy, & pressure, & v_euler_x, v_euler_y, v_euler_z ) & BIND(C, NAME= "get_fuka_id") !************************************************* ! !# Interface to the |fuka| method of class ! |binns| with the same name, that reads the full ! |fuka| |id| at the specified point. ! That is, read_fukas the metric fields, the ! components of the extrinsic curvature [c/km], ! and the hydro fields. ! ! - shift vector [c] ! - baryon mass density [kg m^{-3}] ! - energy density [kg c^2 m^{-3}] ! - pressure [kg c^2 m^{-3}] ! - specific internal energy [c^2] ! - fluid 3-velocity with respect to the ! Eulerian observer [c] ! ! FT ! !************************************************* IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z REAL(C_DOUBLE), INTENT(OUT) :: lapse REAL(C_DOUBLE), INTENT(OUT) :: shift_x REAL(C_DOUBLE), INTENT(OUT) :: shift_y REAL(C_DOUBLE), INTENT(OUT) :: shift_z REAL(C_DOUBLE), INTENT(OUT) :: psi4 REAL(C_DOUBLE), INTENT(OUT) :: k_xx REAL(C_DOUBLE), INTENT(OUT) :: k_xy REAL(C_DOUBLE), INTENT(OUT) :: k_xz REAL(C_DOUBLE), INTENT(OUT) :: k_yy REAL(C_DOUBLE), INTENT(OUT) :: k_yz REAL(C_DOUBLE), INTENT(OUT) :: k_zz REAL(C_DOUBLE), INTENT(OUT) :: mass_density REAL(C_DOUBLE), INTENT(OUT) :: specific_energy REAL(C_DOUBLE), INTENT(OUT) :: pressure REAL(C_DOUBLE), INTENT(OUT) :: v_euler_x REAL(C_DOUBLE), INTENT(OUT) :: v_euler_y REAL(C_DOUBLE), INTENT(OUT) :: v_euler_z END SUBROUTINE get_fuka_id SUBROUTINE get_fuka_id_spacetime( optr, & x, y, z, & lapse, & shift_x, shift_y, shift_z, & psi4, & k_xx, k_xy, k_xz, & k_yy, k_yz, k_zz ) & BIND(C, NAME= "get_fuka_id_spacetime") !************************************************* ! !# Interface to the |fuka| method of class ! |binns| with the same name, that reads the ! metric fields and the components ! of the extrinsic curvature [c/km] from |fuka|, ! at the specified point ! ! FT ! !************************************************* IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z REAL(C_DOUBLE), INTENT(OUT) :: lapse REAL(C_DOUBLE), INTENT(OUT) :: shift_x REAL(C_DOUBLE), INTENT(OUT) :: shift_y REAL(C_DOUBLE), INTENT(OUT) :: shift_z REAL(C_DOUBLE), INTENT(OUT) :: psi4 REAL(C_DOUBLE), INTENT(OUT) :: k_xx REAL(C_DOUBLE), INTENT(OUT) :: k_xy REAL(C_DOUBLE), INTENT(OUT) :: k_xz REAL(C_DOUBLE), INTENT(OUT) :: k_yy REAL(C_DOUBLE), INTENT(OUT) :: k_yz REAL(C_DOUBLE), INTENT(OUT) :: k_zz END SUBROUTINE get_fuka_id_spacetime SUBROUTINE get_fuka_id_particles( optr, & x, y, z, & lapse, & shift_x, shift_y, shift_z, & psi4, & mass_density, & specific_energy, & pressure, & v_euler_x, v_euler_y, v_euler_z ) & BIND(C, NAME= "get_fuka_id_particles") !********************************************** ! !# Interface to the |fuka| method of class ! |binns| with the same name, that reads the ! hydro fields and the metric fields * ! from |fuka|, at the specified point ! ! - shift vector [c] ! - baryon mass density [kg m^{-3}] ! - energy density [kg c^2 m^{-3}] ! - pressure [kg c^2 m^{-3}] ! - specific internal energy [c^2] ! - fluid 3-velocity with respect to the ! Eulerian observer [c] ! ! FT ! !********************************************** IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z REAL(C_DOUBLE), INTENT(OUT) :: lapse REAL(C_DOUBLE), INTENT(OUT) :: shift_x REAL(C_DOUBLE), INTENT(OUT) :: shift_y REAL(C_DOUBLE), INTENT(OUT) :: shift_z REAL(C_DOUBLE), INTENT(OUT) :: psi4 REAL(C_DOUBLE), INTENT(OUT) :: mass_density REAL(C_DOUBLE), INTENT(OUT) :: specific_energy REAL(C_DOUBLE), INTENT(OUT) :: pressure REAL(C_DOUBLE), INTENT(OUT) :: v_euler_x REAL(C_DOUBLE), INTENT(OUT) :: v_euler_y REAL(C_DOUBLE), INTENT(OUT) :: v_euler_z END SUBROUTINE get_fuka_id_particles SUBROUTINE get_fuka_id_mass_b( optr, & x, y, z, & psi4, & mass_density, & gamma_euler ) & BIND(C, NAME= "get_fuka_id_massb") !************************************************ ! !# Interface to the |fuka| method of class ! |binns| with the same name, that reads the ! hydro fields and the metric fields ! from |fuka|, at the specified point, ! needed to compute the baryon mass. ! ! - shift vector [c] ! - baryon mass density [kg m^{-3}] ! - fluid 3-velocity with respect to the ! Eulerian observer [c] ! ! FT ! !************************************************ IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z !> \(g_{xx}=g_{yy}=g_{zz}\) at \(x,y,z\) REAL(C_DOUBLE), INTENT(OUT) :: psi4 !> Baryon mass density at \(x,y,z\) REAL(C_DOUBLE), INTENT(OUT) :: mass_density !& Relative Lorentz factor between the 4-velocity of the fluid ! wrt the Eulerian observer and the 4-velocity of the Eulerian observer ! at \(x,y,z\) REAL(C_DOUBLE), INTENT(OUT) :: gamma_euler END SUBROUTINE get_fuka_id_mass_b SUBROUTINE get_fuka_id_hydro( optr, & x, y, z, & mass_density, & specific_energy, & pressure, & v_euler_x, v_euler_y, v_euler_z ) & BIND(C, NAME= "get_fuka_id_hydro") !*********************************************** ! !# Interface to the |fuka| method of class ! |binns| with the same name, that reads the ! hydro fields from |fuka|, at the ! specified point ! ! - baryon mass density [kg m^{-3}] ! - energy density [kg c^2 m^{-3}] ! - pressure [kg c^2 m^{-3}] ! - specific internal energy [c^2] ! - fluid 3-velocity with respect to the ! Eulerian observer [c] ! ! FT ! !*********************************************** IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z REAL(C_DOUBLE), INTENT(OUT) :: mass_density REAL(C_DOUBLE), INTENT(OUT) :: specific_energy REAL(C_DOUBLE), INTENT(OUT) :: pressure REAL(C_DOUBLE), INTENT(OUT) :: v_euler_x REAL(C_DOUBLE), INTENT(OUT) :: v_euler_y REAL(C_DOUBLE), INTENT(OUT) :: v_euler_z END SUBROUTINE get_fuka_id_hydro SUBROUTINE get_fuka_id_k( optr, & x, y, z, & k_xx, k_xy, k_xz, & k_yy, k_yz, k_zz ) & BIND(C, NAME= "get_fuka_id_k") !*********************************************** ! !# Interface to the |fuka| method of class ! |binns| with the same name, that reads the ! components of the extrinsic ! curvature [c/km] from |fuka|, at the ! specified point ! ! FT ! !*********************************************** IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z REAL(C_DOUBLE), INTENT(OUT) :: k_xx REAL(C_DOUBLE), INTENT(OUT) :: k_xy REAL(C_DOUBLE), INTENT(OUT) :: k_xz REAL(C_DOUBLE), INTENT(OUT) :: k_yy REAL(C_DOUBLE), INTENT(OUT) :: k_yz REAL(C_DOUBLE), INTENT(OUT) :: k_zz END SUBROUTINE get_fuka_id_k FUNCTION get_fuka_mass_density( optr, x, y, z ) RESULT( res ) & BIND(C, NAME= "get_fuka_mass_density") !******************************************** ! !# ! ! FT ! !******************************************** IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z !& Baryon mass density \([\mathrm{kg}\, \mathrm{m}^{-3}]\) at the desired ! point \((x,y,z)\) REAL(C_DOUBLE) :: res END FUNCTION get_fuka_mass_density FUNCTION get_fuka_pressure( optr, x, y, z ) RESULT( res ) & BIND(C, NAME= "get_fuka_pressure") !******************************************** ! !# Interface to the |fuka| method of class ! bns_export with the same name, that returns ! the pressure \([\mathrm{kg}\, ! c^2 \mathrm{m}^{-3}]\) from |lorene|, ! at the specified point ! ! FT 27.05.2022 ! !******************************************** IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |lorene| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z !& Pressure \([\mathrm{kg}\,c^2\, \mathrm{m}^{-3}]\) at the desired ! point \((x,y,z)\) REAL(C_DOUBLE) :: res END FUNCTION get_fuka_pressure FUNCTION get_fuka_spatial_metric( optr, x, y, z ) RESULT( res ) & BIND(C, NAME= "get_fuka_g") !************************************************ ! !# ! ! FT ! !************************************************ IMPORT :: C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |fuka| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z !& Spatial metric component ! \(g_{xx}=g_{yy}=g_{zz}\) at the point \((x,y,z)\) REAL(C_DOUBLE) :: res END FUNCTION get_fuka_spatial_metric FUNCTION positive_hydro( optr, x, y, z ) RESULT( res ) & BIND(C, NAME= "is_fuka_hydro_positive") !************************************************ ! !# ! ! FT ! !************************************************ IMPORT :: C_INT, C_DOUBLE, C_PTR IMPLICIT NONE !> C pointer pointing to a |lorene| |binns| object TYPE(C_PTR), INTENT(IN), VALUE :: optr !> \(x\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: x !> \(y\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: y !> \(z\) coordinate of the desired point REAL(C_DOUBLE), INTENT(IN), VALUE :: z !& 1 if the energy density or the specific energy or the pressure ! are positve, 0 otherwise INTEGER(C_INT) :: res END FUNCTION positive_hydro SUBROUTINE get_fuka_id_params( optr, & angular_vel, & distance, & mass1, & mass2, & massg1, & massg2, & radius1_min, & radius1_max, & radius2_min, & radius2_max, & adm_mass, & komar_mass, & adm_linear_momentum_x, & adm_linear_momentum_y, & adm_linear_momentum_z, & adm_angular_momentum_z, & COMx, & COMy, & COMz, & area_radius1, & center1_x, & area_radius2, & center2_x, & ent_center1, & rho_center1, & energy_density_center1, & ent_center2, & rho_center2, & energy_density_center2, & eos_type_1, & eos_file_1, & eos_type_2, & eos_file_2, & gamma, & kappa, & n_poly, & gamma0, & gamma1, & gamma2, & gamma3, & kappa0, & kappa1, & kappa2, & kappa3, & logP1, & logRho0, & logRho1, & logRho2 ) & BIND(C, NAME= "get_fuka_id_params") !********************************************** ! !# ! ! FT ! !********************************************** IMPORT :: C_INT, C_DOUBLE, C_PTR, C_CHAR IMPLICIT NONE TYPE(C_PTR), INTENT(IN), VALUE :: optr !! C pointer pointing to a |fuka| bns_export object REAL(C_DOUBLE), INTENT(OUT) :: angular_vel REAL(C_DOUBLE), INTENT(OUT) :: distance REAL(C_DOUBLE), INTENT(OUT) :: mass1 REAL(C_DOUBLE), INTENT(OUT) :: mass2 REAL(C_DOUBLE), INTENT(OUT) :: massg1 REAL(C_DOUBLE), INTENT(OUT) :: massg2 REAL(C_DOUBLE), INTENT(OUT) :: radius1_min REAL(C_DOUBLE), INTENT(OUT) :: radius1_max REAL(C_DOUBLE), INTENT(OUT) :: radius2_min REAL(C_DOUBLE), INTENT(OUT) :: radius2_max REAL(C_DOUBLE), INTENT(OUT) :: adm_mass REAL(C_DOUBLE), INTENT(OUT) :: komar_mass REAL(C_DOUBLE), INTENT(OUT) :: adm_linear_momentum_x REAL(C_DOUBLE), INTENT(OUT) :: adm_linear_momentum_y REAL(C_DOUBLE), INTENT(OUT) :: adm_linear_momentum_z REAL(C_DOUBLE), INTENT(OUT) :: adm_angular_momentum_z REAL(C_DOUBLE), INTENT(OUT) :: COMx REAL(C_DOUBLE), INTENT(OUT) :: COMy REAL(C_DOUBLE), INTENT(OUT) :: COMz REAL(C_DOUBLE), INTENT(OUT) :: area_radius1 REAL(C_DOUBLE), INTENT(OUT) :: center1_x REAL(C_DOUBLE), INTENT(OUT) :: area_radius2 REAL(C_DOUBLE), INTENT(OUT) :: center2_x REAL(C_DOUBLE), INTENT(OUT) :: ent_center1 REAL(C_DOUBLE), INTENT(OUT) :: rho_center1 REAL(C_DOUBLE), INTENT(OUT) :: energy_density_center1 REAL(C_DOUBLE), INTENT(OUT) :: ent_center2 REAL(C_DOUBLE), INTENT(OUT) :: rho_center2 REAL(C_DOUBLE), INTENT(OUT) :: energy_density_center2 CHARACTER(KIND=C_CHAR), DIMENSION(100), INTENT(OUT):: eos_type_1 CHARACTER(KIND=C_CHAR), DIMENSION(100), INTENT(OUT):: eos_file_1 CHARACTER(KIND=C_CHAR), DIMENSION(100), INTENT(OUT):: eos_type_2 CHARACTER(KIND=C_CHAR), DIMENSION(100), INTENT(OUT):: eos_file_2 REAL(C_DOUBLE), INTENT(OUT) :: gamma REAL(C_DOUBLE), INTENT(OUT) :: kappa INTEGER(C_INT), INTENT(OUT) :: n_poly REAL(C_DOUBLE), INTENT(OUT) :: gamma0 REAL(C_DOUBLE), INTENT(OUT) :: gamma1 REAL(C_DOUBLE), INTENT(OUT) :: gamma2 REAL(C_DOUBLE), INTENT(OUT) :: gamma3 REAL(C_DOUBLE), INTENT(OUT) :: kappa0 REAL(C_DOUBLE), INTENT(OUT) :: kappa1 REAL(C_DOUBLE), INTENT(OUT) :: kappa2 REAL(C_DOUBLE), INTENT(OUT) :: kappa3 REAL(C_DOUBLE), INTENT(OUT) :: logP1 REAL(C_DOUBLE), INTENT(OUT) :: logRho0 REAL(C_DOUBLE), INTENT(OUT) :: logRho1 REAL(C_DOUBLE), INTENT(OUT) :: logRho2 END SUBROUTINE get_fuka_id_params SUBROUTINE destruct_bns_fuka( optr ) & BIND(C, NAME= "destruct_bns_fuka") !********************************************** ! !# Interface to the |fuka| method of class ! |binns| with the same name, that destructs ! the |fuka| |binns| object ! ! FT ! !********************************************** IMPORT :: C_PTR IMPLICIT NONE !> C pointer pointing to the |fuka| |binns| object to destruct TYPE(C_PTR), INTENT(IN), VALUE :: optr END SUBROUTINE destruct_bns_fuka END INTERFACE CONTAINS SUBROUTINE allocate_lattice_memory( this, nx, ny, nz ) IMPLICIT NONE CLASS(id_lattice), INTENT(INOUT):: this INTEGER, INTENT(IN):: nx, ny, nz IF(.NOT.ALLOCATED( this% coords ))THEN ALLOCATE( this% coords( nx, ny, nz, 3 ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array coords. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% lapse ))THEN ALLOCATE( this% lapse( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array lapse. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% shift_x ))THEN ALLOCATE( this% shift_x( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array shift_x. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% shift_y ))THEN ALLOCATE( this% shift_y( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array shift_y. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% shift_z ))THEN ALLOCATE( this% shift_z( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array shift_z. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% g_xx ))THEN ALLOCATE( this% g_xx( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array g_xx. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% g_xy ))THEN ALLOCATE( this% g_xy( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array g_xy. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% g_xz ))THEN ALLOCATE( this% g_xz( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array g_xz. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% g_yy ))THEN ALLOCATE( this% g_yy( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array g_yy. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% g_yz ))THEN ALLOCATE( this% g_yz( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array g_yz. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% g_zz ))THEN ALLOCATE( this% g_zz( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array g_zz. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% k_xx ))THEN ALLOCATE( this% k_xx( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array k_xx. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% k_xy ))THEN ALLOCATE( this% k_xy( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array k_xy. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% k_xz ))THEN ALLOCATE( this% k_xz( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array k_xz. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% k_yy ))THEN ALLOCATE( this% k_yy( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array k_yy. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% k_yz ))THEN ALLOCATE( this% k_yz( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array k_yz. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% k_zz ))THEN ALLOCATE( this% k_zz( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array k_zz. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% mass_density ))THEN ALLOCATE( this% mass_density( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array mass_density. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% specific_energy ))THEN ALLOCATE( this% specific_energy( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array specific_energy. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% pressure ))THEN ALLOCATE( this% pressure( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array pressure. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% v_eul_x ))THEN ALLOCATE( this% v_eul_x( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array v_eul_x. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% v_eul_y ))THEN ALLOCATE( this% v_eul_y( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array v_eul_y. ", & "The error message is", err_msg STOP ENDIF ENDIF IF(.NOT.ALLOCATED( this% v_eul_z ))THEN ALLOCATE( this% v_eul_z( nx, ny, nz ), STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...allocation error for array v_eul_z. ", & "The error message is", err_msg STOP ENDIF ENDIF END SUBROUTINE allocate_lattice_memory SUBROUTINE deallocate_lattice_memory( this ) IMPLICIT NONE CLASS(id_lattice), INTENT(INOUT):: this IF(ALLOCATED( this% lapse ))THEN DEALLOCATE( this% lapse, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array lapse ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% shift_x ))THEN DEALLOCATE( this% shift_x, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array shift_x ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% shift_y ))THEN DEALLOCATE( this% shift_y, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array shift_y ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% shift_z ))THEN DEALLOCATE( this% shift_z, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array shift_z ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% g_xx ))THEN DEALLOCATE( this% g_xx, STAT= ios, ERRMSG = err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array g_xx ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% g_xy ))THEN DEALLOCATE( this% g_xy, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array g_xy ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% g_xz ))THEN DEALLOCATE( this% g_xz, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array g_xz ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% g_yy ))THEN DEALLOCATE( this% g_yy, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array g_yy ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% g_yz ))THEN DEALLOCATE( this% g_yz, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array g_yz ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% g_zz ))THEN DEALLOCATE( this% g_zz, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array g_zz ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% k_xx ))THEN DEALLOCATE( this% k_xx, STAT= ios, ERRMSG = err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array k_xx ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% k_xy ))THEN DEALLOCATE( this% k_xy, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array k_xy ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% k_xz ))THEN DEALLOCATE( this% k_xz, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array k_xz ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% k_yy ))THEN DEALLOCATE( this% k_yy, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array k_yy ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% k_yz ))THEN DEALLOCATE( this% k_yz, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array k_yz ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% k_zz ))THEN DEALLOCATE( this% k_zz, STAT= ios, ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array k_zz ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% mass_density ))THEN DEALLOCATE( this% mass_density, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array mass_density ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% specific_energy ))THEN DEALLOCATE( this% specific_energy, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array specific_energy ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% v_eul_x ))THEN DEALLOCATE( this% v_eul_x, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array v_eul_x ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% v_eul_y ))THEN DEALLOCATE( this% v_eul_y, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array v_eul_y ", & "The error message is", err_msg STOP ENDIF ENDIF IF(ALLOCATED( this% v_eul_z ))THEN DEALLOCATE( this% v_eul_z, STAT= ios, & ERRMSG= err_msg ) IF( ios > 0 )THEN PRINT *, "...deallocation error for array v_eul_z ", & "The error message is", err_msg STOP ENDIF ENDIF END SUBROUTINE deallocate_lattice_memory END MODULE bns_fuka