vtf-logo

advection2.h

Go to the documentation of this file.
00001 #ifndef AMROC_ADVECTION2_H
00002 #define AMROC_ADVECTION2_H
00003 
00004 // Copyright (C) 2002 Ralf Deiterding
00005 // Brandenburgische Universitaet Cottbus
00006 //
00007 // Copyright (C) 2003-2007 California Institute of Technology
00008 // Ralf Deiterding, ralf@amroc.net
00009 
00015 #define DIM        2
00016 #define NEQUATIONS 1
00017 #define NEQUSED    1
00018 #define NWAVES     1
00019 #define NFIXUP     1
00020 #define NAUX       2 
00021 
00022 #include "DAGHFortranInterfaces.h"                           
00023 
00024 #define f_normalflux FORTRAN_NAME(rpn2ad1, RPN2AD1)
00025 #define f_transverseflux FORTRAN_NAME(rpt2ad1, RPT2AD1)
00026 #define f_check FORTRAN_NAME(chk2ad, CHK2AD)
00027 
00028 extern "C" {
00029   void f_normalflux();
00030   void f_transverseflux();
00031   void f_check();
00032 }
00033 
00034 #include "ClpStdFunctions.h"
00035 #include "ClpProblem.h"
00036 
00037 #endif
00038 
00039