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 |
|---|---|---|---|---|---|---|---|
CactusWave/WaveToyExtra | https://bitbucket.org/cactuscode/cactuswave.git | # Interface definition for thorn WaveToyExtra
# $Header$
implements: wavetoyextra
inherits: wavetoy
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN boundary_width, CCTK_INT IN table_handle, \
CCTK_STRING IN var_name, CCTK_STRING IN bc_name)
REQUIRES FUNCTIO... | # Parameter definitions for thorn WaveToyExtra
# $Header$
SHARES: wavetoy
EXTENDS KEYWORD bound
{
"custom" :: "custom boundary condition"
}
private:
STRING custom_bound "Custom boundary condition to use"
{
.* :: "Any valid boundary condition"
} ""
STRING custom_options "Table string for custom boundary conditi... | # Schedule definitions for thorn WaveToyExtra
# $Header$
schedule WaveToyExtra_Boundary at EVOL AFTER WaveToy_Evolution BEFORE WaveToy_Boundaries
{
LANG: C
} "Additional boundary conditions for 3D wave equation"
schedule WaveToyExtra_Boundary at POSTRESTRICT BEFORE WaveToy_Boundaries
{
LANG: C
} "Additional boun... | make.code.defn | # Main make.code.defn file for thorn WaveToyExtra
# $Header$
# Source files in this directory
SRCS = Boundary.c
# Subdirectories containing source files
SUBDIRS =
| |
CactusWave/WaveToyExtra | https://bitbucket.org/cactuscode/cactuswave.git | # Interface definition for thorn WaveToyExtra
# $Header$
implements: wavetoyextra
inherits: wavetoy
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN boundary_width, CCTK_INT IN table_handle, \
CCTK_STRING IN var_name, CCTK_STRING IN bc_name)
REQUIRES FUNCTIO... | # Parameter definitions for thorn WaveToyExtra
# $Header$
SHARES: wavetoy
EXTENDS KEYWORD bound
{
"custom" :: "custom boundary condition"
}
private:
STRING custom_bound "Custom boundary condition to use"
{
.* :: "Any valid boundary condition"
} ""
STRING custom_options "Table string for custom boundary conditi... | # Schedule definitions for thorn WaveToyExtra
# $Header$
schedule WaveToyExtra_Boundary at EVOL AFTER WaveToy_Evolution BEFORE WaveToy_Boundaries
{
LANG: C
} "Additional boundary conditions for 3D wave equation"
schedule WaveToyExtra_Boundary at POSTRESTRICT BEFORE WaveToy_Boundaries
{
LANG: C
} "Additional boun... | Boundary.c | /*@@
@file Boundary.c
@date Friday 18th July 2003
@author Gabrielle Allen
@desc
Use any provided boundary condition with WaveToy
@enddesc
@version $Id$
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "util_Table.h"
static const ... | |
CactusWave/WaveToyF77 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn WaveToyF77
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyF77
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN bou... | # Parameter definitions for thorn WaveToyF77
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToy77
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF77_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF77_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF77_Evolution as WaveToy_Evolution at EVOL
{
LANG: Fort... | WaveToy.F77 | /*@@
@file WaveToy.F77
@date
@author Tom Goodale
@desc
Evolution routines for the wave equation solver
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
/*@@
@routine WaveToy... |
CactusWave/WaveToyF77 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn WaveToyF77
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyF77
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN bou... | # Parameter definitions for thorn WaveToyF77
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToy77
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF77_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF77_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF77_Evolution as WaveToy_Evolution at EVOL
{
LANG: Fort... | Startup.F77 | /*@@
@file Startup.F77
@date
@author Gabrielle Allen
@desc
Register banner
@enddesc
@version $Header$
@@*/
#include "cctk.h"
integer function WaveToyF77_Startup ()
implicit none
integer ierr
call CCTK_RegisterBanner(ierr, "WaveToyF77: Evo... |
CactusWave/WaveToyF77 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn WaveToyF77
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyF77
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN bou... | # Parameter definitions for thorn WaveToyF77
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToy77
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF77_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF77_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF77_Evolution as WaveToy_Evolution at EVOL
{
LANG: Fort... | InitSymBound.F77 | /*@@
@file InitSymBound.F77
@date
@author Gabrielle Allen
@desc
Sets the symmetries for Wave Toy
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
/*@@
@routine WaveToyF77_InitSymBound
@date
@author Gabrielle Allen
@desc
Sets the... |
CactusWave/WaveToyF77 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn WaveToyF77
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyF77
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN bou... | # Parameter definitions for thorn WaveToyF77
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToy77
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF77_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF77_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF77_Evolution as WaveToy_Evolution at EVOL
{
LANG: Fort... | make.code.defn | # Main make.code.defn file for thorn WaveToyF77
# $Header$
# Source files in this directory
SRCS = InitSymBound.F77 WaveToy.F77 Startup.F77
# Subdirectories containing source files
SUBDIRS =
|
CactusWave/WaveToyF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToy90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN boun... | # Parameter definitions for thorn WaveToyF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToyF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF90_Evolution as WaveToy_Evolution at EVOL
{
LANG: For... | InitSymBound.F | /*@@
@file InitSymBound.F
@date
@author Gabrielle Allen
@desc
Sets the symmetries across the coordinate axes
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
/*@@
@routine WaveToyF90_InitSymBound
@date
@author Gabrielle Allen
@desc
... |
CactusWave/WaveToyF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToy90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN boun... | # Parameter definitions for thorn WaveToyF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToyF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF90_Evolution as WaveToy_Evolution at EVOL
{
LANG: For... | Startup.F | /*@@
@file Startup.F90
@date
@author Gabrielle Allen
@desc
Register banner
@enddesc
@version $Header$
@@*/
#include "cctk.h"
integer function WaveToyF90_Startup ()
implicit none
integer ierr
call CCTK_RegisterBanner(ierr, "WaveToyF90: Evo... |
CactusWave/WaveToyF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToy90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN boun... | # Parameter definitions for thorn WaveToyF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToyF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF90_Evolution as WaveToy_Evolution at EVOL
{
LANG: For... | make.code.defn | # Main make.code.defn file for thorn WaveToy
# $Header$
# Source files in this directory
SRCS = InitSymBound.F WaveToy.F Startup.F
# Subdirectories containing source files
SUBDIRS =
|
CactusWave/WaveToyF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToy90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type = GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN boun... | # Parameter definitions for thorn WaveToyF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"radiat... | # Schedule definitions for thorn WaveToyF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyF90_Evolution as WaveToy_Evolution at EVOL
{
LANG: For... | WaveToy.F | /*@@
@file WaveToy.F
@date
@author Tom Goodale
@desc
Evolution routines for the wave equation solver
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
/*@@
@routine WaveToyF90_... |
CactusWave/WaveToyFreeF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyFreeF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyFreeF90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type=GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN ... | # Parameter definitions for thorn WaveToyFreeF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"ra... | # Schedule definitions for thorn WaveToyFreeF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyFreeF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyFreeF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyFreeF90_Evolution as WaveToy_Evolution at EV... | InitSymBound.F90 | /*@@
@file InitSymBound.F90
@date
@author Gabrielle Allen
@desc
Sets the symmetries across the coordinate axes
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
/*@@
@routine WaveToyFreeF90_InitSymBound
@date
@author Gabrielle Allen
@desc
... |
CactusWave/WaveToyFreeF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyFreeF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyFreeF90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type=GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN ... | # Parameter definitions for thorn WaveToyFreeF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"ra... | # Schedule definitions for thorn WaveToyFreeF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyFreeF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyFreeF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyFreeF90_Evolution as WaveToy_Evolution at EV... | Startup.F90 | /*@@
@file Startup.F90
@date
@author Gabrielle Allen
@desc
Register banner
@enddesc
@version $Header$
@@*/
#include "cctk.h"
integer function WaveToyFreeF90_Startup ()
implicit none
integer ierr
call CCTK_RegisterBanner(ierr, "WaveToyFreeF90: Evolutions... |
CactusWave/WaveToyFreeF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyFreeF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyFreeF90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type=GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN ... | # Parameter definitions for thorn WaveToyFreeF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"ra... | # Schedule definitions for thorn WaveToyFreeF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyFreeF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyFreeF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyFreeF90_Evolution as WaveToy_Evolution at EV... | WaveToy.F90 | /*@@
@file WaveToy.F90
@date
@author Tom Goodale
@desc
Evolution routines for the wave equation solver
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
/*@@
@routine WaveToyF... |
CactusWave/WaveToyFreeF90 | https://bitbucket.org/cactuscode/cactuswave.git | # Configuration definition for thorn CactusWave/WaveToyFreeF90
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn WaveToyFreeF90
# $Header$
implements: wavetoy
inherits: grid
USES INCLUDE: Symmetry.h
public:
cctk_real scalarevolve type=GF Timelevels=3
{
phi
} "The evolved scalar field"
CCTK_INT FUNCTION Boundary_SelectVarForBC(CCTK_POINTER_TO_CONST IN GH, \
CCTK_INT IN faces, CCTK_INT IN ... | # Parameter definitions for thorn WaveToyFreeF90
# $Header$
restricted:
KEYWORD bound "Type of boundary condition to use"
{
"none" :: "Apply no boundary condition"
"flat" :: "Flat (von Neumann, n grad phi = 0) boundary condition"
"static" :: "Static (Dirichlet, dphi/dt=0) boundary condition"
"ra... | # Schedule definitions for thorn WaveToyFreeF90
# $Header$
STORAGE: scalarevolve[3]
schedule WaveToyFreeF90_Startup at STARTUP
{
LANG: Fortran
} "Register banner"
schedule WaveToyFreeF90_InitSymBound at BASEGRID
{
LANG: Fortran
} "Schedule symmetries"
schedule WaveToyFreeF90_Evolution as WaveToy_Evolution at EV... | make.code.defn | # Main make.code.defn file for thorn WaveToy
# $Header$
# Source files in this directory
SRCS = InitSymBound.F90 WaveToy.F90 Startup.F90
# Subdirectories containing source files
SUBDIRS =
|
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | Trace.c | /*@@
@file Trace.c
@date Thu Apr 25 16:35:04 2002
@author Tom Goodale
@desc
Calculates the trace of things
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "ADMAnalysis.h"
static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusEinstein_ADMAnalysis_Trace_c)
/**... |
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | ParamCheck.c | /*@@
@file ParamCheck.c
@date Thu Apr 25 19:02:51 2002
@author Tom Goodale
@desc
Parameter checking stuff for ADMAnalysis
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
static const char *rcsid = "$Header$";
CCTK_FILEVE... |
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | ADMAnalysis.h | /*@@
@header ADMAnalysis.h
@date Thu Apr 25 16:36:20 2002
@author Tom Goodale
@desc
@enddesc
@version $Header$
@@*/
#ifndef _ADMAnalysis_H_
#define _ADMAnalysis_H_ 1
#ifdef __cplusplus
extern "C"
{
#endif
void ADMAnalysis_CartToSphere(const CCTK_INT *lsh,
... |
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | Analysis.c | /*@@
@file Analysis.c
@date Thu Apr 25 18:46:27 2002
@author Tom Goodale
@desc
Routines to do the various analysis tasks.
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "ADMAnalysis.h"
static const char *rcsid ... |
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | Symmetry.c | /*@@
@file Symmetry.c
@date Tue Jul 30 11:15:23 CEST 2002
@author David Rideout
@desc
Symmetry registration stuff for ADMAnalysis
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "Symmetry.h"
static const char *rcsid = "$Header$";
CCTK_FIL... |
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | Ricci.c | /*@@
@file Ricci.c
@date Tue May 14 04:38:49 2002
@author Ian Hawke
@desc
Routine to calculate the Ricci tensor and scalar. These are taken
straight from ADMMacros.
@enddesc
@version $Header$
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "ADMAnalysis.h"
static... |
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | make.code.defn | # Main make.code.defn file for thorn ADMAnalysis
# $Header$
# Source files in this directory
SRCS = ParamCheck.c Symmetry.c Analysis.c CartToSphere.c Ricci.c Trace.c
# Subdirectories containing source files
SUBDIRS =
|
EinsteinAnalysis/ADMAnalysis | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/ADMAnalysis
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn ADMAnalysis
# $Header$
implements: ADMAnalysis
inherits: ADMBase, StaticConformal, Grid, ADMMacros
USES INCLUDE HEADER: Symmetry.h
void FUNCTION CartToSphere(CCTK_INT IN ARRAY lsh, \
CCTK_INT IN r2norm, \
CCTK_REAL IN ARRAY x, \
CCTK_REAL IN AR... | # Parameter definitions for thorn ADMAnalysis
# $Header$
shares: ADMBase
USES KEYWORD metric_type
private:
BOOLEAN normalize_dtheta_dphi "Project angular components onto r*dtheta and r*sin(theta)*dphi?"
{
} "no"
BOOLEAN ricci_persist "Keep storage of the Ricci tensor and scalar around?"
{
} "no"
INT ricci_tim... | # Schedule definitions for thorn ADMAnalysis
# $Header$
SCHEDULE ADMAnalysis_ParamCheck AT CCTK_PARAMCHECK
{
LANG: C
OPTIONS: global
} "Check that the metric_type is recognised"
SCHEDULE ADMAnalysis_RegisterSymmetry AT CCTK_WRAGH
{
LANG: C
OPTIONS: global
} "Register symmetry of Ricci tensor and scalar"
SCH... | CartToSphere.c | /*@@
@file CartToSphere.c
@date Thu Apr 25 16:04:53 2002
@author Tom Goodale
@desc
@enddesc
@version $Header
@@*/
#include "cctk.h"
#include <math.h>
#include "ADMAnalysis.h"
static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusEinstein_ADMAnalysis_CartToSphere_c)
/*... |
EinsteinAnalysis/ADMMass | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Interface definition for thorn ADMMass
# $Header$
implements: ADMMass
inherits: ADMBase ADMMacros StaticConformal SpaceMask
USES INCLUDE: SpaceMask.h
CCTK_INT FUNCTION GetDomainSpecification \
(CCTK_INT IN size, \
CCTK_REAL OUT ARRAY physical_min, \
CCTK_REAL OUT ARRAY physical_max, \
CCTK_REAL OUT ARRA... | # Parameter definitions for thorn ADMMass
# $Header$
CCTK_INT ADMMass_number "number of measurements" STEERABLE=ALWAYS
{
0: :: "0 or positive"
} 1
CCTK_REAL ADMMass_x_min[100] "x position of the leftmost yz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} -100.0
CCTK_REAL ADMMass_x_max[100] "x ... | # Schedule definitions for thorn ADMMass
# $Header$
STORAGE:ADMMass_LoopCounterG
STORAGE:ADMMass_Masses
###############################################################################
# The storage of the following grid functions at all times is necessary only
# because carpet would allocate them only for the finest l... | loop.c | #include <cctk.h>
#include <cctk_Arguments.h>
#include <cctk_Parameters.h>
void ADMMass_InitLoopCounter(CCTK_ARGUMENTS);
void ADMMass_SetLoopCounter(CCTK_ARGUMENTS);
void ADMMass_Loop(CCTK_ARGUMENTS);
/* Initialise the loop counter */
void ADMMass_InitLoopCounter(CCTK_ARGUMENTS)
{
DECLARE_CCTK_ARGUMENTS
DE... | |
EinsteinAnalysis/ADMMass | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Interface definition for thorn ADMMass
# $Header$
implements: ADMMass
inherits: ADMBase ADMMacros StaticConformal SpaceMask
USES INCLUDE: SpaceMask.h
CCTK_INT FUNCTION GetDomainSpecification \
(CCTK_INT IN size, \
CCTK_REAL OUT ARRAY physical_min, \
CCTK_REAL OUT ARRAY physical_max, \
CCTK_REAL OUT ARRA... | # Parameter definitions for thorn ADMMass
# $Header$
CCTK_INT ADMMass_number "number of measurements" STEERABLE=ALWAYS
{
0: :: "0 or positive"
} 1
CCTK_REAL ADMMass_x_min[100] "x position of the leftmost yz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} -100.0
CCTK_REAL ADMMass_x_max[100] "x ... | # Schedule definitions for thorn ADMMass
# $Header$
STORAGE:ADMMass_LoopCounterG
STORAGE:ADMMass_Masses
###############################################################################
# The storage of the following grid functions at all times is necessary only
# because carpet would allocate them only for the finest l... | surface_integral.c | /*@@
@file surface_integral.c
@date Wed Oct 5 10:02:12 2005
@author Frank Loeffler and Luca Baiotti
@desc
Computes the ADM mass as a surface integral.
@enddesc
@@*/
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <limits.h>
#include <cctk... | |
EinsteinAnalysis/ADMMass | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Interface definition for thorn ADMMass
# $Header$
implements: ADMMass
inherits: ADMBase ADMMacros StaticConformal SpaceMask
USES INCLUDE: SpaceMask.h
CCTK_INT FUNCTION GetDomainSpecification \
(CCTK_INT IN size, \
CCTK_REAL OUT ARRAY physical_min, \
CCTK_REAL OUT ARRAY physical_max, \
CCTK_REAL OUT ARRA... | # Parameter definitions for thorn ADMMass
# $Header$
CCTK_INT ADMMass_number "number of measurements" STEERABLE=ALWAYS
{
0: :: "0 or positive"
} 1
CCTK_REAL ADMMass_x_min[100] "x position of the leftmost yz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} -100.0
CCTK_REAL ADMMass_x_max[100] "x ... | # Schedule definitions for thorn ADMMass
# $Header$
STORAGE:ADMMass_LoopCounterG
STORAGE:ADMMass_Masses
###############################################################################
# The storage of the following grid functions at all times is necessary only
# because carpet would allocate them only for the finest l... | make.code.defn | # Main make.code.defn file for thorn ADMMass
# $Header$
# Source files in this directory
SRCS = surface_integral.c volume_integral.c loop.c
# Subdirectories containing source files
SUBDIRS =
| |
EinsteinAnalysis/ADMMass | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Interface definition for thorn ADMMass
# $Header$
implements: ADMMass
inherits: ADMBase ADMMacros StaticConformal SpaceMask
USES INCLUDE: SpaceMask.h
CCTK_INT FUNCTION GetDomainSpecification \
(CCTK_INT IN size, \
CCTK_REAL OUT ARRAY physical_min, \
CCTK_REAL OUT ARRAY physical_max, \
CCTK_REAL OUT ARRA... | # Parameter definitions for thorn ADMMass
# $Header$
CCTK_INT ADMMass_number "number of measurements" STEERABLE=ALWAYS
{
0: :: "0 or positive"
} 1
CCTK_REAL ADMMass_x_min[100] "x position of the leftmost yz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} -100.0
CCTK_REAL ADMMass_x_max[100] "x ... | # Schedule definitions for thorn ADMMass
# $Header$
STORAGE:ADMMass_LoopCounterG
STORAGE:ADMMass_Masses
###############################################################################
# The storage of the following grid functions at all times is necessary only
# because carpet would allocate them only for the finest l... | volume_integral.c | /*@@
@file volume_integral.c
@date Wed Oct 5 10:18:34 2005
@author Frank Loeffler and Luca Baiotti
@desc
Computes the ADM mass as a volume integral.
@enddesc
@@*/
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <cctk.h>
#include <cctk_Arg... | |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_shift.F | /*@@
@file AHFinder_shift.F
@date May 2000
@author Miguel Alcubierre
@desc
Set up horizon (area) locking shift. The area
locking shift is obtained from the following
expression:
a __a
beta = b \/ f
whe... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_mask.F | /*@@
@file AHFinder_mask.F
@date November 1998
@author Miguel Alcubierre
@desc
Set up horizon mask for black hole excision.
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
subroutine AHFinder_mask(CCTK_ARG... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_int.F |
/*@@
@file AHFinder_int.F
@date April 1998
@author Miguel Alcubierre
@desc
Find surface integrals. The integrals are done
in parallel, but the number of processors is
assumed to be either the square of an integer
or a power of two (if this is not... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_min.F | /*@@
@file AHFinder_min.F
@date April 1998
@author Miguel Alcubierre
@desc
Minimization routine.
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
subroutine AHFinder_min(CCTK_ARGUMENTS,NN,status,logf)
use AHFinder_dat
im... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_gau.F | /*@@
@file AHFinder_gau.F
@date October 1998
@author Miguel Alcubierre
@desc
Find gaussian curvature of surface. The gaussian
curvature is defined as R/2, where R is the Ricci
scalar of the induced 2-geometry of the surface.
As an extra "goody",... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_dis.F | /*@@
@file AHFinder_dis.F
@date September 2001
@author Miguel Alcubierre
@desc
Routine to calculate proper distances between horizons.
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
subroutine AHFinder_dis... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder.F | /*@@
@file AHFinder.F
@date April 1998
@author Miguel Alcubierre
@desc
Find an apparent horizon using a spherical harmonic
expansion and either a minimization or Gundlach's
fast flow algorithm.
Cactus4 by Lars Nerger / Gerd Lanfermann
@enddesc
... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_leg.F | /*@@
@file AHFinder_leg.F
@date April 1998
@author Miguel Alcubierre
@desc
Associated Legendre functions.
@enddesc
@@*/
#include "cctk.h"
CCTK_REAL function LEGEN(L,M,X)
! This function computes the associated Legendre polynomial
! P^M_L(X). Here M and L are integ... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_fun.F | /*@@
@file AHFinder_fun.F
@date April 1998
@author Miguel Alcubierre
@desc
Find horizon function.
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
subroutine AHFinder_fun(CCTK_ARGUMENTS)
use AHFinder... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | make.code.defn | # Main make.code.defn file for thorn AHFinder
# Source files in this directory
SRCS += AHFinder_dat.F AHFinder.F \
AHFinder_fun.F AHFinder_exp.F AHFinder_dis.F AHFinder_int.F \
AHFinder_min.F AHFinder_pow.F AHFinder_leg.F \
AHFinder_flow.F AHFinder_mask.F AHFinder_output.F \
AHFinder_fi... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_exp.F | /*@@
@file AHFinder_exp.F
@date April 1998
@author Miguel Alcubierre
@desc
Here I calculate the (normalized) expansion of the
horizon function. The expansion is defined by the
following expression:
__2 2 / ab __a__b ... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_flow.F | /*@@
@file AHFinder_flow.F
@date November 1998
@author Miguel Alcubierre
@desc
Master routine to control the iterations for
the flow algorithm.
The flow algorithm used here is that of Carsten Gunlach:
Phys. Rev. D 57, 863 (1998).
@enddesc
@@... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_output.F | /*@@
@file AHFinder_output.F
@date Fri 2 Aug 2001
@author Thomas Radke
@desc
Does the output of AHFinder data into files.
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
subroutine AHFinder_InitOutput(CCTK... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_ParamCheck.F90 | ! @@
! @file ParamCheck.F90
! @date Mon Apr 29 17:51:25 2002
! @author Peter Diener
! @desc
! Parameter checking stuff for AHFinder
! @enddesc
! @version $Header$
! @@
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
! CCTK_FILEVERSION(Cactus... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_dat.F | /*@@
@file AHFinder_dat.F
@date April 1998
@author Miguel Alcubierre
@desc
F90 module containing data to be shared by
the different subroutines.
For the meaning of the spectral components of
the different flows see:
C. Gundlach, Ph... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_pow.F | /*@@
@file AHFinder_pow.F
@date April 1998
@author Miguel Alcubierre
@desc
Multidimensional minimization routines taken
from Numerical Recipes. The routines have some
modifications to adapt them to the specific problem
we are trying to solve.
... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | SetSym.F | /*@@
@file SetSym.F
@date March 2000
@author Miguel Alcubierre
@desc
Sets the symmetries for the AHF grid functions.
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"
/*@@
@routine AHFinder_SetSym
@date ... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_calcsigma.F | /*@@
@file AHFinder_calcsigma.F
@date July 1999
@author Lars Nerger
@desc
Calculate weight sigma for Nakamura flow
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
subroutine AHFinder_calcsigma(CCTK_ARGUMENTS,xp,yp,zp,gupij,sigma)
... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | Output.c | /*@@
@file Output.c
@date November 10 2001
@author Gabrielle Allen
@desc
Functions to deal with making AHFinder an IO method
@enddesc
@version $Id$
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusEinste... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_find3.F | /*@@
@file AHFinder_find3.F
@date March 1999
@author Lars Nerger
@desc
Muliplicate gridfunctions for final grid function
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
! To output single gridfunctions when searching for 3 horizons
! ... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | AHFinder_initguess.F | /*@@
@file AHFinder_initguess.F
@date July 1999
@author Miguel Alcubierre
@desc
Find initial guess for minimization algorithm
@enddesc
@@*/
#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_Arguments.h"
subroutine AHFinder_initguess(CCTK_ARGUMENTS,rmx)
us... |
EinsteinAnalysis/AHFinder | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | # Configuration definition for thorn CactusEinstein/AHFinder
# $Header$
REQUIRES CartGrid3D
| # Interface definition for thorn AHFinder
# $Header$
implements: AHFinder
inherits: ADMBase StaticConformal SpaceMask Grid IO ADMMacros
SUBROUTINE SetDriftCorrectPosition ( CCTK_POINTER_TO_CONST IN GH_Pointer, \
CCTK_REAL IN x, \
CCTK_REAL IN ... | # Parameter definitions for thorn AHFinder
# $Header$
#################################
### RESTRICTED PARAMETERS ###
#################################
restricted:
BOOLEAN ahf_active "Activate AHFinder?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN ahf_persists "Do the finder grid functions stay around?"
{
} "no"
##... | # Schedule definitions for thorn AHFinder
#c/*@@
#c @date July 1999
#c @author Lars Nerger
#c @@*/
schedule AHFinder_SetSym at CCTK_WRAGH
{
LANG: Fortran
OPTIONS: global
} "Set symmetries for AHFinder grid functions"
schedule AHFinder_Startup at CCTK_STARTUP
{
LANG: C
OPTIONS: global
} "Register AHFi... | Startup.c | /*@@
@file Startup.c
@date Sat 10th November 2001
@author Gabrielle Allen
@desc
Startup routines for AHFinder.
@enddesc
@version $Id$
@@*/
#include "cctk.h"
static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusEinstein_AHFinder_Startup_c)
int AHFinder_TimeFo... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | make.configuration.defn | # make.configuration.defn file for thorn AHFinderDirect
ALL_UTILS += AH2xdmf.py
|
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | make.configuration.deps | # Copy python scripts
$(UTIL_DIR)/%.py: $(PACKAGE_DIR)/EinsteinAnalysis/AHFinderDirect/src/util/%.py
@echo "Copying $* from $< to $(UTIL_DIR)"
-$(MKDIR) $(MKDIRFLAGS) $(UTIL_DIR) 2> /dev/null
cp $< $@
|
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | README | This is the top-level source directory for the AHFinderDirect thorn.
See ../doc/ for further documentation.
Files in this directory:
CODESTYLE documents some general programming conventions I have
used in this thorn
make.code.defn usual Cactus definition of subdirectories
Subdirectories which are *not* used direc... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | make.code.defn | # Cactus specification of where source code lives for this thorn
# $Header$
# Source files in this directory
SRCS =
# Subdirectories containing source files (normal compilation)
# ... directories are listed in bottom-up order
SUBDIRS = jtutil patch \
sparse-matrix/ilucg sparse-matrix/umfpack \
el... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | CODESTYLE | AHFinderDirect Code Style
=========================
$Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/CODESTYLE,v 1.6 2003-08-18 10:01:01 jthorn Exp $
This file documents some general programming conventions used in this
thorn.
File Naming
===========
*.c, *.h C code, headers
*.cc, *.hh ... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | PORTING.OUTSIDE.CACTUS | Porting AHFinderDirect to a non-Cactus Numerical Relativity Code
================================================================
$Header$
As you almost certainly already know if you're reading this file,
AHFinderDirect is currently implemented as a thorn in the Cactus
computational toolkit. However, AHFinderDirect i... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | misc/ah.movie | #!/usr/bin/perl -w
# $Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/misc/ah.movie,v 1.1 2002-11-27 16:09:15 jthorn Exp $
################################################################################
# global constants
my $true = 1;
my $false = 0;
my $infinity = 9e99;
# defaults
m... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | misc/README | This directory contains miscellaneous source code that doesn't fit
anywher else.
h.movie
This is a Perl script to generate gnuplot commands to show
a movie of the patch shapes in an evolution. To use it,
type the gnuplot commands
load '<h.movie --setup'
then set the xyz ranges and any other options. Then
loa... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | misc/select.plane | #!/usr/bin/perl -w
use strict;
my $true = 1;
my $false = 0;
########################################
my $usage_msg = <<'EOF';
Usage:
select.plane [ xy | xz | yz ]
This script reads an AHFinderDirect horizon-shape data file from
standard input, with file format
dpx dpy radius x y z
selects the subset of the data ... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | misc/select.patch | #!/usr/local/bin/perl -w
# $Header$
#
# Usage:
# select.patch patch.name <file.adat >file.patch.adat
#
# This filter prints that part of standard input starting with a
# line of the form (eg)
# ## +z patch
# and continuing up to and including two consecutive newlines.
#
use strict;
if (scalar(@ARGV) != 1)
{ die "us... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | misc/mpp | #!/usr/local/bin/perl -w
# $Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/misc/mpp,v 1.2 2002-09-16 14:17:44 jthorn Exp $
my $help_msg = <<'EOF';
Usage:
mpp [ -Dfoo -DBAR ... ] [ --debug ] <input.maple >output.mm
or
mpp --help
This program is a preprocessor for Maple source... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/array.cc | // array.cc -- array template classes
// $Header$
//
// jtutil::array1d::array1d - 1D array template constructor
// jtutil::array1d::~array1d - 1D array template destructor
//
// jtutil::array2d::array2d - 2D array template constructor
// jtutil::array2d::~array2d - 2D array template destructor
//
// jtutil::array3d::a... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_array2.cc | // test_array2.cc -- test driver for array.hh classes
// $Header$
#include <assert.h>
#include <math.h>
#include <stdio.h>
#include "stdc.h"
#include "util.hh"
#include "array.hh"
void print( jtutil::array2d<double>& Aref);
void cprint(const jtutil::array2d<double>& Aref);
int main()
{
const int imin = 3, ima... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_linear_map.cc | // test_linear_map.cc -- test driver for linear_map class
// $Header$
#include <assert.h>
#include <stdio.h>
#include "stdc.h"
#include "util.hh"
#include "linear_map.hh"
using jtutil::fuzzy;
using jtutil::linear_map;
//******************************************************************************
//
// Usage:
// t... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/miscfp.cc | // miscfp.cc -- misc floating-point functions
//
// jtutil::signum - sign of a floating point number
// jtutil::hypot3 - 3D Euclidean distance
// jtutil::arctan_xy - 4-quadrant arc tangent
// jtutil::modulo_reduce - reduce an angle modulo 2*pi radians (360 degrees)
// jtutil::zero_C_array - set a C-style array to all ... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/cpm_map.hh | // cpm_map.hh -- "integer +/-" mapping i --> j = const +/- i
// $Header$
//
// cpm_map - "integer +/-" mapping
//
#ifndef AHFINDERDIRECT__CPM_MAP_HH
#define AHFINDERDIRECT__CPM_MAP_HH
//
// prerequisites
// <assert.h>
// "stdc.h"
// "util.hh" // for jtutil::how_many_in_range()
//
//
// This class represents a unit... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/round.cc | // round.hh -- template for rounding floating point values
// $Header$
//
// *** Implementation Notes ***
// jtutil::round::to_integer
// jtutil::round::floor
// jtutil::round::ceiling
//
// ***** template instantiations *****
//
#include <stdlib.h>
#include "stdc.h"
#include "util.hh"
//****************************... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/cpm_map.cc | // cpm_map.cc -- "integer +/-" mapping i --> j = const +/- i
// $Header$
//
// jtutil::cpm_map::cpm_map # mirror map, specified by fixed point
// jtutil::cpm_map::cpm_map # generic map specified by sample point & sign
// jtutil::cpm_map::cpm_map # generic map specified by *fp* sample point & sign
//
// ***** templa... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_fuzzy.cc | // test_fuzzy.cc -- test driver for fuzzy<float> and fuzzy<double>
// $Header$
//
// main
// check<fp_t>
// check_binary<fp_t>
// check_unary<fp_t>
// *** template instantiations
#include <stdio.h>
#include <assert.h>
#include "stdc.h"
#include "util.hh"
using jtutil::error_exit;
using jtutil::fuzzy;
// prototypes
t... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_error_exit.cc | // test_error_exit.cc -- test driver for error_exit() function
// $Header$
#include <stdio.h>
#include "stdc.h"
using jtutil::error_exit;
int main()
{
error_exit(ERROR_EXIT, "two+two=%.3f", 4.0); /*NOTREACHED*/
return 0;
}
|
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_cpm_map.cc | // test_cpm_map.cc -- test driver for cpm_map class
// $Header$
#include <assert.h>
#include <stdio.h>
#include "stdc.h"
#include "util.hh"
#include "cpm_map.hh"
using jtutil::cpm_map;
//******************************************************************************
// prototypes
void test_shift_map(int min_i, int ... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/array.hh | // array.hh -- array template classes
// $Header$
//
// array1d - 1D array template
// array2d - 2D array template
// array3d - 3D array template
#ifdef NOT_USED
// array4d - 4D array template
#endif
//
#ifndef AHFINDERDIRECT__ARRAY_HH
#define AHFINDERDIRECT__ARRAY_HH
//
// prerequisites:
// <assert.h>
// <stdd... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/README | This directory holds low-level utility code in the C++ namespace jtutil::.
This code is not specific to this project -- it's things like min/max
templates, multidimensional array classes, fuzzy arithmetic routines, etc.
array<fp>
is a template class (templated on the integer or floating-point
type of the array eleme... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/error_exit.cc | // error_exit.cc -- print an error message and exit (= CCTK_VWarn() wrapper)
// $Header$
//
// error_exit -- print an error message and exit (= CCTK_VWarn() wrapper)
//
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#ifdef STANDALONE_TEST
#include "fake_cctk.h"
#else
#include "cctk... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_array.cc | // test_array.cc -- test driver for array.hh classes
// $Header$
#include <assert.h>
#include <stdio.h>
#include <math.h>
#include "stdc.h"
#include "util.hh"
#include "array.hh"
using jtutil::fuzzy;
using jtutil::array1d;
using jtutil::array2d;
using jtutil::array3d;
#ifdef NOT_USED
using jtutil::array4d;
#endif
/... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/norm.cc | // norm.cc -- compute norms
// $Header$
//
// jtutil::norm::data
// jtutil::norm::mean
// jtutil::norm::two_norm
// jtutil::norm::rms_norm
//
// ***** template instantiations *****
//
#include <math.h>
#include <assert.h>
#include <stdlib.h>
#include "util.hh"
//*****************************************************... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/Makefile.standalone | # Makefile for standalone test drivers in this directory
# $Header$
#
# CC, CXX = C and C++ compilers. Defaults are gcc and g++ if
# variables aren't set from command line or environment.
# CC_FLAGS, CXX_FLAGS = C++ compiler flags. Defaults are
# $(STD_GCC_FLAGS) -I.. -g
# and
# $(STD_GXX_FLAGS) -I..... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/make.code.defn | # Cactus specification of things to be compiled in this directory
# $Header$
# Source files in this directory
SRCS = array.cc cpm_map.cc fuzzy.cc linear_map.cc norm.cc round.cc \
miscfp.cc error_exit.cc
# Subdirectories containing source files
SUBDIRS =
|
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/linear_map.hh | // linear_map.hh -- linear mapping from integers <--> floating point values
// $Header$
//
// jtutil::linear_map - linear mapping from integers <--> floating point values
//
#ifndef AHFINDERDIRECT__LINEAR_MAP_HH
#define AHFINDERDIRECT__LINEAR_MAP_HH
//
// prerequisites
// <assert.h>
// "stdc.h"
// "util.hh" ... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_norm.cc | // test_norm -- quick-n-dirty test of norm template class
// $Header$
#include <stdio.h>
#include <assert.h>
#include <math.h>
#include "stdc.h"
#include "util.hh"
using jtutil::norm;
using jtutil::fuzzy;
int main()
{
norm<double> foo;
assert( foo.is_empty() );
assert(! foo.is_nonempty());
foo.data(3.0);
assert(!... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/fuzzy.cc | // fuzzy.cc -- template for fuzzy comparisons et al on floating point values
// $Header$
//
// jtutil::fuzzy::tolerance - comparison tolerance
// jtutil::fuzzy::EQ
// jtutil::fuzzy::is_integer
// jtutil::fuzzy::floor
// jtutil::fuzzy::ceiling
//
// ***** template instantiations and specializations *****
//
#include <s... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_round.cc | // test_round.cc -- test driver for round<float> and round<double>
// $Header$
#include <stdio.h>
#include <assert.h>
#include "stdc.h"
#include "util.hh"
using jtutil::round;
//
// Usage:
// test_round x
//
int main(int argc, const char* const argv[])
{
for (int i = -10 ; i <= +10 ; ++i)
{
printf("testing %d +/-... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/test_modulo.cc | // test_modulo -- quick-n-dirty test of modulo_reduce()
// $Header$
#include <stdio.h>
#include <assert.h>
#include "stdc.h"
#include "util.hh"
using jtutil::error_exit;
using jtutil::fuzzy;
// prototypes
void tryit(double x, double xmod, double xmin, double xmax, double correct);
//********************************... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/linear_map.cc | // linear_map.cc -- linear mapping from integers <--> floating point values
// $Header$
//
// jtutil::linear_map::linear_map - basic ctor
// jtutil::linear_map::linear_map - ctor for subrange of existing linear_map
// jtutil::linear_map::fp_int_of_fp - convert fp --> int coord, return as fp
// jtutil::linear_map::int_o... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | jtutil/util.hh | // util.hh -- utility stuff for this thorn (all lives in namespace jtutil::)
// $Header$
#ifndef AHFINDERDIRECT__UTIL_HH
#define AHFINDERDIRECT__UTIL_HH
//
// prerequisites:
// "stdc.h"
//
namespace jtutil
{
//******************************************************************************
// how many integers ar... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/row_sparse_Jacobian.hh | // Jacobian.hh -- data structures for the Jacobian matrix
// $Header$
//
#ifdef HAVE_ROW_SPARSE_JACOBIAN
// row_sparse_Jacobian -- Jacobian stored as row-oriented sparse matrix
#endif
#ifdef HAVE_ROW_SPARSE_JACOBIAN__ILUCG
// row_sparse_Jacobian__ILUCG -- ... with ILUCG linear solver
#endif
#ifdef HAVE_ROW_SPARSE_JACOB... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/row_sparse_Jacobian.cc | // row_sparse_Jacobian.cc -- data structures for row-sparse Jacobian matrices
// $Header$
//
// <<<literal contents of "ilucg.h">>>
// data structures local to this file
// prototypes for functions local to this file
//
#ifdef HAVE_ROW_SPARSE_JACOBIAN
// row_sparse_Jacobian::row_sparse_Jacobian
// row_sparse_Jacobian::... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/README | This directory contains code for solving elliptic systems on our
($S^2$ topology) multipatch system in ../patch/.
The main files are as follows:
Jacobian.{hh,cc}
These define a Jacobian class. This is a generic interface
(a C++ abstract base class) to set up a Jacobian matrix and
solve linear systems with this ... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/dense_Jacobian.cc | // dense_Jacobian.cc -- dense-matrix Jacobian
// $Header$
//
// <<<literal contents of "lapack.hh">>>
//
#ifdef HAVE_DENSE_JACOBIAN
// dense_Jacobian::dense_Jacobian
// dense_Jacobian::zero_matrix
#endif
//
#ifdef HAVE_DENSE_JACOBIAN__LAPACK
// dense_Jacobian__LAPACK::dense_Jacobian__LAPACK
// dense_Jacobian__LAPACK::... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/make.code.defn | # Cactus specification of things to be compiled in this directory
# $Header$
# Source files in this directory
SRCS = Jacobian.cc \
dense_Jacobian.cc lapack_wrapper.F77 \
row_sparse_Jacobian.cc
# Subdirectories containing source files
SUBDIRS =
|
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/Jacobian.hh | // Jacobian.hh -- generic data structures for the Jacobian matrix
// $Header$
//
// Jacobian -- ABC to describe Jacobian matrix
// decode_Jacobian_store_solve_method - decode string into internal enum
// new_Jacobian - factory method
//
#ifndef AHFINDERDIRECT__JACOBIAN_HH
#define AHFINDERDIRECT__JACOBIAN_HH
//
// pre... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/lapack_wrapper.F77 | c lapack_wrapper.f -- wrapper routines for LAPACK [sd]gecon()
c $Header$
c
c These subroutines are wrappers around the LAPACK [sd]gecon() subroutines.
c These subroutines take only integer/real/double precision arguments,
c avoiding problems with C/C++ --> Fortran passing of the character string
c arguments used by [s... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/Jacobian.cc | // Jacobian.cc -- generic routines for the Jacobian matrix
// $Header$
//
// <<<literal contents of "lapack.hh">>>
//
// decode_Jacobian_store_solve_method -- decode string into internal enum
// new_Jacobian -- object factory for Jacobian objects
//
#include <stdio.h>
#include <assert.h>
#include <math.h>
#include <s... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/lapack.h | /* lapack.h -- C/C++ prototypes for (some) BLAS+LAPACK+wrapper routines */
/* $Header$ */
/*
* prerequisites:
* "cctk.h"
* "config.h" // for "integer" = Fortran integer
*/
#ifdef __cplusplus
extern "C"
{
#endif
/*
* ***** BLAS *****
*/
integer CCTK_FCALL
CCTK_FNAME(isamax)(const integer* N, const floa... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | elliptic/dense_Jacobian.hh | // dense_Jacobian.hh -- dense-matrix Jacobian
// $Header$
//
#ifdef HAVE_DENSE_JACOBIAN
// dense_Jacobian -- Jacobian stored as a dense matrix
#endif
#ifdef HAVE_DENSE_JACOBIAN__LAPACK
// dense_Jacobian__LAPACK -- dense_Jacobian with LAPACK linear solver
#endif
//
#ifndef AHFINDERDIRECT__DENSE_JACOBIAN_HH
#define AHF... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | util/AH2xdmf.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author: Frank Löffler
# license: CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/)
from __future__ import print_function
import atexit
import numpy as np
import h5py, math, re, sys, os, os.path, fnmatch
if len(sys.argv) == 2 and sys.argv[1] == "--help":
print("... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | gr/curvature.maple | # curvature.maple - evaluate various "derivatives of the metric" quantities
# $Header$
#
# curvature - overall driver
## inverse_metric_gradient - compute partial_d_g_uu
## metric_det_gradient - compute partial_d_ln_sqrt_g
#
################################################################################
#############... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | gr/gr.hh |
// gr.hh -- header file for general relativity code
// $Header$
// everything in this file is inside this namespace
namespace AHFinderDirect
{
//******************************************************************************
//
// number of spatial dimensions in the main Cactus grid
// and in our trial-horizon-su... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | gr/gr_gfas.minc | # Maple include file listing all gfa functional-dependence forms
# $Header$
g_dd,
K_dd,
g_uu, g_uu__fnd,
K_uu, K_uu__fnd,
K, K__fnd,
partial_d_g_dd,
partial_d_ln_sqrt_g, partial_d_ln_sqrt_g__fnd,
partial_d_g_uu, partial_d_g_uu__fnd,
h, h__fnd,
s_d, s_d__fnd,
partial_d_s_d, partial_d_s_d__fnd,
n_u, n_u__fnd,
Th... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | gr/horizon.maple | # horizon.maple - evaluate $H$ = LHS of horizon function
# $Header$
#
# horizon - overall driver
## non_unit_normal - compute s_d
## non_unit_normal_deriv - compute partial_d_s_d
## expansion - compute Theta_[ABCD],Theta = fn(s_d__fnd) = fn(h)
## expansion_Jacobian - compute Jacobian coeffs for Theta_[ABCD], Theta
#
#... |
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | gr/doit.maple | # top-level Maple file to read/run all code in this directory
# $Header$
read "../maple/setup.mm";
read "setup_gr_gfas.mm";
setup_gr_gfas();
read "auxiliary.mm";
read "curvature.mm";
read "horizon.mm";
`saveit/level` := 10;
auxiliary(true);
curvature(true);
horizon(true);
|
EinsteinAnalysis/AHFinderDirect | https://bitbucket.org/einsteintoolkit/einsteinanalysis.git | REQUIRES THORNS: SpaceMask
OPTIONAL HDF5
{
}
| # Interface definition for thorn AHFinderDirect
# $Header$
implements: AHFinderDirect
inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO
# include file provided by SpaceMask
USES INCLUDE: SpaceMask.h
################################################################################
# we use a mask i... | # Parameter definitions for thorn AHFinderDirect
# $Header$
################################################################################
#
# ***** interface to the rest of Cactus *****
#
# we may need to look at some grid:: parameters to choose our patch system type
# note our access is read-only
shares: grid
US... | # Schedule definitions for thorn AHFinderDirect
# $Header$
storage: ah_radius ah_origin ah_centroid ah_flags
if (metric_timelevels == 1)
{
storage: ahmask[1]
}
else if (metric_timelevels == 2)
{
storage: ahmask[2]
}
else if (metric_timelevels == 3)
{
storage: ahmask[3]
}
#
# setup
#
schedule AHFinderDirect_set... | gr/maple.log | RedHat v <9 or other Linux present, starting standard mode...
|\^/| Maple 7 (IBM INTEL LINUX)
._|\| |/|_. Copyright (c) 2001 by Waterloo Maple Inc.
\ MAPLE / All rights reserved. Maple is a registered trademark of
<____ ____> Waterloo Maple Inc.
| Type ? for help.
# top-level Maple file to r... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.