hydro_trajectory.f90
Go to the documentation of this file.
1 !> @file hydro_trajectory.f90
2 !!
3 !! The error file code for this file is ***W25***.
4 !! This file contains the module \ref hydro_trajectory
5 
6 !> Contains arrays representing thermodynamic conditions from hydro trajectory file
7 !!
8 !! @author O. Korobkin
9 !!
10 !! \b Edited:
11 !! - MR 26.12.20 - implement init_index
12 !! .
13 #include "macros.h"
15  implicit none
16 
17  integer :: zsteps !< number of timesteps in the hydro trajectory
18  integer :: init_index !< Initial index in the trajectory
19  real(r_kind),dimension(:),allocatable,public :: ztime !< time information from trajectory
20  real(r_kind),dimension(:),allocatable,public :: ztemp !< temperature information from trajectory
21  real(r_kind),dimension(:),allocatable,public :: zdens !< density information from trajectory
22  real(r_kind),dimension(:),allocatable,public :: zye !< electron fraction information from trajectory
23  real(r_kind),dimension(:),allocatable,public :: zrad !< radii from trajectory
24  real(r_kind),dimension(:),allocatable,public :: zvel !< velocities from trajectory
25 
26 end module hydro_trajectory
hydro_trajectory::zvel
real(r_kind), dimension(:), allocatable, public zvel
velocities from trajectory
Definition: hydro_trajectory.f90:24
hydro_trajectory::ztime
real(r_kind), dimension(:), allocatable, public ztime
time information from trajectory
Definition: hydro_trajectory.f90:19
hydro_trajectory::zrad
real(r_kind), dimension(:), allocatable, public zrad
radii from trajectory
Definition: hydro_trajectory.f90:23
hydro_trajectory::init_index
integer init_index
Initial index in the trajectory.
Definition: hydro_trajectory.f90:18
r_kind
#define r_kind
Definition: macros.h:46
hydro_trajectory::zsteps
integer zsteps
number of timesteps in the hydro trajectory
Definition: hydro_trajectory.f90:17
hydro_trajectory
Contains arrays representing thermodynamic conditions from hydro trajectory file.
Definition: hydro_trajectory.f90:14
hydro_trajectory::zdens
real(r_kind), dimension(:), allocatable, public zdens
density information from trajectory
Definition: hydro_trajectory.f90:21
hydro_trajectory::zye
real(r_kind), dimension(:), allocatable, public zye
electron fraction information from trajectory
Definition: hydro_trajectory.f90:22
hydro_trajectory::ztemp
real(r_kind), dimension(:), allocatable, public ztemp
temperature information from trajectory
Definition: hydro_trajectory.f90:20