Changeset 14506


Ignore:
Timestamp:
04/04/13 01:04:25 (12 years ago)
Author:
ltnguyen
Message:

Adding temperature sliders its prototype on Jni port

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  
    4545        private FrameLayout frame;
    4646        private ColorMap colorMap;
    47         private int friction; //temperature,sealevel;
     47        private int friction, temperature;//,sealevel;
    4848        private final int MINIMUM = 90;
    4949        private final int OFFSET = 10;
     
    200200                        {
    201201                                friction = sliders.getFric();
     202                                temperature = sliders.getTemp();
    202203                            //temperature = sliders.getTemp();
    203204                            //sealevel = sliders.getSea();
    204205                                popupWindow.dismiss();
    205206                                System.out.println("Friction = " + friction );
    206                                 new CalculationTask().execute(friction);
     207                                new CalculationTask().execute(friction,temperature);
    207208                        }
    208209                    });
     
    241242                        };
    242243                        thread.start();
    243                         issmNative.solveISSMModel(target[0],buff);
     244                        System.out.println("temperatature = " + target[1]);
     245                        issmNative.solveISSMModel(target[0],target[1],buff);
    244246                        return true;
    245247                }
  • TabularUnified issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/IssmJni.java

    r14481 r14506  
    44class IssmJni
    55{
    6         public native void solveISSMModel(double alpha, DoubleBuffer buff);
     6        public native void solveISSMModel(double alpha, double temperature, DoubleBuffer buff);
    77        public native int createISSMModel(String solution_type, String absfile, String relfile);
    88        static
  • TabularUnified issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/SliderMenu.java

    r14472 r14506  
    3636        temp  = (TextView) this.findViewById(R.id.temp);
    3737        sealvl   = (TextView) this.findViewById(R.id.sealvl);
    38         tempBar.setVisibility(INVISIBLE);
     38        //tempBar.setVisibility(INVISIBLE);
    3939        seaLevelBar.setVisibility(INVISIBLE);
    40         temp.setVisibility(INVISIBLE);
     40        //temp.setVisibility(INVISIBLE);
    4141        sealvl.setVisibility(INVISIBLE);
    4242        friction = MINIMUM + OFFSET;
Note: See TracChangeset for help on using the changeset viewer.