|
PISM, A Parallel Ice Sheet Model
stable v0.5
|
00001 // Copyright (C) 2007--2009 Ed Bueler 00002 // 00003 // This file is part of PISM. 00004 // 00005 // PISM is free software; you can redistribute it and/or modify it under the 00006 // terms of the GNU General Public License as published by the Free Software 00007 // Foundation; either version 2 of the License, or (at your option) any later 00008 // version. 00009 // 00010 // PISM is distributed in the hope that it will be useful, but WITHOUT ANY 00011 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00012 // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 00013 // details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with PISM; if not, write to the Free Software 00017 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 #ifndef __greens_hh 00020 #define __greens_hh 00021 00023 struct ge_params { 00024 double dx, dy; 00025 int p, q; 00026 }; 00027 00029 00033 double ge_integrand(unsigned ndimMUSTBETWO, const double* xiANDeta, void* paramsIN); 00034 00035 00037 struct vd_params { 00038 double t, R0, rk, rho, grav, D, eta; 00039 }; 00040 00042 00046 double vd_integrand (double kap, void * paramsIN); 00047 00049 double viscDisc(double t, double H0, double R0, double r, 00050 double rho, double grav, double D, double eta); 00051 00052 #endif /* __greens_hh */ 00053
1.7.5.1