Ignore:
Timestamp:
05/17/20 17:15:00 (5 years ago)
Author:
jdquinn
Message:

CHG: Translated MATLAB changes to Python that allow for distributing variable over partition.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test420.py

    r24261 r24870  
    2929
    3030#variables
    31 md.qmu.variables.rho_ice = normal_uncertain.normal_uncertain('MaterialsRhoIce', md.materials.rho_ice, 0.01)
     31md.qmu.variables.rho_ice = normal_uncertain.normal_uncertain(
     32    'descriptor', 'MaterialsRhoIce',
     33    'mean', 1,
     34    'stddev', .01
     35    )
    3236
    3337#responses
    34 md.qmu.responses.MaxVel = response_function.response_function('scaled_Thickness', [], [0.0001, 0.001, 0.01, 0.25, 0.5, 0.75, 0.99, 0.999, 0.9999])
     38md.qmu.responses.MaxVel = response_function.response_function(
     39    'descriptor', 'scaled_Thickness',
     40    'partition', md.qmu.vpartition
     41    )
    3542
    3643#method
Note: See TracChangeset for help on using the changeset viewer.