Changeset 20981
- Timestamp:
- 07/22/16 11:39:17 (9 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/ad.m
r15565 r20981 8 8 md.verbose.autodiff=true; 9 9 md.autodiff.independents={... 10 independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices);11 %independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)')12 %independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',1)10 independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices); 11 %independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)') 12 %independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',1) 13 13 }; 14 14 -
issm/trunk-jpl/test/NightlyRun/ad_maxalloc.m
r15565 r20981 8 8 md.verbose.autodiff=true; 9 9 md.autodiff.independents={... 10 independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)')10 independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)') 11 11 }; 12 12 -
issm/trunk-jpl/test/NightlyRun/test3015.m
r19049 r20981 16 16 index=1; %this is the scalar component we are checking against 17 17 md.autodiff.independents={... 18 independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index)18 independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index) 19 19 }; 20 20 -
issm/trunk-jpl/test/NightlyRun/test3015.py
r20313 r20981 29 29 index=1 #this is the scalar component we are checking against 30 30 md.autodiff.independents=[\ 31 independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index)31 independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index) 32 32 ] 33 33 -
issm/trunk-jpl/test/NightlyRun/test3019.m
r19475 r20981 12 12 13 13 %first run scalar reverse mode: 14 md.autodiff.independents={independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices)};14 md.autodiff.independents={independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices)}; 15 15 md.autodiff.dependents={dependent('name','MaxVel','type','scalar','fos_reverse_index',1)}; 16 16 md.autodiff.driver='fos_reverse'; … … 22 22 23 23 %now run vectorial forward mode 24 md.autodiff.independents={independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)')};24 md.autodiff.independents={independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)')}; 25 25 md.autodiff.dependents={dependent('name','MaxVel','type','scalar')}; 26 26 md.autodiff.driver='fov_forward'; -
issm/trunk-jpl/test/NightlyRun/test3019.py
r20561 r20981 23 23 24 24 #first run scalar reverse mode: 25 md.autodiff.independents=[independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices)]25 md.autodiff.independents=[independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices)] 26 26 md.autodiff.dependents=[dependent('name','MaxVel','type','scalar','fos_reverse_index',1)] 27 27 md.autodiff.driver='fos_reverse' … … 33 33 34 34 #now run vectorial forward mode 35 md.autodiff.independents=[independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',numpy.arange(0,md.mesh.numberofvertices))]35 md.autodiff.independents=[independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',numpy.arange(0,md.mesh.numberofvertices))] 36 36 md.autodiff.dependents=[dependent('name','MaxVel','type','scalar')] 37 37 md.autodiff.driver='fov_forward' -
issm/trunk-jpl/test/NightlyRun/test3020.m
r20561 r20981 17 17 index=1; %this is the scalar component we are checking against 18 18 md.autodiff.independents={... 19 independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index)19 independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index) 20 20 }; 21 21 -
issm/trunk-jpl/test/NightlyRun/test3020.py
r20527 r20981 30 30 index=1 #this is the scalar component we are checking against 31 31 md.autodiff.independents=[\ 32 independent('name',' Thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index)32 independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',index) 33 33 ] 34 34
Note:
See TracChangeset
for help on using the changeset viewer.