vtf-logo

advection1.h

Go to the documentation of this file.
00001 #ifndef AMROC_ADVECTION1_H
00002 #define AMROC_ADVECTION1_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        1
00016 #define NEQUATIONS 1
00017 #define NEQUSED    1
00018 #define NWAVES     1
00019 #define NFIXUP     1
00020 #define NAUX       1
00021 
00022 #include "DAGHFortranInterfaces.h"                           
00023 
00024 #define f_normalflux FORTRAN_NAME(rp1ad1, RP1AD1)
00025 #define f_check FORTRAN_NAME(chk1ad, CHK1AD)
00026 
00027 extern "C" {
00028   void f_normalflux();
00029   void f_check();
00030 }
00031 
00032 #include "ClpStdFunctions.h"
00033 #include "ClpProblem.h"
00034 
00035 #endif
00036 
00037