From bfd7ae0ce72db0b8c327a986ab50d8792d592ad7 Mon Sep 17 00:00:00 2001 From: hawke Date: Fri, 3 May 2002 14:41:55 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/ADMCoupling/trunk@3 a4c7b220-a359-4231-b37a-efab6cb7d3ee --- README | 9 +++++++++ doc/auto/documentation.el | 13 +++++++++++++ doc/documentation.tex | 30 ++++++++++++++++++++++++++++++ interface.ccl | 4 ++++ param.ccl | 2 ++ schedule.ccl | 2 ++ src/make.code.defn | 9 +++++++++ 7 files changed, 69 insertions(+) create mode 100644 README create mode 100644 doc/auto/documentation.el create mode 100644 doc/documentation.tex create mode 100644 interface.ccl create mode 100644 param.ccl create mode 100644 schedule.ccl create mode 100644 src/make.code.defn diff --git a/README b/README new file mode 100644 index 0000000..6107c98 --- /dev/null +++ b/README @@ -0,0 +1,9 @@ +Cactus Code Thorn ADMCoupling +Authors : Ian Hawke +CVS info : $Header$ +-------------------------------------------------------------------------- + +Purpose of the thorn: + +The "friend of a friend" thorn to help matter / spacetime coupling. Does nothing itself. + diff --git a/doc/auto/documentation.el b/doc/auto/documentation.el new file mode 100644 index 0000000..f29a6c2 --- /dev/null +++ b/doc/auto/documentation.el @@ -0,0 +1,13 @@ +(TeX-add-style-hook "documentation" + (function + (lambda () + (LaTeX-add-labels + "sec:aux") + (TeX-run-style-hooks + "latex2e" + "art10" + "article" + "interface" + "param" + "schedule")))) + diff --git a/doc/documentation.tex b/doc/documentation.tex new file mode 100644 index 0000000..bc570bd --- /dev/null +++ b/doc/documentation.tex @@ -0,0 +1,30 @@ +\documentclass{article} + +\begin{document} + +\title{ADMCoupling} +\author{Ian Hawke} +\date{03/05/2002} +\maketitle + +\abstract{ADMCoupling} + +\section{Purpose} +\label{sec:aux} + +This thorn is completely trivial (there's already more words in the +documentation than in the code). The point is to allow clean coupling +of matter thorns and spacetime evolution thorns. By making a spacetime +thorn (such as BSSN) a friend of ADMCoupling it can know about the +variables of the matter thorns (such as Whisky) as long as they are +also friends of ADMCoupling, and then the appropriate stress energy +tensor terms can be included through the {\tt CalcTmunu} interface. +This avoids explicit dependencies between the spacetime and matter +evolution thorns. Note that we need to do the same for certain +analysis thorns, such as ADMConstraints. + +\include{interface} +\include{param} +\include{schedule} + +\end{document} diff --git a/interface.ccl b/interface.ccl new file mode 100644 index 0000000..e8d3322 --- /dev/null +++ b/interface.ccl @@ -0,0 +1,4 @@ +# Interface definition for thorn ADMCoupling +# $Header$ + +implements: ADMCoupling \ No newline at end of file diff --git a/param.ccl b/param.ccl new file mode 100644 index 0000000..b280418 --- /dev/null +++ b/param.ccl @@ -0,0 +1,2 @@ +# Parameter definitions for thorn ADMCoupling +# $Header$ diff --git a/schedule.ccl b/schedule.ccl new file mode 100644 index 0000000..70f592a --- /dev/null +++ b/schedule.ccl @@ -0,0 +1,2 @@ +# Schedule definitions for thorn ADMCoupling +# $Header$ diff --git a/src/make.code.defn b/src/make.code.defn new file mode 100644 index 0000000..b345f84 --- /dev/null +++ b/src/make.code.defn @@ -0,0 +1,9 @@ +# Main make.code.defn file for thorn ADMCoupling +# $Header$ + +# Source files in this directory +SRCS = + +# Subdirectories containing source files +SUBDIRS = + -- cgit v1.2.3