tpism_atmosphere.i - pism - [fork] customized build of PISM, the parallel ice sheet model (tillflux branch)
HTML git clone git://src.adamsgaard.dk/pism
DIR Log
DIR Files
DIR Refs
DIR LICENSE
---
tpism_atmosphere.i (3036B)
---
1 %{
2 #include "coupler/atmosphere/Anomaly.hh"
3 #include "coupler/atmosphere/CosineYearlyCycle.hh"
4 #include "coupler/atmosphere/Delta_P.hh"
5 #include "coupler/atmosphere/Delta_T.hh"
6 #include "coupler/atmosphere/Factory.hh"
7 #include "coupler/atmosphere/Frac_P.hh"
8 #include "coupler/atmosphere/GivenClimate.hh"
9 #include "coupler/atmosphere/ElevationChange.hh"
10 #include "coupler/atmosphere/PIK.hh"
11 #include "coupler/atmosphere/PrecipitationScaling.hh"
12 #include "coupler/atmosphere/SeariseGreenland.hh"
13 #include "coupler/atmosphere/Uniform.hh"
14 #include "coupler/atmosphere/WeatherStation.hh"
15 #include "coupler/atmosphere/YearlyCycle.hh"
16 #include "coupler/atmosphere/OrographicPrecipitation.hh"
17 %}
18
19 %shared_ptr(pism::atmosphere::AtmosphereModel)
20 %include "coupler/AtmosphereModel.hh"
21
22 %shared_ptr(pism::atmosphere::Anomaly)
23 %rename(AtmosphereAnomaly) pism::atmosphere::Anomaly;
24 %include "coupler/atmosphere/Anomaly.hh"
25
26 %shared_ptr(pism::atmosphere::Delta_P)
27 %rename(AtmosphereDeltaP) pism::atmosphere::Delta_P;
28 %include "coupler/atmosphere/Delta_P.hh"
29
30 %shared_ptr(pism::atmosphere::Delta_T)
31 %rename(AtmosphereDeltaT) pism::atmosphere::Delta_T;
32 %include "coupler/atmosphere/Delta_T.hh"
33
34 %shared_ptr(pism::atmosphere::Frac_P)
35 %rename(AtmosphereFracP) pism::atmosphere::Frac_P;
36 %include "coupler/atmosphere/Frac_P.hh"
37
38 %shared_ptr(pism::atmosphere::Given)
39 %rename(AtmosphereGiven) pism::atmosphere::Given;
40 %include "coupler/atmosphere/GivenClimate.hh"
41
42 %shared_ptr(pism::atmosphere::ElevationChange)
43 %rename(AtmosphereElevationChange) pism::atmosphere::ElevationChange;
44 %include "coupler/atmosphere/ElevationChange.hh"
45
46 %shared_ptr(pism::atmosphere::PrecipitationScaling)
47 %rename(AtmospherePrecipScaling) pism::atmosphere::PrecipitationScaling;
48 %include "coupler/atmosphere/PrecipitationScaling.hh"
49
50 %shared_ptr(pism::atmosphere::WeatherStation)
51 %rename(AtmosphereWeatherStation) pism::atmosphere::WeatherStation;
52 %include "coupler/atmosphere/WeatherStation.hh"
53
54 %shared_ptr(pism::atmosphere::YearlyCycle)
55 %rename(AtmosphereYearlyCycle) pism::atmosphere::YearlyCycle;
56 %include "coupler/atmosphere/YearlyCycle.hh"
57
58 %shared_ptr(pism::atmosphere::CosineYearlyCycle)
59 %rename(AtmosphereCosineYearlyCycle) pism::atmosphere::CosineYearlyCycle;
60 %include "coupler/atmosphere/CosineYearlyCycle.hh"
61
62 %shared_ptr(pism::atmosphere::PIK)
63 %rename(AtmospherePIK) pism::atmosphere::PIK;
64 %include "coupler/atmosphere/PIK.hh"
65
66 %shared_ptr(pism::atmosphere::SeaRISEGreenland)
67 %rename(AtmosphereSeaRISEGreenland) pism::atmosphere::SeaRISEGreenland;
68 %include "coupler/atmosphere/SeariseGreenland.hh"
69
70 %shared_ptr(pism::atmosphere::Uniform)
71 %rename(AtmosphereUniform) pism::atmosphere::Uniform;
72 %include "coupler/atmosphere/Uniform.hh"
73
74 %shared_ptr(pism::atmosphere::Factory)
75 %rename(AtmosphereFactory) pism::atmosphere::Factory;
76 %include "coupler/atmosphere/Factory.hh"
77
78 %shared_ptr(pism::atmosphere::OrographicPrecipitation)
79 %rename(AtmosphereOrographicPrecipitation) pism::atmosphere::OrographicPrecipitation;
80 %include "coupler/atmosphere/OrographicPrecipitation.hh"