Changeset 14506
- Timestamp:
- 04/04/13 01:04:25 (12 years ago)
- Location:
- issm/trunk-jpl/src/mobile/android/ISSM_APP
- Files:
-
- 8 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/ISSM.java ¶
r14489 r14506 45 45 private FrameLayout frame; 46 46 private ColorMap colorMap; 47 private int friction ; //temperature,sealevel;47 private int friction, temperature;//,sealevel; 48 48 private final int MINIMUM = 90; 49 49 private final int OFFSET = 10; … … 200 200 { 201 201 friction = sliders.getFric(); 202 temperature = sliders.getTemp(); 202 203 //temperature = sliders.getTemp(); 203 204 //sealevel = sliders.getSea(); 204 205 popupWindow.dismiss(); 205 206 System.out.println("Friction = " + friction ); 206 new CalculationTask().execute(friction );207 new CalculationTask().execute(friction,temperature); 207 208 } 208 209 }); … … 241 242 }; 242 243 thread.start(); 243 issmNative.solveISSMModel(target[0],buff); 244 System.out.println("temperatature = " + target[1]); 245 issmNative.solveISSMModel(target[0],target[1],buff); 244 246 return true; 245 247 } -
TabularUnified issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/IssmJni.java ¶
r14481 r14506 4 4 class IssmJni 5 5 { 6 public native void solveISSMModel(double alpha, DoubleBuffer buff);6 public native void solveISSMModel(double alpha, double temperature, DoubleBuffer buff); 7 7 public native int createISSMModel(String solution_type, String absfile, String relfile); 8 8 static -
TabularUnified issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/SliderMenu.java ¶
r14472 r14506 36 36 temp = (TextView) this.findViewById(R.id.temp); 37 37 sealvl = (TextView) this.findViewById(R.id.sealvl); 38 tempBar.setVisibility(INVISIBLE);38 //tempBar.setVisibility(INVISIBLE); 39 39 seaLevelBar.setVisibility(INVISIBLE); 40 temp.setVisibility(INVISIBLE);40 //temp.setVisibility(INVISIBLE); 41 41 sealvl.setVisibility(INVISIBLE); 42 42 friction = MINIMUM + OFFSET;
Note:
See TracChangeset
for help on using the changeset viewer.