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 |
|---|---|---|---|---|---|---|---|
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_GetNews.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
subroutine NullNews_GetNews(CCTK_ARGUMENTS)
use NullNews_Omega
use NullNews_Bondi
use NullNews_CalcPsi4
use NullNews_ScriUtil, only: NullNews_ResetInactive
use NullNews_ScriUtil, only:... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | set_pointers.h |
// define pointer array for past timelevels!
vector<CCTK_REAL*> uBondiP(max_timelevels, (CCTK_REAL*)NULL);
vector<CCTK_COMPLEX*> Psi4P(max_timelevels, (CCTK_COMPLEX*)NULL);
vector<CCTK_COMPLEX*> NewsP(max_timelevels, (CCTK_COMPLEX*)NULL);
vector<CCTK_COMPLEX*> NewsBP(max_timelevels, (CCTK_COMPLEX*)NULL);
... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | set_pointers.h.old |
uBondiP[0] = uBondi;
uBondiP[1] = uBondi_p;
uBondiP[2] = uBondi_p_p;
uBondiP[3] = uBondi_p_p_p;
uBondiP[4] = uBondi_p_p_p_p;
Psi4P[0] = Psi4;
Psi4P[1] = Psi4_p;
Psi4P[2] = Psi4_p_p;
Psi4P[3] = Psi4_p_p_p;
Psi4P[4] = Psi4_p_p_p_p;
NewsP[0] = News;
NewsP[1] = News_p;
NewsP[2] = News_p_p;
Ne... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | make.code.defn | # Main make.code.defn file for thorn NullNews
# $Header$
# Source files in this directory
SRCS = NullNews_Bondi.F90 NullNews_GetNews.F90 NullNews_Init.F90 \
NullNews_Omega.F90 NullNews_ScriUtil.F90 NullNews_ScriVals.F90 NullNews_CalcPsi4.F90 NullNews_SphHarmDecomp.F90 \
NullNews_YlmScri.F90 NullNews_interp_to_const... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_Omega.F90 | ! vim: syntax=fortran
#include "cctk.h"
!#include "cctk_Functions.h"
!#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
module NullNews_Omega
implicit none
contains
subroutine NullNews_integ_omega (cctkGH, lsh, dt, tmp_rgfn, tmp_rgfs, Uo, Un, omegao, omegan,&
betao, betan)
use NullInterp
use ... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_ScriVals.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
subroutine NullNews_ScriVals (CCTK_ARGUMENTS)
use NullNews_ScriUtil
use NullDecomp_SpinDecomp, only: SpinDecompFilter
implicit none
LOGICAL, SAVE :: FirstTime = .true.
CCTK_COMPLEX, ... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_YlmScri.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
subroutine NullNews_YlmScri(CCTK_ARGUMENTS)
! use cctk
use NullDecomp_sYlm
implicit none
DECLARE_CCTK_FUNCTIONS
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_PARAMETERS
CCTK_INT, para... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_ScriUtil.F90 | ! vim: syntax=fortran
#include "cctk.h"
!#include "cctk_Functions.h"
!#include "cctk_Arguments.h"
!#include "cctk_Parameters.h"
module NullNews_ScriUtil
implicit none
contains
subroutine NullNews_cscrival (lsh, nx, jnn, jns, J)
implicit none
CCTK_INT, dimension(2), intent(in) :: lsh
CCTK_INT, ... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_Bondi.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
module NullNews_Bondi
implicit none
contains
subroutine NullNews_News2BondiNews(cctkGH, lsh, dt, qsize, Uo, Un, Uyo, Uyn,&
zEvolo, zEvoln, zEvolh, News, NewsB, uBondio,&
uBondi, uBondin, redshiftB, omega... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_Init.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
subroutine NullNews_Init(CCTK_ARGUMENTS)
use NullNews_ScriUtil
use NullDecomp_SpinDecomp, only: SpinDecompFilter
implicit none
DECLARE_CCTK_FUNCTIONS
DECLARE_CCTK_ARGUMENTS
DECLARE... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_CalcPsi4.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Parameters.h"
module NullNews_CalcPsi4
implicit none
contains
subroutine NullNews_Psi4 (cctkGH, lsh, tmp_cgfn, tmp_cgfs, J, J_l,beta, cB, U, U_l,&
sigmaJn, sigmaKn, sigmaun,sigmarn, sigmarun, sigmauun,&
sigmaJo, sigmaKo, sigmauo,sigmaro, sigmar... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | NullNews_interp_to_constant_uBondi.cc | #include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
#include "mpi.h"
#include <iostream>
#include <vector>
using namespace std;
inline CCTK_REAL interpolant(const CCTK_REAL t, const CCTK_REAL f0, const CCTK_REAL f1, const CCTK_REAL f2, const CCTK_REAL f3, const CCT... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | maple-files/jeff-weyl.out | NOTATIONAL ISSUES
Maple Latex
r \ell
sigr $\hat \Sigma_{\ell A} q^A$
sigrr $\hat \Sigma_{\ell \ell}$
sigru $\hat \Sigma_{\ell u}$
sigu $\hat \Sigma_{u A} q^A$
siguu $\hat \Sigma_{uu}$
sigJ $\hat \Sigma_{AB} q^A q^B /2$
sigK $\hat \Sigma_{AB} q^A \bar{q}^B /2$
General
1. `b` at the end of a Maple variable ind... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | maple-files/d2Udl2.map | x:=solve(l=(1-x)/x/rwt,x);
simplify(subs(l=0,diff(x,l)));
simplify(subs(l=0,diff(x,l,l)));
f:=a0+a1*y+a2*y^2+a3*y^3;
e0:=subs(y=0,f)=b0;
e1:=subs(y=-h,f)=b1;
e2:=subs(y=-2*h,f)=b2;
e3:=subs(y=-3*h,f)=b3;
assign(solve({e0,e1,e2,e3},{a0,a1,a2,a3}));
f2:=diff(f,y,y);
simplify(subs(y=-h/2,f2));
|
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | maple-files/jeff-weyl.map | with(linalg):
x:=array([r,q,p,u]);
g:=matrix(4,4);
h:=matrix(4,4);
sigmahat:=matrix(4,4);
sigmahat1:=matrix(4,4);
qAup:=array([0,f/2,I*f/2,0]);
qAbarup:=array([0,f/2,-I*f/2,0]);
UA:=array([0,unsq,unsp,0]);
alias(J=J(r,q,p,u,eth,ethb));
alias(Jb=Jb(r,q,p,u,eth,ethb));
alias(U=U(r,q,p,u,eth,ethb));
alias(Ub=Ub(r,q,p,u,... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | maple-files/J_uPsi4.map | tt:=0;
for a7 from 2 to 3 do for b7 from 2 to 3 do for c7 from 2 to 3 do
tt:=tt+
qAup[a7]*qAup[b7]*( g[c7,a7]*diff(UA[c7],x[b7])
+ g[c7,b7]*diff(UA[c7],x[a7])
+sum(g[c7,a7]*UA[d7]*C2[b7,d7,c7]+g[c7,b7]*UA[d7]*C2[a7,d7,c7],d7=2..3)
):
od:od:od:
tt:=simplify(tt);
tt:=pr1(Ub,-1,tt):tt:=p... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | maple-files/ruleFort.map | read `jeff-weyl.map`;
rule_dmetric:={
diff(J,u)=J_u,diff(J,r)=J_l,diff(J,eth)=eth_J,diff(J,ethb)=ethb_J,
diff(J,u,r)=J_l_u,diff(J,r,r)=J_l_l,diff(J,eth,ethb)=eth_ethb_J,
diff(J,ethb,ethb)=ethb2_J,diff(J,eth,eth)=eth2_J,
diff(J,u,eth)=eth_J_u,diff(J,u,ethb)=ethb_J_u,
diff(J,r,eth)=eth_J_l,diff(J,r,ethb)=e... |
PITTNullCode/NullNews | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullNews
# $Header$
REQUIRES MPI
REQUIRES THORNS: NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullNews
# $Header$
implements: NullNews
inherits: NullGrid NullVars NullInterp
CCTK_INT FUNCTION IO_TruncateOutputFiles \
(CCTK_POINTER_TO_CONST IN GH)
USES FUNCTION IO_TruncateOutputFiles
public:
# private:
cctk_complex NewsB[2] Type=ARRAY timelevels=1 dim=2 size=\
(NullGrid::N... | # Parameter definitions for thorn NullNews
# $Header$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses CCTK_REAL null_rwt
shares: cactus
uses cctk_int cctk_itlast
restricted:
BOOLEAN linearized_news "shall w... | # Schedule definitions for thorn NullEvolve
# $Header$
storage: NullVars::realcharfuncs[2]
storage: NullVars::cmplxcharfuncs_basic[2]
storage: NullVars::cmplxcharfuncs_aux[2]
#storage: NullVars::mask
storage: RNewsArrs CNewsArrs patch_index time_of_news omega JJ_l
storage: StateS
#storage: DumpArr LimDump ReGA CmplxGA
... | maple-files/jeff-weyl.f90 | program test
implicit none
double complex, dimension (21,21) :: s1,s2,s3,s4,s5,s6,psi4,&
Jb,&
J_u,J,ethb_J,J_l,eth_J,&
sigJ,sigJb,sigu,sigr,sigrb,sigK,sigru,siguu,sigub,&
ethb_sigJ,sigJ_u,&
eth_sigK,ethb_sigK,sigK_u,&
ethb_sigu,eth_sigu,&
eth... |
PITTNullCode/NullPsiInt | https://bitbucket.org/einsteintoolkit/pittnullcode.git |
REQUIRES THORNS: Fortran NullNews NullGrid
| # Interface definition for thorn NullPsiInt
# $Header:$
implements: NullPsiInt
inherits: NullVars NullGrid NullNews NullInterp NullEvolve
CCTK_INT FUNCTION MoLRegisterEvolvedGroup(CCTK_INT IN EvolvedIndex, \
CCTK_INT IN RHSIndex)
REQUIRES FUNCTION MoLRegisterEvolvedGroup
p... | # Parameter definitions for thorn NullPsiInt
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
shares: MethodOfLines
uses cctk_int MoL_Num_ArrayEvolved_Vars
uses cctk_int MoL_Max_Evolved_Array_Size
restr... | # Schedule definitions for thorn NullPsiInt
# $Header:$
######## initialization: MoL
STORAGE: NewsB_mask, Psi4_mask, NewsB_Psi, re_dotNewsB[2], im_dotNewsB[2], re_PsiInt[2], im_PsiInt[2]
schedule NullPsiInt_InitMoL in NullEvol_Initial after NullEvol_InitialSlice
{
LANG: Fortran
OPTIONS: global
} "Ini... | NullPsiInt_InitMoL.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
subroutine NullPsiInt_InitMoL(CCTK_ARGUMENTS)
use cctk
use NullGrid_Vars
implicit none
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_FUNCTIONS
DECLARE_CCTK_PARAMETERS
CCTK_INT :: patch_ID
CCT... |
PITTNullCode/NullPsiInt | https://bitbucket.org/einsteintoolkit/pittnullcode.git |
REQUIRES THORNS: Fortran NullNews NullGrid
| # Interface definition for thorn NullPsiInt
# $Header:$
implements: NullPsiInt
inherits: NullVars NullGrid NullNews NullInterp NullEvolve
CCTK_INT FUNCTION MoLRegisterEvolvedGroup(CCTK_INT IN EvolvedIndex, \
CCTK_INT IN RHSIndex)
REQUIRES FUNCTION MoLRegisterEvolvedGroup
p... | # Parameter definitions for thorn NullPsiInt
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
shares: MethodOfLines
uses cctk_int MoL_Num_ArrayEvolved_Vars
uses cctk_int MoL_Max_Evolved_Array_Size
restr... | # Schedule definitions for thorn NullPsiInt
# $Header:$
######## initialization: MoL
STORAGE: NewsB_mask, Psi4_mask, NewsB_Psi, re_dotNewsB[2], im_dotNewsB[2], re_PsiInt[2], im_PsiInt[2]
schedule NullPsiInt_InitMoL in NullEvol_Initial after NullEvol_InitialSlice
{
LANG: Fortran
OPTIONS: global
} "Ini... | make.code.defn | # Main make.code.defn file for thorn NullPsiInt
# $Header:$
# Source files in this directory
SRCS = NullPsiInt_dotNewsPsi.F90 NullPsiInt_MoLRegister.c \
NullPsiInt_InitMoL.F90
# Subdirectories containing source files
SUBDIRS =
|
PITTNullCode/NullPsiInt | https://bitbucket.org/einsteintoolkit/pittnullcode.git |
REQUIRES THORNS: Fortran NullNews NullGrid
| # Interface definition for thorn NullPsiInt
# $Header:$
implements: NullPsiInt
inherits: NullVars NullGrid NullNews NullInterp NullEvolve
CCTK_INT FUNCTION MoLRegisterEvolvedGroup(CCTK_INT IN EvolvedIndex, \
CCTK_INT IN RHSIndex)
REQUIRES FUNCTION MoLRegisterEvolvedGroup
p... | # Parameter definitions for thorn NullPsiInt
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
shares: MethodOfLines
uses cctk_int MoL_Num_ArrayEvolved_Vars
uses cctk_int MoL_Max_Evolved_Array_Size
restr... | # Schedule definitions for thorn NullPsiInt
# $Header:$
######## initialization: MoL
STORAGE: NewsB_mask, Psi4_mask, NewsB_Psi, re_dotNewsB[2], im_dotNewsB[2], re_PsiInt[2], im_PsiInt[2]
schedule NullPsiInt_InitMoL in NullEvol_Initial after NullEvol_InitialSlice
{
LANG: Fortran
OPTIONS: global
} "Ini... | NullPsiInt_MoLRegister.c | /*@@
@file NullPsiInt_MoLRegister.c
@date Wed Oct 21 11:52:41 CET 2009
@author Maria Babiuc
@desc
Routine to register the variables with the MoL thorn. Based on Ian Hawke's WaveMoL
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
void NullPsi... |
PITTNullCode/NullPsiInt | https://bitbucket.org/einsteintoolkit/pittnullcode.git |
REQUIRES THORNS: Fortran NullNews NullGrid
| # Interface definition for thorn NullPsiInt
# $Header:$
implements: NullPsiInt
inherits: NullVars NullGrid NullNews NullInterp NullEvolve
CCTK_INT FUNCTION MoLRegisterEvolvedGroup(CCTK_INT IN EvolvedIndex, \
CCTK_INT IN RHSIndex)
REQUIRES FUNCTION MoLRegisterEvolvedGroup
p... | # Parameter definitions for thorn NullPsiInt
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
shares: MethodOfLines
uses cctk_int MoL_Num_ArrayEvolved_Vars
uses cctk_int MoL_Max_Evolved_Array_Size
restr... | # Schedule definitions for thorn NullPsiInt
# $Header:$
######## initialization: MoL
STORAGE: NewsB_mask, Psi4_mask, NewsB_Psi, re_dotNewsB[2], im_dotNewsB[2], re_PsiInt[2], im_PsiInt[2]
schedule NullPsiInt_InitMoL in NullEvol_Initial after NullEvol_InitialSlice
{
LANG: Fortran
OPTIONS: global
} "Ini... | NullPsiInt_dotNewsPsi.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
subroutine NullPsiInt_dotNewsPsi(CCTK_ARGUMENTS)
use cctk
!use NullInterp
use NullGrid_Vars
implicit none
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_FUNCTIONS
DECLARE_CCTK_PARAMETERS
CCTK... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_SchPreCalc.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_SchPreCalc(CCTK_ARGUMENTS)
use cctk
use NullGrid_Vars
use NullSHRE_modSchYlm
implicit none
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_PARAMETERS
DECLARE_CCTK... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modEta.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modEta
use cctk
implicit none
contains
subroutine wt_j1(g, gup, dg, dalpha, beta, dbeta, na, sa, ell, dsa, &
dna, j0inv, elld, delld, j1)
use NullSHRE_modGFdef
implicit none
type (gf2d), dimension (4,4), intent (in) :... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_WTSphHarm.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
subroutine NullSHRE_WTSphHarm(CCTK_ARGUMENTS)
use cctk
use NullInterp
use NullDecomp_Vars, only: lmax
use NullDecomp_SpinDecomp, only: SpinDecompCoefs
use NullDecomp_IO
implicit n... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modInverse.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modInverse
use cctk
implicit none
contains
subroutine wt_gup3(g, detg, gup)
use NullSHRE_modGFdef
implicit none
type (gf2d), dimension (4,4), intent (in) :: g
type (gf2d), intent (inout) :: detg
type (gf2d), dime... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modSchClm.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modSchClm
use cctk
implicit none
! gives the numerical spherical harmonic coefficients Clm for the IEF Schwarzschild metric
contains
subroutine SchAlm_00(R,M, A00)
implicit none
CCTK_REAL, intent(in) :: R, M
CCTK_COMPLEX :: A00
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modVars.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modVars
use cctk
use NullSHRE_modGFdef
implicit none
!----------------------------------------------------------------------
! radius of the worldtube
! values at the level "n"
!------------------------------------------------------------... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_mod4Metric.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_mod4Metric
use cctk
implicit none
contains
! computes the git components of the metric, eq. (21)
subroutine wt_g(alpha, beta, g)
use NullSHRE_modGFdef
implicit none
type (gf2d), intent (in) :: alpha
type (gf2d), di... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_ErrorSch.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_ErrorSch(CCTK_ARGUMENTS)
!fills the current levels with analytic valuse of the metric, lapse, shift, and their (r,q,p,t) derivatives
use cctk
use NullGrid_Vars
impli... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modRadius.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modRadius
use cctk
implicit none
contains
subroutine wt_r(nn1, nn2, pp, eta0, r0)
! the bondi radius eq. (53)
use NullSHRE_modGFdef
implicit none
type (gf2d), dimension (4,4), intent (in) :: eta0
type (gf2d), inten... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_MetricReconPast.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_MetricReconPast(CCTK_ARGUMENTS)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!reads the numerical expansion coefficients Clm
!and reconstructs the metric on the worldtu... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_InitialWT.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_InitialWT (CCTK_ARGUMENTS)
!---------------------------------------------------------------------------
! extraction routine - produces boundary data for the null code
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modSchYlm.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modSchYlm
contains
subroutine SchYlm (l, m, nq, np, qs, ps, pp, Ylm)
implicit none
CCTK_INT, intent(in) :: l, m, nq, np
CCTK_REAL, dimension(nq, np), intent(in) :: qs, ps, pp
CCTK_COMPLEX, dimension(nq, np, 2) :: Ylm
CCTK_REAL, p... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modGFdef.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modGFdef
! define derived types
type gf2d
CCTK_REAL, dimension (:,:), pointer :: d
end type gf2d
type gf2dc
CCTK_COMPLEX, dimension (:,:), pointer :: d
end type gf2dc
end module NullSHRE_modGFdef
|
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modAnaCoord.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modAnaCoord
use cctk
implicit none
contains
subroutine wt_coord (nn1, nn2, qs, ps, pp, ip, cr, wt) ! eq. (17)
use NullSHRE_modGFdef
implicit none
CCTK_INT, intent (in) :: nn1, nn2, ip
CCTK_REAL, dime... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_Pointing.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
subroutine NullSHRE_Pointing (CCTK_ARGUMENTS)
use cctk
use NullSHRE_modVars
implicit none
TARGET :: SHRE_alpha
TARGET :: SHRE_dralpha, SHRE_dqalpha, SHRE_dpalpha, SHRE_dtalpha
TA... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_ExtractWT.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#define cr Extract_R
subroutine NullSHRE_ExtractWT (CCTK_ARGUMENTS)
!---------------------------------------------------------------------------
! extraction routine - produces boundary da... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | wt_SphHarmDecomp.F90 | #include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "cctk_Functions.h"
subroutine wt_WriteSphHarmWT(CCTK_ARGUMENTS)
use cctk
use NullInterp
use NullDecomp_Vars, only: lmax
use NullDecomp_SpinDecomp, only: SpinDecompCoefs
use NullDecomp_IO
implicit none
CCTK_INT, para... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | make.code.defn | # Main make.code.defn file for thorn NullSHRExtract
# $Header:$
# Source files in this directory
SRCS = \
NullSHRE_AnaSchMetricRecon.F90 NullSHRE_ExtractWT.F90 \
NullSHRE_FullMetricRecon.F90 NullSHRE_InitialWT.F90 \
NullSHRE_MetricReconPast.F90 NullSHRE_ErrorSch.F90\
NullSHRE_Pointing.F90 NullSHRE_PreCalcNSYlm.F90... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modsinSchClm.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modsinSchClm
! gives the numerical spherical harmonic coefficients Clm for the IEF sinSchwarzschild metric
use cctk
implicit none
contains
subroutine sinSchAlm_00(R,M,T,F,A, A00)
implicit none
CCTK_REAL, intent(in) :: R, M, T, F, A
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modNullDir.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modNullDir
use cctk
implicit none
contains
subroutine wt_na(alpha, beta, na) ! eq. (22)
use NullSHRE_modGFdef
implicit none
type (gf2d), intent (in) :: alpha
type (gf2d), dimension (3), intent (inout) :: beta
type... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_FullMetricRecon.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_FullMetricRecon(CCTK_ARGUMENTS)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!reads the numerical expansion coefficients Clm
!and reconstructs the metric on the worldtub... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_SchMetricRecon.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_SchMetricRecon(CCTK_ARGUMENTS)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!reads the numerical expansion coefficients Clm
!and reconstructs the metric on the worldtube... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_AnaSchMetricRecon.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_AnaSchMetricRecon(CCTK_ARGUMENTS)
!fills the current levels with analytic valuse of the metric, lapse, shift, and their (r,q,p,t) derivatives
use cctk
use NullGrid_Var... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modBoundary.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
module NullSHRE_modBoundary
use cctk
implicit none
contains
subroutine wt_null_boundary_mask (nn1, nn2, dx,&
rwt, xin, r0, x_wt, boundary_masks, buffer_width)
use NullSHRE_modGFdef
implicit none
CCTK_INT, ... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_PreCalcNSYlm.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
subroutine NullSHRE_PreCalcNSYlm (CCTK_ARGUMENTS)
use cctk
use NullEvol_sYlm
use NullGrid_Vars
implicit none
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_PARAMETERS
DECLAR... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_SchReadClm.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_SchReadClm(CCTK_ARGUMENTS)
use cctk
use NullGrid_Vars
use NullSHRE_modSchClm
use NullSHRE_modsinSchClm
use NullSHRE_modvibSchClm
implicit none
DECLARE_CCTK... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | NullSHRE_modvibSchClm.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modvibSchClm
! gives the numerical spherical harmonic coefficients Clm for the IEF Schwarzschild metric
use cctk
implicit none
contains
subroutine vibSchAlm_00(R,M,T,F,A, A00)
implicit none
CCTK_REAL, intent(in) :: R, M, T, F, A
C... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_SchPreCalc.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_SchPreCalc(CCTK_ARGUMENTS)
use cctk
use NullGrid_Vars
use NullSHRE_modSchYlm
implicit none
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_PARAMETERS
DECLARE_CCTK... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_JInitial.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#define full_initial_data .false.
! set J initially on the entire characteristic grid
subroutine NullSHRE_JInitial(CCTK_ARGUMENTS)
use cctk
use NullGrid_Vars
implicit none
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_modSchClm.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modSchClm
! gives the numerical spherical harmonic coefficients Clm for the IEF Schwarzschild metric
contains
subroutine SchAlm_00(R,M, A00)
implicit none
CCTK_REAL, intent(in) :: R, M
CCTK_COMPLEX :: A00
CCTK_REAL, parameter ::... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_OldSchMetricRecon.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_SchMetricRecon(CCTK_ARGUMENTS)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!reads the numerical expansion coefficients Clm
!and reconstructs the metric on the worldtube... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_modSchYlm.F90 | ! vim: syntax=fortran
#include "cctk.h"
module NullSHRE_modSchYlm
contains
subroutine SchYlm (l, m, nq, np, qs, ps, pp, Ylm)
implicit none
CCTK_INT, intent(in) :: l, m, nq, np
CCTK_REAL, dimension(nq, np), intent(in) :: qs, ps, pp
CCTK_COMPLEX, dimension(nq, np, 2) :: Ylm
CCTK_REAL, p... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_SchMetricReconBK.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_SchMetricReconCurr(CCTK_ARGUMENTS)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!reads the numerical expansion coefficients Clm
!and reconstructs the metric on the world... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_BrokenAnalysis.F90 | !vim: syntax=fortran
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_Analysis(CCTK_ARGUMENTS)
use cctk
use NullGrid_Vars
use NullSHRE_modVars
use NullSHRE_mod4Metric
use NullSHRE_modAnalytic
implicit none
DECLARE_CCTK_ARGUME... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_modBrokenAnalytic.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Parameters.h"
module NullSHRE_modAnalytic
use cctk
implicit none
contains
!-----------------------------------------------------------------
! the analytic expressions for the Cartesian 4-metric in (p,q) coords
! the analytic expressions for the lambda... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_AnaSchWT.h | ! vim: syntax=fortran
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!debugging using the Schwarzchild metric solution in IEF coords
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
g(1,1)%d = 1+8*mass*qs**2/pp**2/cr
g(1,2)%d = 8*mass/cr*qs*(3-2*ip)*ps/pp**2
g(1,3)%d... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_SchReadClm.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_SchReadClm(CCTK_ARGUMENTS)
use cctk
use NullGrid_Vars
use NullSHRE_modSchClm
implicit none
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_PARAMETERS
DECLARE_CCTK_... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | draft/NullSHRE_FullMetricReconBK.F90 | ! vim: syntax=fortran
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
subroutine NullSHRE_FullMetricReconCurr(CCTK_ARGUMENTS)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!reads the numerical expansion coefficients Clm
!and reconstructs the metric on the worl... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/NullSHRE_PointingLib.h | ! vim: syntax=fortran
subroutine point_v1(lsh, vsize, i_min, i_max, gf_n, gf_s, v1)
use NullSHRE_modGFdef
implicit none
CCTK_INT, intent(in) :: lsh(2), vsize, i_min, i_max
type(gf2d), intent(inout) :: gf_n(i_min:i_max)
type(gf2d), intent(inout) :: gf_s(i_min:i_... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/NullSHRE_PointingNull.h | ! vim: syntax=fortran
subroutine my_nullify1(imin, imax, gf_1d)
use NullSHRE_modGFdef
implicit none
CCTK_INT,intent(in) :: imin, imax
type (gf2d), intent(inout) :: gf_1d(imin:imax)
integer :: i
do i = imin, imax
NULLIFY(gf_1d(i)%d)
end do
end subroutine my_nullify1
subrou... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/C2m2_3.f90 | t0 = 2.D0/15.D0*sqrt(30.D0)/R*sqrt(pi)*M
C2m2(1,1)=t0
t0 = cmplx(0.D0,2.D0/15.D0)*sqrt(30.D0)/R*sqrt(pi)*M
C2m2(1,2)=t0
t0 = 0
C2m2(1,3)=t0
t0 = -2.D0/15.D0*sqrt(30.D0)/R*sqrt(pi)*M
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/B10_3.f90 | t0 = 0
B10(1)=t0
t0 = 0
B10(2)=t0
t0 = -4.D0/3.D0*M/(R+2*M)*sqrt(3.D0)*sqrt(pi)
B10(3)=t0
|
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/SchwarzYlm_0.mw | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="10000" elisiontermsbefore... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Y11.f90 | t0 = 0
Y11(1,1)=t0
t0 = 0
Y11(1,2)=t0
t0 = 0
Y11(1,3)=t0
t0 = 2.D0/3.D0*sqrt(pi)/R*sqrt(6.D0)*M
Y11(1,4)=t0
t0 = 0
Y11(2,... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Y2m2.f90 | t0 = 2.D0/15.D0*sqrt(30.D0)/R*sqrt(pi)*M
Y2m2(1,1)=t0
t0 = cmplx(0.D0,2.D0/15.D0)*sqrt(pi)*sqrt(30.D0)/R*M
Y2m2(1,2)=t0
t0 = 0
Y2m2(1,3)=t0
t0 = 0
Y2m2(1,4)=t0
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Y10.f90 | t0 = 0
Y10(1,1)=t0
t0 = 0
Y10(1,2)=t0
t0 = 0
Y10(1,3)=t0
t0 = 0
Y10(1,4)=t0
t0 = 0
Y10(2,2)=t0
t0 = 0
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dRC21_3.f90 | t0 = 0
dRC21(1,1)=t0
t0 = 0
dRC21(1,2)=t0
t0 = 2.D0/15.D0*sqrt(30.D0)/R**2*sqrt(pi)*M
dRC21(1,3)=t0
t0 = 0
dRC21(2,2)=t0
t0 = cmplx(0.D0,-2.D0/15.D0)*sqrt(30.... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/JacobianCtoW_MAS.bak | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"><Zoom percentage="150"/></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxC11.f90 | t0 = -2.D0/15.D0/R**2*M*sqrt(6.D0)*sqrt(pi)
dxC11(1,1)=t0
t0 = cmplx(0.D0,4.D0/15.D0)/R**2*M*sqrt(6.D0)*sqrt(pi)
dxC11(1,2)=t0
t0 = 0
dxC11(1,3)=t0
t0 = 0
dxC11(1,4)... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/JacobianCtoW.mw | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"><Zoom percentage="150"/></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Y2m1.f90 | t0 = 0
Y2m1(1,1)=t0
t0 = 0
Y2m1(1,2)=t0
t0 = 2.D0/15.D0*sqrt(30.D0)/R*sqrt(pi)*M
Y2m1(1,3)=t0
t0 = 0
Y2m1(1,4)=t0
t0 = 0
Y2m1(... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/B1m1_3.f90 | t0 = -2.D0/3.D0*M/(R+2*M)*sqrt(6.D0)*sqrt(pi)
B1m1(1)=t0
t0 = cmplx(0.D0,-2.D0/3.D0)*M/(R+2*M)*sqrt(6.D0)*sqrt(pi)
B1m1(2)=t0
t0 = 0
B1m1(3)=t0
|
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxC3m1.f90 | t0 = 6.D0/35.D0/R**2*M*sqrt(21.D0)*sqrt(pi)
dxC3m1(1,1)=t0
t0 = cmplx(0.D0,2.D0/35.D0)/R**2*M*sqrt(21.D0)*sqrt(pi)
dxC3m1(1,2)=t0
t0 = 0
dxC3m1(1,3)=t0
t0 = 0
dxC3m1(1,4... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxC00.f90 | t0 = 0
dxC00(1,1)=t0
t0 = 0
dxC00(1,2)=t0
t0 = 0
dxC00(1,3)=t0
t0 = -4.D0/3.D0*M*sqrt(pi)/R**2
dxC00(1,4)=t0
t0 = 0
dxC00(2,2)... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxC3m2.f90 | t0 = 0
dxC3m2(1,1)=t0
t0 = 0
dxC3m2(1,2)=t0
t0 = -2.D0/35.D0/R**2*M*sqrt(210.D0)*sqrt(pi)
dxC3m2(1,3)=t0
t0 = 0
dxC3m2(1,4)=t0
t0 = 0
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/WT_dRg3N.f90 | t0 = -8*M*q**2/R**2/pp**2
WT_dRg3N(1,1)=t0
t0 = -8*M*q*p/R**2/pp**2
WT_dRg3N(1,2)=t0
t0 = 4*M*(-1+q**2+p**2)*q/R**2/pp**2
WT_dRg3N(1,3)=t0
t0 = -8*M*p**2/R**2/pp**2
WT_dRg3N... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Y00.f90 | t0 = 2.D0/3.D0*sqrt(pi)*(2*M+3*R)/R
Y00(1,1)=t0
t0 = 0
Y00(1,2)=t0
t0 = 0
Y00(1,3)=t0
t0 = 0
Y00(1,4)=t0
t0 = 2.D0/3.D0*sqrt(pi)*(2*M+3*R)/R
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/WT_gN.f90 | t0 = 1+8*M*q**2/pp**2/R
WT_gN(1,1)=t0
t0 = 8*M*q*p/R/pp**2
WT_gN(1,2)=t0
t0 = -4*M*(-1+q**2+p**2)*q/R/pp**2
WT_gN(1,3)=t0
t0 = -4*M*q/R/pp
WT_gN(1,4)=t0
t0 = ... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Schwarz3Ylm_NS.mw | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"><Zoom percentage="150"/></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxC3m3.f90 | t0 = -6.D0/35.D0/R**2*M*sqrt(pi)*sqrt(35.D0)
dxC3m3(1,1)=t0
t0 = cmplx(0.D0,-6.D0/35.D0)/R**2*M*sqrt(pi)*sqrt(35.D0)
dxC3m3(1,2)=t0
t0 = 0
dxC3m3(1,3)=t0
t0 = 0
dxC3m3(1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/MinkYlm_NS.mw | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"><Zoom percentage="150"/></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dRC20_3.f90 | t0 = 4.D0/15.D0*sqrt(pi)*M*sqrt(5.D0)/R**2
dRC20(1,1)=t0
t0 = 0
dRC20(1,2)=t0
t0 = 0
dRC20(1,3)=t0
t0 = 4.D0/15.D0*sqrt(pi)*M*sqrt(5.D0)/R**2
dRC20(2,2)=t0
t0... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/C2m1_3.f90 | t0 = 0
C2m1_3(1,1)=t0
t0 = 0
C2m1_3(1,2)=t0
t0 = 2.D0/15.D0*sqrt(30.D0)/R*sqrt(pi)*M
C2m1_3(1,3)=t0
t0 = 0
C2m1_3(2,2)=t0
t0 = cmplx(0.D0,2.D0/15.D0)*sqrt(30.D0)/... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/1YlmDeriv.mw | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"><Zoom percentage="150"/></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/g_N.f90 | t0 = 1+8*M*q**2/pp**2/R
g_N(1,1)=t0
t0 = 8*M*q*p/R/pp**2
g_N(1,2)=t0
t0 = -4*M*(-1+q**2+p**2)*q/R/pp**2
g_N(1,3)=t0
t0 = -4*M*q/R/pp
g_N(1,4)=t0
t0 = 1+8*... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxY10.f90 | t0 = 0
dxC10(1,1)=t0
t0 = 0
dxC10(1,2)=t0
t0 = 8.D0/15.D0*sqrt(pi)/R**2*M*sqrt(3.D0)
dxC10(1,3)=t0
t0 = 0
dxC10(1,4)=t0
t0 = 0
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/SchwarzYlm_NS.mw | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"><Zoom percentage="150"/></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Cxyz_dzg.f90 | t0 = -6*z*M*x**2/sqrt(x**2+y**2+z**2)**5
Cxyz_dzg(1,1)=t0
t0 = -6*M*y*z/sqrt(x**2+y**2+z**2)**5*x
Cxyz_dzg(1,2)=t0
t0 = 2*M*x*(x**2+y**2-2*z**2)/sqrt(x**2+y**2+z**2)**5
Cxyz_dzg(1,3)=t0
t0 = 4*M*z/(x**2+... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Y1m1.f90 | t0 = 0
Y1m1(1,1)=t0
t0 = 0
Y1m1(1,2)=t0
t0 = 0
Y1m1(1,3)=t0
t0 = -2.D0/3.D0*sqrt(pi)/R*sqrt(6.D0)*M
Y1m1(1,4)=t0
t0 = 0
Y1m1(2... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/B11_3.f90 | t0 = 2.D0/3.D0*M/(R+2*M)*sqrt(6.D0)*sqrt(pi)
B11(1)=t0
t0 = cmplx(0.D0,-2.D0/3.D0)*M/(R+2*M)*sqrt(6.D0)*sqrt(pi)
B11(2)=t0
t0 = 0
B11(3)=t0
|
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dRC22_3.f90 | t0 = -2.D0/15.D0*sqrt(30.D0)/R**2*sqrt(pi)*M
dRC22(1,1)=t0
t0 = cmplx(0.D0,2.D0/15.D0)*sqrt(30.D0)/R**2*sqrt(pi)*M
dRC22(1,2)=t0
t0 = 0
dRC22(1,3)=t0
t0 = 2.D0/15.D0*sqrt(30.D0)/R**2*sqrt(pi)*M
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Cxyz_g.f90 | t0 = (sqrt(x**2+y**2+z**2)**3+2*M*x**2)/sqrt(x**2+y**2+z**2)**3
Cxyz_g(1,1)=t0
t0 = 2*M*x*y/sqrt(x**2+y**2+z**2)**3
Cxyz_g(1,2)=t0
t0 = 2*M*x*z/sqrt(x**2+y**2+z**2)**3
Cxyz_g(1,3)=t0
t0 = -2*M*x/(x**2... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxC2m2.f90 | t0 = 0
dxC2m2(1,1)=t0
t0 = 0
dxC2m2(1,2)=t0
t0 = 0
dxC2m2(1,3)=t0
t0 = 4.D0/15.D0*M*sqrt(30.D0)*sqrt(pi)/R**2
dxC2m2(1,4)=t0
t0 = 0
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/Cpq_gN.f90 | t0 = 1+8*M*q**2/pp**2/R
Cpq_gN(1,1)=t0
t0 = 8*M*q*p/R/pp**2
Cpq_gN(1,2)=t0
t0 = -4*M*(-1+q**2+p**2)*q/R/pp**2
Cpq_gN(1,3)=t0
t0 = -4*M*q/R/pp
Cpq_gN(1,4)=t0
t0 = ... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/SchwarzYlm_NS_Deriv.mw | <?xml version="1.0" encoding="UTF-8"?>
<Worksheet>
<Version major="11" minor="0"/>
<Label-Scheme value="2" prefix=""/>
<View-Properties presentation="false"><Zoom percentage="150"/></View-Properties>
<MapleNet-Properties warnlevel="3" longdelim="true" plotoptions="" echo="1" errorcursor="false" elisiontermsthreshold="1... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dRC00_3.f90 | t0 = -4.D0/3.D0*sqrt(pi)*M/R**2
dRC00(1,1)=t0
t0 = 0
dRC00(1,2)=t0
t0 = 0
dRC00(1,3)=t0
t0 = -4.D0/3.D0*sqrt(pi)*M/R**2
dRC00(2,2)=t0
t0 = 0
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/WT_g3N.f90 | t0 = 1+8*M*q**2/pp**2/R
WT_g3N(1,1)=t0
t0 = 8*M*q*p/R/pp**2
WT_g3N(1,2)=t0
t0 = -4*M*(-1+q**2+p**2)*q/R/pp**2
WT_g3N(1,3)=t0
t0 = 1+8*M*p**2/pp**2/R
WT_g3N(2,2)=t0
... |
PITTNullCode/NullSHRExtract | https://bitbucket.org/einsteintoolkit/pittnullcode.git | # Configuration definition for thorn NullSHRExtract
# $Header:$
PROVIDES NullSHRExtraction
{
}
REQUIRES THORNS: Fortran NullEvolve NullInterp NullGrid NullDecomp
| # Interface definition for thorn NullSHRExtract
# $Header:$
implements: NullSHRExtract
inherits: NullInterp, NullGrid, NullVars
CCTK_INT \
FUNCTION GetCurrentExtractionCoefs(\
CCTK_INT IN l,\
CCTK_INT IN m,\
CCTK_REAL OUT ARRAY RC,\
CCTK_REAL OUT ARRAY IC,\
... | # Parameter definitions for thorn NullSHRExtract
# $Header:$
shares: NullGrid
uses int N_ang_pts_inside_eq
uses int N_ang_ev_outside_eq
uses int N_ang_stencil_size
uses int N_ang_ghost_pts
uses int N_radial_pts
uses real null_rwt
uses real null_xin
shares: cactus
uses cctk_int cctk_itlast
shares: NullEvolve
uses BOO... | # Schedule definitions for thorn NullSHRExtract
# $Header:$
if (CCTK_EQUALS(boundary_data,"SHRE"))
{
STORAGE: SHRE_gij[3], SHRE_git[3] SHRE_beta[3], SHRE_alpha[3]
STORAGE: SHRE_dgij[3], SHRE_dgit[3] SHRE_dbeta[3], SHRE_dalpha[3]
STORAGE: WT_r0, WT_r1[3], WT_dj0_vect
STORAGE: NullVars::realcharfuncs[2]
ST... | include/Maple/dxC2m1.f90 | t0 = 0
dxC2m1(1,1)=t0
t0 = 0
dxC2m1(1,2)=t0
t0 = 0
dxC2m1(1,3)=t0
t0 = 0
dxC2m1(1,4)=t0
t0 = 0
dxC2m1(2,2)=t0
t0 = 0
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.