• VTF
  • FSI
  • AMROC
  • SFC
  • Motion
  • STLIB
  • Main Page
  • Related Pages
  • Classes
  • Files
  • File List
  • File Members

amroc/clawpack/src/2d/equations/acoustics/acousticsv2.h

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 
00003 #ifndef AMROC_ACOUSTICS2_H
00004 #define AMROC_ACOUSTICS2_H
00005 
00006 // Copyright (C) 2009 Ralf Deiterding
00007 // Oak Ridge National Laboratory
00008 
00014 #define DIM        2
00015 #define NEQUATIONS 3
00016 #define NEQUSED    3
00017 #define NWAVES     2
00018 #define NFIXUP     3
00019 #define NAUX       2
00020 
00021 #include "DAGHFortranInterfaces.h"                           
00022 
00023 #define f_normalflux FORTRAN_NAME(rpn2acv, RPN2ACV)
00024 #define f_transverseflux FORTRAN_NAME(rpt2acv, RPT2ACV)
00025 #define f_check FORTRAN_NAME(chk2ac, CHK2AC)
00026 #define f_flgout FORTRAN_NAME(flgout2ac, FLGOUT2AC)
00027 #define f_ibndrfl FORTRAN_NAME(ip2acrfl, IP2ACRFL)
00028 #define f_ibndex FORTRAN_NAME(ip2acex, IP2ACEX)
00029 
00030 extern "C" {
00031   void f_normalflux();
00032   void f_transverseflux();
00033   void f_check();
00034   void f_flgout();
00035   void f_ibndrfl();
00036   void f_ibndex();
00037 }
00038 
00039 #include "ClpStdFunctions.h"
00040 
00041 #endif
00042 
00043