thorn_name
stringclasses
227 values
url
stringclasses
26 values
configuration
stringclasses
137 values
interface
stringclasses
225 values
param
stringclasses
220 values
schedule
stringclasses
223 values
src_filename
stringlengths
4
83
src_code
stringlengths
0
579k
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
Con2PrimM_fortran_interfaces.F90
#include "cctk.h" module Con2PrimM_fortran_interfaces implicit none CCTK_INT, parameter :: izero = 0 integer, parameter :: ik = kind(izero) interface subroutine GRHydro_Con2PrimM_ptold( handle, & local_gam, dens, & sx, sy, sz, & ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_PPMM.F90
/*@@ @file GRHydro_PPMM.F90 @date Sun Feb 10 16:53:29 2002 @author Joshua Faber, Scott Noble, Bruno Mundim, Ian Hawke, Toni Font, Luca Baiotti, Frank Loeffler @desc Routines to do PPM reconstruction. @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameter...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_TrivialReconstruct.cc
#include <cmath> #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "GRHydro_TrivialReconstruct.hh" #include "GRHydro_Reconstruct_drv_impl.hh" using namespace std; /** Trivial first-order reconstruction operator. */ template <int dir> void GRHydro_Triv...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_HLLEM.F90
/*@@ @file GRHydro_HLLEPolyM.F90 @date Aug 30, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Ian Hawke, Pedro Montero, Toni Font @desc The HLLE solver. Called from the wrapper function, so works in all directions. @enddesc @@*/ #include "cctk.h" #include "cctk_Paramete...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_HLLE.cc
#include <cmath> #include <vector> #include <iostream> #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "SpaceMask.h" #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) #define SQR(x) ((x)*(x)) // build up multiple element MIN/MAX f...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_EOS.c
/*@@ @file GRHydro_EOS.c @date Wed Feb 6 18:25:33 2002 @author @desc Sets the EOS handle number for use by all the GRHydro routines @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include <stdio.h> #include <stdlib.h> /*@@ @routine...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Prim2ConAM.F90
/*@@ @file primitive2conservative @date Aug 31, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Pedro Montero, Ian Hawke @desc Primitive to conservative routine @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Functions.h"...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Tmunu.F90
/*@@ @file GRHydro_Tmunu.F90 @date Thu Apr 16 19:38:40 2009 @author Ian Hawke @histpry Apr. 2009: Luca Baiotti copied and adapted for the Tmunu-thorn mechanism the original include file @desc The calculation of the stress energy tensor. The version used here was worked out by...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Reconstruct.cc
/*@@ @file GRHydro_Reconstruct.cc @date Thu Dec 2013 @author Christian Reisswig @desc Wrapper routine to perform the reconstruction.using tmeplate metaprogramming @enddesc @@*/ #include <iostream> #include <cassert> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Paramet...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Prim2Con.F90
/*@@ @file primitive2conservative @date Thu Jan 11 11:03:32 2002 @author Pedro Montero, Ian Hawke @desc Primitive to conservative routine @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Functions.h" #include "GRHydro_Macros.h"...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Eigenproblem_Marquina.F90
/*@@ @file GRHydro_Eigenproblem_Marquina.F90 @date Wed Feb 13 12:30 2002 @author Pedro Montero, Toni Font, Joachim Frieben @desc Computes the eigenvectors (p) and eigenvalues (lam) for Marquina flux formula for the input primitive state. Note that this is the MODIFIED Marquina formula as given by M...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_TmunuM.F90
/*@@ @file GRHydro_Tmunu.F90 @date Aug 30, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Ian Hawke @histpry Apr. 2009: Luca Baiotti copied and adapted for the Tmunu-thorn mechanism the original include file @desc The calculation of the stress energy tensor. The versio...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Con2PrimAM.F90
/*@@ @file GRHydro_Con2PrimAM.F90 @date Sep 3, 2010 @author Scott Noble, Joshua Faber, Bruno Mundim, Tanja Bode @desc The routines for converting conservative to primitive variables. Vector-potential MHD. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_A...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_EoSChangeGamma.F90
/*@@ @file GRHydro_EOSResetHydro.F90 @date Sat Jan 26 01:36:57 2002 @author Ian Hawke @desc This routine will reset the specific internal energy using the polytropic EOS that will be used at evolution. This is wanted if the EoS changes between setting up the initial data and evolving @enddesc ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Reconstruct_drv_impl.hh
#ifndef _GRHYDRO_RECONSTRUCT_DRV_IMPL_H #define _GRHYDRO_RECONSTRUCT_DRV_IMPL_H #include <cmath> #include <vector> #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) #include "SpaceMask.h" #i...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Con2PrimM.F90
/*@@ @file GRHydro_Con2PrimM.F90 @date Sep 3, 2010 @author Scott Noble, Joshua Faber, Bruno Mundim @desc The routines for converting conservative to primitive variables. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Prim2ConM.F90
/*@@ @file primitive2conservative @date Aug 31, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Pedro Montero, Ian Hawke @desc Primitive to conservative routine @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Functions.h"...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Startup.F90
/*@@ @file GRHydro_Startup.F90 @date Sun Feb 10 00:02:52 2002 @author Ian Hawke @desc Startup banner. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Functions.h" #include "util_ErrorCodes.h" #include "util_Table.h" /*@@ @routine GRHydro_Startup ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_TrivialReconstruct.hh
#ifndef _GRHYDRO_TRIVIALRECONSTRUCT_HH #define _GRHYDRO_TRIVIALRECONSTRUCT_HH #include "cctk.h" /** Trivial first-order reconstruction operator. */ struct GRHydro_TrivialReconstruct1d { template <int dir> static inline void apply(const int nx, const CCTK_REAL* const restrict a, ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Reconstruct.F90
/*@@ @file GRHydro_Reconstruct.F90 @date Sat Jan 26 02:13:25 2002 @author Bruno Mundim, Josh Faber, Christian D. Ott @desc Wrapper routine to perform the reconstruction. @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Functions....
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Flux.F90
/*@@ @file GRHydro_Flux.F90 @date Sat Jan 26 01:36:57 2002 @author Pedro Montero, Ian Hawke @desc The routine to calculate the numerical flux function given a specific state @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" /*@@ @routine num_flux ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_UpdateMaskM.F90
/*@@ @file GRHydro_UpdateMaskM.F90 @date Sep 2, 2010 @author @desc Alter the update terms if inside the atmosphere or excision region @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "GRHydro_Macros.h" #in...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_TransformTensorBasis.c
#include <assert.h> #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #define SQR(x) ((x)*(x)) /* helper routine to let Fortran code test for the presence of Multipatch. * Required since Fortran cannot access grid scalars via pointers returned by CCTK_VarDataPtrI...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_ePPM.cc
#include <cmath> #include <algorithm> #include <vector> #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) #define MIN3(a,b,c) (MIN(a, MIN(b, c))) #define MIN4(a,b,c,d) (MIN(a, MIN(b, MIN(c, d)...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Loop.F90
/*@@ @file GRHydro_Loop.F90 @date Sat Jan 26 01:50:14 2002 @author @desc Routines controlling loop counters and direction offsets @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" /*@@ @routine GRHydroStartLo...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_PPMReconstruct_drv_opt.cc
#include <cmath> #include <algorithm> #include <vector> #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) #include "SpaceMask.h" #include "GRHydro_PPM_opt.h" #include "GRHydro_Reconstruct_drv_...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_EigenproblemM.F90
/*@@ @file GRHydro_EigenproblemM.F90 @date August 30, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Ian Hawke, Pedro Montero, Joachim Frieben @desc Computes the spectral decomposition of a given state. Implements the analytical scheme devised by J. M. Ibanez et al., "Godunov M...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Minima.cc
/*@@ @file GRHydro_Minima.cc @date Tue Aug 29 18:52:10 2006 @author @desc Sets up the scalars used for the atmosphere, after initial data. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" //#include "Carpet/Carpet/src/carpet.hh" #include...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Source.cc
/*@@ @file GRHydro_Source.cc @date Nov 29, 2013 @author Christian Reisswig, Joshua Faber, Scott Noble, Bruno Mundim, Ian Hawke @desc The geometric source terms for the matter evolution @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #includ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_UpdateMask.F90
/*@@ @file GRHydro_UpdateMask.F90 @date Wed Mar 13 14:18:38 2002 @author @desc Alter the update terms if inside the atmosphere or excision region @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "GRHydro_M...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_WENOScalars.F90
/*@@ @file GRHydro_WENOScalars.F90 @date Fri Jan 3 2013 @author Ian Hawke, Christian Reisswig @desc Module containing the coefficient array for WENO reconstruction. @enddesc @@*/ #include "cctk.h" module GRHydro_WENOScalars implicit none CCTK_REAL, allocatable, save :: wen...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_RiemannSolveAM.F90
/*@@ @file GRHydro_RiemannSolveAM.F90 @date Sep 1, 2010 @author @desc A wrapper routine to call the correct Riemann solver @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "GRHydro_Macros.h" /*@@ @rout...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_DivergenceClean.F90
/*@@ @file GRHydro_DivergenceClean.F90 @date Nov 24, 2010 @author @desc Routines controlling divergence cleaning @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" /*@@ @routine GRHydro_InitDivergenceClean ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_Con2PrimM_pt_EOSOmni.c.hopefullyfixed.c
/*********************************************************************************** Copyright 2006 Scott C. Noble, Charles F. Gammie, Jonathan C. McKinney, and Luca Del Zanna. PVS_GRMHD This file was derived from PVS_GRMHD. The authors of PVS_GRMHD include Sc...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_RoeAverage.F90
/*@@ @file GRHydro_RoeAverage.F90 @date Sat Jan 26 01:54:09 2002 @author @desc Calculates the Roe average of two states. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" /*@@ @routine roeaverage @date Sat Jan 26 01:54:46 2002...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
GRHydro_MP5Reconstruct.hh
#ifndef _GRHYDRO_MP5RECONSTRUCT_HH #define _GRHYDRO_MP5RECONSTRUCT_HH #include "cctk.h" using namespace std; /** MP5 reconstruction operator. */ template <bool do_MP5_adaptive_epsilon> struct GRHydro_MP5Reconstruct1d_cxx { template <int dir> static inline void apply(const int nx, const ...
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
util/Riemann1d-main.c
void CCTK_FNAME(Riemann1d)(void); int main(void) { CCTK_FNAME(Riemann1d)(); return 0; }
EinsteinEvolve/GRHydro
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn GRHydro # $Header$ REQUIRES EOS_Omni Boundary CartGrid3D SpaceMask OPTIONAL_IFACTIVE Carpet { } OPTIONAL EOS_Polytrope { }
# Interface definition for thorn GRHydro #################################################################### ### GRHydro needs to inherit the metric from Einstein. ### ### Other thorns will need to know what EOS we're using. They ### ### inherit to get the handle. ### #...
# Parameter definitions for thorn GRHydro # $Header$ shares:ADMBase USES int initial_shift "" { } USES KEYWORD metric_type "" { } EXTENDS KEYWORD shift_evolution_method "" { "Comoving" :: "Set the shift so the matter is approximately comoving" } ######################################### ### PARAMETRES SHARED ...
# Schedule definitions for thorn GRHydro # $Header$ ####################################################################### ### We leave the storage on all the time for the variables required ### ### by MoL. There is probably a better way of doing this. ### ###################################################...
util/Riemann1d.f90
!!$/*@@ !!$ @file Riemann1d.F90 !!$ @date Tue Apr 29 11:42:30 2003 !!$ @author Ian Hawke !!$ @desc !!$ An old 1d Riemann solver for ideal relativistic hydro. !!$ @enddesc !!$@@*/ subroutine Riemann1d implicit none integer :: mn, i, step, test real(kind=8) :: tol, pmin, pmax, dvel1, dvel2...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_P2C2P.F90
/*@@ @file GRHydro_P2C2P.F90 @date Sep 25, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Luca Baiotti @desc A test of the conservative <--> primitive variable exchange @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Func...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
make.configuration.defn
# Main make.code.defn file for thorn Hydra_Init_Data # $Header$
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_ShockTubeM.F90
/*@@ @file GRHydro_ShockTubeM.F90 @date Sep 23, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Ian Hawke @desc Initial data of the shock tube type - MHD version. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_Bondi.c
/*@@ @file GRHydro_Bondi.c @date Wed Jan 13 13:00:49 EST 2010 @author Scott C. Noble @desc Hydro initial data for the relativistic Bondi solution about a single Schwarzschild black hole. @enddesc @@*/ /****************************************************************************...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_Con2Prim.F90
/*@@ @file GRHydro_Con2Prim.F90 @date Sat Jan 26 02:49:32 2002 @author Luca Baiotti @desc A test of the conservative to primitive exchange. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" /*@@ @routine GRHydro_con2primtest @date ...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_Macros.h
#define SPATIAL_DETERMINANT(gxx_,gxy_,gxz_,gyy_,gyz_,gzz_) \ (-(gxz_)**2*(gyy_) + 2*(gxy_)*(gxz_)*(gyz_) - (gxx_)*(gyz_)**2 - (gxy_)**2*(gzz_) \ + (gxx_)*(gyy_)*(gzz_)) #define DOTP(gxx_,gxy_,gxz_,gyy_,gyz_,gzz_,x1_,y1_,z1_,x2_,y2_,z2_) \ ( (gxx_)*(x1_)*(x2_)+(gyy_)*(y1_)*(y2_)+(gzz_)*(z1_)*(z2_)+ \ (gxy_)*( ...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_P2C2PM_polytype.F90
/*@@ @file GRHydro_P2C2PM_polytype.F90 @date Sep 25, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Luca Baiotti @desc A test of the conservative <--> primitive variable exchange @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" /*@@ ...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
CheckParam.c
#include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" void GRHydro_InitData_CheckParameters(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS DECLARE_CCTK_PARAMETERS if (timelevels < 2) { CCTK_PARAMWARN("You have to set 'HydroBase::timelevels to at least 2"); } if(CCTK_Equals(Bvec_evolu...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_AlfvenWaveM.F90
/*@@ @file GRHydro_AlfvenWaveM.F90 @date Oct 10, 2011 @author Bruno Mundim, Joshua Faber, Scott Noble @desc Circularly Polarized Alfven Wave test as implemented by Beckwith and Stone Astrophys.J.Suppl. 193 (2011) 6, arXiv:1101.3573, and Del Zanna et. al. A&A 473, 11 (2007), arXiv:...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
tov_lsoda.F
#ifdef HAVE_ODEPACK c=========================================================== c History: sode.f c c Driver routine which integrates ODEs defining c TOV star c c Based on bstar.f by Matthew Choptuik c=========================================================== subroutine tov_lsoda ( rho, p, ...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_ReconstructTest.F90
/*@@ @file GRHydro_ReconstructTest.F90 @date Sat Jan 26 02:51:49 2002 @author Luca Baiotti @desc A test of the reconstruction algorithm. @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" /*@@ @routine GRHydro_reconstruction_test @date...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_Only_Atmo.F90
/*@@ @file GRHydro_Only_Atmo.F90 @date Sat Jan 29 04:44:25 2002 @author Luca Baiotti @desc Hydro initial data for vacuum. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #define velx(i,j,k) vel(i,j,k,1) #define vely(i,j,k) vel(i,j,k,2) #defin...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_CylindricalExplosionM.F90
/*@@ @file GRHydro_CylindricalExplosionM.F90 @date Apr 22, 2011 @author Scott Noble, Joshua Faber, Bruno Mundim @desc Cylindrical magnetized shocks. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "GRHydro_...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_C2P2C.F90
/*@@ @file GRHydro_C2P2C.F90 @date Sat Jan 26 02:44:43 2002 @author Luca Baiotti @desc A test of the conservative <--> primitive variable exchange @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" /*@@ @routine ...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
make.configuration.deps
# the TOV solver uses lsoda, which comes with the odepack library # Currently the Cactus configure script doesn't check for this # Thus the user needs to set an environment variable, ODEPACK_DIR # -Scott Hawley # Remove by IH.
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_RotorM.F90
/*@@ @file GRHydro_RotorM.F90 @date Aug 15, 2011 @author Scott Noble, Joshua Faber, Bruno Mundim @desc Cylindrical magnetized rotor test (see Etienne et al.). @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_P2C2PM.F90
/*@@ @file GRHydro_P2C2PM.F90 @date Sep 25, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Luca Baiotti @desc A test of the conservative <--> primitive variable exchange @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Fun...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_SimpleWave.F90
/*@@ @file GRHydro_SimpleWave.F90 @date Thu Aug 2 15:17:35 2007 @author Luca Baiotti @desc Initial data for a simple wave with sinusoidal initial function for the velocity See Anile, Miller, Motta, Formation and damping of relativistic strong shocks, Phys. Fluids 26, 1450...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
make.code.defn
# Main make.code.defn file for thorn Hydra_Init_Data # $Header: /GRHydro/GRHydro_Dev/GRHydro_Init_Data/src/make.code.defn,v 1.6 2004/04/28 17:30:18 hawke Exp $ # Source files in this directory SRCS = GRHydro_C2P2C.F90 \ GRHydro_C2P2CM.F90 \ GRHydro_Con2Prim.F90 \ GRHydro_ReconstructTest.F90 \ GRHydro_ShockTube.F9...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_MonopoleM.F90
/*@@ @file GRHydro_MonopoleM.F90 @date Sep 23, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Ian Hawke @desc Initial data of the shock tube type - MHD version. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h"...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_BondiM.c
/*@@ @file GRHydro_Bondi.c @date Wed Jan 13 13:00:49 EST 2010 @author Scott C. Noble @desc Hydro initial data for the relativistic Bondi solution about a single Schwarzschild black hole. @enddesc @@*/ /****************************************************************************...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_TOV.F90
/*@@ @file GRHydro_TOV.F90 @date Wed Feb 13 02:53:25 2002 @author Scott Hawley @desc Initial data of the TOV type. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" /*@@ @routine GRHydro_TOV @date Sat Jan 26 02:53:49 2002 @au...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_PoloidalMagFieldM.F90
/*@@ @file GRHydro_PoloidalMagFieldM.F90 @date Oct 31, 2011 @author Bruno Mundim, Joshua Faber, Scott Noble @desc Poloidal Magnetic field implemented as in "General relativistic simulations of magnetized binary neutron star mergers" - by Yuk Tung Liu, Stuart L. Shapiro, Zachariah B. Etie...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_C2P2CM.F90
/*@@ @file GRHydro_C2P2CM.F90 @date Sep 23, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Luca Baiotti @desc A test of the conservative <--> primitive variable exchange @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Fun...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_C2P2CM_eosomni.F90
/*@@ @file GRHydro_C2P2CM.F90 @date Sep 23, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Luca Baiotti @desc A test of the conservative <--> primitive variable exchange @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Fun...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
tov_fcn.F
#ifdef HAVE_ODEPACK c------------------------------------------------------------------------ c equation of state, converts p to rho c currently using a polytrope c------------------------------------------------------------------------ real*8 function p2rho(p) implicit none real*8 p p...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_Bondi_new.F90
/*@@ @file GRHydro_Bondi.F90 @date Wed Jan 13 13:00:49 EST 2010 @author Scott C. Noble @desc Hydro initial data for the relativistic Bondi solution about a single Schwarzschild black hole. @enddesc @@*/ /* Calculates the Bondi solution, or the spherically symmetric hydrostat...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_ReadConformalData.F90
/*@@ @file GRHydro_ReadConformalData.F90 @date Fri Jul 6 12:29:27 2007 @author Luca Baiotti @desc Set the missing quantities, after reading in from file initial data from conformally-flat codes (Garching) @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Ar...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_BondiM_new.F90
/*@@ @file GRHydro_Bondi.F90 @date Wed Jan 13 13:00:49 EST 2010 @author Scott C. Noble @desc Hydro initial data for the relativistic Bondi solution about a single Schwarzschild black hole. @enddesc @@*/ /* Calculates the Bondi solution, or the spherically symmetric hydrostat...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_ShockTube.F90
/*@@ @file GRHydro_ShockTube.F90 @date Sat Jan 26 02:53:25 2002 @author Ian Hawke @desc Initial data of the shock tube type. @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "GRHydro_Macros.h" #define velx(...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_AdvectedLoopM.F90
/*@@ @file GRHydro_AdvectedLoopM.F90 @date Aug 15, 2011 @author Scott Noble, Joshua Faber, Bruno Mundim @desc Advected loop test as implemented by Beckwith and Stone Astrophys.J.Suppl. 193 (2011) 6, arXiv:1101.3573. Other relevant references: Devore JCP 92, 142 (1991), ...
EinsteinEvolve/GRHydro_InitData
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
REQUIRES EOS_Omni Fortran
# Interface definition for thorn GRHydro_Init_Data # $Header$ implements: GRHydro_init_data inherits: GRHydro grid EOS_Omni #USES INCLUDE: EOS_Base.inc USES INCLUDE: SpaceMask.h #USES INCLUDE: EOS_Base.h SUBROUTINE SpatialDet(CCTK_REAL IN gxx, CCTK_REAL IN gxy, \ CCTK_REAL IN gxz, CCTK_REAL IN...
# Parameter definitions for thorn GRHydro_Init_Data # $Header$ shares:HydroBase USES CCTK_INT timelevels USES KEYWORD Bvec_evolution_method USES KEYWORD Y_e_evolution_method USES KEYWORD temperature_evolution_method USES KEYWORD entropy_evolution_method EXTENDS KEYWORD initial_hydro "" { "shocktube" :: "Shocktube ...
# Schedule definitions for thorn GRHydro_Init_Data schedule GRHydro_InitData_CheckParameters AT CCTK_PARAMCHECK { LANG: C } "Check parameters" if (CCTK_Equals(initial_hydro,"monopole")) { schedule GRHydro_MonopoleM in HydroBase_Initial { LANG: Fortran } "Monopole initial data" } if (CCTK_Equals(in...
GRHydro_P2C2PM_eosomni.F90
/*@@ @file GRHydro_P2C2PM.F90 @date Sep 25, 2010 @author Joshua Faber, Scott Noble, Bruno Mundim, Luca Baiotti @desc A test of the conservative <--> primitive variable exchange @enddesc @@*/ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Fun...
EinsteinEvolve/NewRad
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn NewRad REQUIRES GenericFD
# Interface definition for thorn NewRad IMPLEMENTS: NewRad USES INCLUDE HEADER: GenericFD.h CCTK_INT FUNCTION \ ExtrapolateGammas \ (CCTK_POINTER_TO_CONST IN cctkGH, \ CCTK_REAL ARRAY INOUT var) PROVIDES FUNCTION ExtrapolateGammas WITH ExtrapolateGamma...
# Parameter definitions for thorn NewRad
# Schedule definitions for thorn NewRad
extrap.cc
#include <cassert> #include <cmath> #include <cctk.h> #define KRANC_C #include <GenericFD.h> using namespace std; // Adapted from BSSN_MoL's files Init.F // Erik Schnetter: This code was probably originally written by Miguel // Alcubierre. static void extrap_kernel (cGH const* restrict const cctkGH, ...
EinsteinEvolve/NewRad
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn NewRad REQUIRES GenericFD
# Interface definition for thorn NewRad IMPLEMENTS: NewRad USES INCLUDE HEADER: GenericFD.h CCTK_INT FUNCTION \ ExtrapolateGammas \ (CCTK_POINTER_TO_CONST IN cctkGH, \ CCTK_REAL ARRAY INOUT var) PROVIDES FUNCTION ExtrapolateGammas WITH ExtrapolateGamma...
# Parameter definitions for thorn NewRad
# Schedule definitions for thorn NewRad
newrad.cc
#include <cassert> #include <cmath> #include <cctk.h> #define KRANC_C #include <GenericFD.h> using namespace std; // Adapted from BSSN_MoL's files NewRad.F and newrad.h // Erik Schnetter: This code was probably originally written by Miguel // Alcubierre. static void newrad_kernel (cGH const* restrict const cctkGH...
EinsteinEvolve/NewRad
https://bitbucket.org/einsteintoolkit/einsteinevolve.git
# Configuration definition for thorn NewRad REQUIRES GenericFD
# Interface definition for thorn NewRad IMPLEMENTS: NewRad USES INCLUDE HEADER: GenericFD.h CCTK_INT FUNCTION \ ExtrapolateGammas \ (CCTK_POINTER_TO_CONST IN cctkGH, \ CCTK_REAL ARRAY INOUT var) PROVIDES FUNCTION ExtrapolateGammas WITH ExtrapolateGamma...
# Parameter definitions for thorn NewRad
# Schedule definitions for thorn NewRad
make.code.defn
# Main make.code.defn file for thorn NewRad # Source files in this directory SRCS = extrap.cc newrad.cc # Subdirectories containing source files SUBDIRS =
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
ParamCheck.c
/*@@ @file ParamCheck.c @date Fri Apr 26 18:03:09 2002 @author Tom Goodale @desc Check the parameters for DistortedBHIVP @enddesc @version $Header: /arrangements/PerturbedBH2/DistortedBHIVP/src/ParamCheck.c,v 1.1 2002/04/30 guzman @@*/ #include "cctk.h" #include "cctk_...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
bhbrill3d.m
$Path = Union[$Path,{"~/SetTensor"}]; Needs["SetTensor`"]; Dimension = 3; x[1] = eta; x[2] = q; x[3] = phi qf[eta_,q_,phi_] := amp (Exp[-(eta-eta0)^2/sigma^2]+Exp[-(eta+eta0)^2/sigma^2]) Sin[q]^n (1+c Cos[phi]^2) md = { {Exp[2 qf[eta,q,phi]],0,0}, {0,Exp[2 qf[eta,q,phi]],0}, {0,0,Sin[q]^2}} psisph[eta,q,phi]^4; Initi...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
psi_2nd_deriv.x
o1 = 5.0000000000000d-1*eta(i,j,k) o2 = exp(o1) o3 = psi3d(i,j,k) o4 = 1/o3 o5 = cos(phi(i,j,k)) o6 = o5**2 o7 = cos(q(i,j,k)) o8 = o7**2 o9 = detapsi3d(i,j,k) o10 = -2.50000000000000d0*eta(i,j,k) o11 = exp(o10) o12 = dqqpsi...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
bhbrill3d.x
o1 = deta**2 o2 = 1/o1 o3 = dq**2 o4 = 1/o3 o5 = 1/dq o6 = tan(q) o7 = 1/o6 o8 = dphi**2 o9 = 1/o8 o10 = eta**2 o11 = sigma**2 o12 = 1/o11 o13 = -(o10*o12) o14 = -2.00000000000000d0*eta*eta0*o12 o15 =...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
gij.x
o1 = 2.00000000000000d0*phi(i,j,k) o2 = cos(o1) o3 = cos(phi(i,j,k)) o4 = o3**2 o5 = c*o4 o6 = 1.00000000000000d0 + o5 o7 = -eta0 o8 = eta(i,j,k) + o7 o9 = o8**2 o10 = sigma**2 o11 = 1/o10 o12 = -(o11*o9) o13 = exp(o...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
DistortedBHIVP.F
c /*@@ c @file DistortedBHIVP.F c @date c @author c @desc c c @enddesc c@@ */ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" c /*@@ c @routine DistortedBHIVP c @date c @auth...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
qfunc.x
qf(i,j,k) = amp*(1.00000000000000d0+c*cos(phigrd(k))**2)* $ (exp(-((etagrd(i)-eta0)**2/sigma**2))+exp(-((etagrd(i)+eta0)**2 $ /sigma**2)))*sin(qgrd(j))**n qfetaeta(i,j,k) = amp*(1.00000000000000d0+c*cos(phigrd(k)) $ **2)*((4.0000000000000d0*(etagrd(i)-eta0)**2*exp(-((etagrd(i)-eta0) $ **2/sigma**...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
Stab3d.F
subroutine bicgst3d(cc,ce,cw,cn,cs,ct,cb,u,rhs, & eps,rmax,ier,im,jm,km) c c This routine was lifted from stab.f. Minor modifications have c been made. c implicit none c integer,intent(in) :: im,jm,km real*8,intent(inout) :: cc(im,jm,km),cn(im,jm,km),cs(im,jm,km), $ ce(...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
psi_1st_deriv.x
o1 = 5.0000000000000d-1*eta(i,j,k) o2 = exp(o1) o3 = psi3d(i,j,k) o4 = 1/o3 o5 = cos(phi(i,j,k)) o6 = cos(q(i,j,k)) o7 = dqpsi3d(i,j,k) o8 = -1.50000000000000d0*eta(i,j,k) o9 = exp(o8) o10 = dphipsi3d(i,j,k) o11 = sin(phi(i,j,k)) ...
EinsteinInitialData/DistortedBHIVP
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Interface definition for thorn DistortedBHIVP # $Header$ implements: distortedbhivp inherits: ADMBase grid StaticConformal private: real sph_to_car_coord TYPE=GF { eta, abseta, sign_eta, q, phi } "coordinate" real sph_to_car_psi TYPE=GF { psi3d, detapsi3d, dqpsi3d, dphipsi3d, detaetapsi3d, detaqpsi3d, detaphipsi3...
# Parameter definitions for thorn DistortedBHIVP # $Header$ shares: StaticConformal USES KEYWORD conformal_storage shares:admbase USES KEYWORD metric_type EXTENDS KEYWORD initial_lapse { "schwarz" :: "Set lapse to Schwarzschild" } EXTENDS KEYWORD initial_data { "distortedbh" :: "Non-Aix BH + Brill Wave IVP" ...
# Schedule definitions for thorn DistortedBHIVP # $Header$ if (CCTK_Equals(initial_data,"distortedbh")) { STORAGE: sph_to_car_coord, sph_to_car_psi schedule DistortedBHIVP_ParamCheck at PARAMCHECK { LANG: C } "Check Parameters" schedule DistortedBHIVP IN ADMBase_InitialData { LANG: Fortran } ...
make.code.defn
# Main make.code.defn file for thorn DistortedBH # $Header$ # Source files in this directory SRCS = DistortedBHIVP.F Stab3d.F ParamCheck.c # Subdirectories containing source files SUBDIRS =
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
gauge.F
C This routine sets the lapse and/or shift by calling a routine C that does it pointwise. Note that it could be easily modified C to set the Bona-Masso variables B_xx etc. C $Header$ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" subroutine Ex...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
ParamCheck.c
/*@@ @file ParamCheck.c @date Ues April 30 2002 @author Gabrielle Allen @desc Parameter checking stuff for Exact @enddesc @version $Header$ @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" static const char *rcsid = "$Header$"; CCTK_FILEVERSION(AEI...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
boundary.F
C $Header$ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" subroutine Exact__boundary(CCTK_ARGUMENTS) implicit none DECLARE_CCTK_ARGUMENTS integer i,j,k integer nx,ny,nz CCTK_REAL tplusone CCTK_REAL $ dxgxxj...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
metric.F
c This subroutine calculates the 4-metric and its inverse at an event, c for a given model, by decoding decoded_exact_model and calling the c appropriate subroutine for that model. C $Header$ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "param_defs....
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
xyz_blended_boundary.F
C $Header$ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" subroutine Exact__xyz_blended_boundary(CCTK_ARGUMENTS) implicit none DECLARE_CCTK_ARGUMENTS DECLARE_CCTK_PARAMETERS DECLARE_CCTK_FUNCTIONS logical doKij, doGij, doLa...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
Bona_Masso_data.F
c This routine calculates Bona-Masso initial data, making use of the c subroutine Exact__metric() to calculate the spacetime metric and its c inverse. Note that this use of the Bona-Masso variables is independent c of how (or even if) we are evolving the Einstein equations -- here c the Bona-Masso variables are "just"...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
decode_pars.F
c/*@@ c @file decode_pars.F c @date Fri Jun 7 19:47:46 CEST 2002 c @author Jonathan Thornburg <jthorn@aei.mpg.de> c @desc c Decode/copy parameters for this thorn into grid scalars c so we can share this with friends c so the Calc_Tmunu code in ../include/Scalar_CalcTmunu.inc c can use them in computing the stress-en...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
README
Description of files in this directory ====================================== $Header$ This directory contains the main top-level files for thorn Exact. There are subdirectories include/ include files (n.b. all the code for the stress-energy tensor lives here) metrics/ individual 4-metrics for the various models ...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
make.code.defn
# Main make.code.defn file for thorn Exact # $Header$ # Source files in this directory SRCS = ParamCheck.c \ Startup.c \ decode_pars.F \ initialize.F \ \ slice_initialize.F \ slice_evolve.F \ slice_data.F \ \ gauge.F \ Bona_Masso_data.F ...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
linear_extrap_one_bndry.F
c this subroutine linearly extrapolates one Cactus variable c on one boundary of the Cactus grid box C $Header$ #include "cctk.h" #include "cctk_Arguments.h" #include "Exact.inc" c #define-ing the symbol EXACT_NO_F90 will turn this file into a no-op #ifndef EXACT_NO_F90 subroutine Exact__linear_extrap_one_bndry...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
slice_evolve.F
C Evolve the slice in the exact spacetime. C $Header$ C C Note that this code ignores any conformal factor set by the model, C and thus wont work for models which try to set a conformal factor. C At present "Minkowski/conf wave" is the only such model. C #include "cctk.h" #include "cctk_Arguments.h" #include "cct...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
boost.F
c This subroutine calculates the 4-metric and its inverse at an event, c taking into account an optional Lorentz boost and an optional rotation. c The model is first rotated and then boosted, such that the boost is c applied to the rotated model. c $Header$ c c The coordinates are c Cx(a) = Cactus $x^a$ c Mx(a) = M...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
initialize.F
C Wrapper for boostrotdata. Calls it and vectorini. C Sets Cauchy data, lapse and shift, and what else is needed C in the Bona-Masso formalism, at an initial time. C $Header$ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" subroutine Exact...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
slice_data.F
C Extract Cauchy data from the slice x^A(x^i) stored in slicex, C slicey, slicez, slicet, and calculate dx^A/dt. C $Header$ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "Exact.inc" subroutine Exact__slice_data(CCTK_ARGUMENTS) implicit none DECLARE_CCTK_A...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
blended_boundary.F
C $Header$ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" subroutine Exact__blended_boundary(CCTK_ARGUMENTS) implicit none DECLARE_CCTK_ARGUMENTS DECLARE_CCTK_PARAMETERS DECLARE_CCTK_FUNCTIONS logical doKij, doGij, doLapse,...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
slice_initialize.F
C $Header$ #include "cctk.h" #include "cctk_Parameters.h" #include "cctk_Arguments.h" #include "cctk_Functions.h" #include "Exact.inc" subroutine Exact__slice_initialize(CCTK_ARGUMENTS) implicit none DECLARE_CCTK_ARGUMENTS c #define-ing the symbol EXACT_NO_F90 will turn this subroutine into a no-op...
EinsteinInitialData/Exact
https://bitbucket.org/einsteintoolkit/einsteininitialdata.git
# Configuration definition for thorn Exact # $Header$ REQUIRES THORNS: CoordGauge
# Interface definition for thorn Exact # $Header$ implements: exact inherits: admbase grid coordgauge staticconformal friend: ADMCoupling # evolution thorns need to include these files # to get our terms in the stress-energy tensor INCLUDES SOURCE: Scalar_CalcTmunu.inc in CalcTmunu.inc INCLUDES : Scalar_CalcTmu...
# parameter definitions for thorn Exact # $Header$ shares: admbase ################################################################################ ##### keyword parameters from other thorns ##################################### ################################################################################ USES KE...
# Schedule definitions for thorn Exact # $Header$ # these are just grid scalars, so there's no harm in leaving storage # for them on all the time STORAGE: Exact_pars_int STORAGE: Exact_pars_real # This is a grid function, so turning storage for on all the time # is painful. But this thorn's src/include/Scalar_CalcTm...
Startup.c
/* startup routine for Exact thorn */ /* $Header$ */ #include "cctk.h" #include "Slicing.h" /* * prototypes for scheduled routines */ int Exact__RegisterSlicing(void); /******************************************************************************/ int Exact__RegisterSlicing(void) { int handle; handle=Einste...