Changeset 14515


Ignore:
Timestamp:
04/04/13 22:01:23 (12 years ago)
Author:
Eric.Larour
Message:

CHG: bug change from Lan plus minor changes

Location:
issm/trunk-jpl/src/mobile
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/mobile/android/ISSM_APP/res/layout/settingsmenu.xml

    r14504 r14515  
    6767             android:layout_height="wrap_content"
    6868             android:layout_below="@+id/sealvlBar"
    69              android:text="Parameters" />
     69             android:text="Done" />
    7070    </RelativeLayout>
  • issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/ISSM.java

    r14506 r14515  
    251251                        super.onPostExecute(null);
    252252                        dialog.setCancelable(true);
    253                         dialog.setMessage("Loading View. Please Wait ...");
     253                        dialog.setMessage("Running ISSM simulation. Please Wait ...");
    254254                        dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    255255                        dialog.setProgress(0);
  • issm/trunk-jpl/src/mobile/native/Main.cpp

    r14398 r14515  
    6767        }
    6868        /*}}}*/
    69         void Solve(JNIEnv *env, jclass clazz , jdouble alpha, jobject buf){ /*{{{*/
     69        void Solve(JNIEnv *env, jclass clazz , jdouble alpha, jdouble temperature, jobject buf){ /*{{{*/
    7070
    7171                int i,count;
     
    8484                /*reset basal friction to what it was before: */
    8585                __android_log_print(ANDROID_LOG_INFO, "Native","alpha %g ",alpha);
     86                /*reset basal temperature to what it was before: */
     87                __android_log_print(ANDROID_LOG_INFO, "Native","temperature %g ",temperature);
     88
    8689                InputDuplicatex(fm->elements,fm->nodes,fm->vertices,fm->loads,fm->materials,fm->parameters,AndroidFrictionCoefficientEnum,FrictionCoefficientEnum);
    8790
     
    161164        {
    162165                        {"createISSMModel"   ,"(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I"  , (void *) Initialize},
    163                         {"solveISSMModel", "(DLjava/nio/DoubleBuffer;)V", (void *) Solve}
     166                        {"solveISSMModel", "(DDLjava/nio/DoubleBuffer;)V", (void *) Solve}
    164167        };
    165168        /*}}}*/
Note: See TracChangeset for help on using the changeset viewer.