- Timestamp:
- 10/04/12 10:56:37 (4 years ago)
- Location:
- branches
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UQ/math/examples2/TEST4d_OUQ_surrogate_diam.py
r474 r575 58 58 func_evals = solver.evaluations 59 59 from mystic.munge import write_support_file 60 write_support_file(stepmon )60 write_support_file(stepmon, npts=npts) 61 61 return solved, func_max, func_evals 62 62 … … 210 210 print " target: %s" % str(target) 211 211 print " error: %s" % str(error) 212 print " npts: %s" % str((nx,ny,nz)) 212 213 print "..............\n" 213 214 -
branches/UQ/math/examples2/TEST_OUQ_surrogate_diam.py
r474 r575 58 58 func_evals = solver.evaluations 59 59 from mystic.munge import write_support_file 60 write_support_file(stepmon )60 write_support_file(stepmon, npts=npts) 61 61 return solved, func_max, func_evals 62 62 … … 162 162 print " target: %s" % str(target) 163 163 print " error: %s" % str(error) 164 print " npts: %s" % str((nx,ny,nz)) 164 165 print "..............\n" 165 166 -
branches/UQ/math/examples3/thk_safe/INV_seesaw2d_inf_thk_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= h <= %s" % (hmin,hmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/thk_safe/INV_seesaw2d_sup_thk_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= h <= %s" % (hmin,hmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/thk_safe/INV_surrogate_expect.py
r471 r575 140 140 print " mean: %s" % _mean 141 141 print " range: %s" % _range 142 print " npts: %s" % str((nx,ny,nz)) 142 143 print "..............\n" 143 144 -
branches/UQ/math/examples3/thk_unsafe/INV_seesaw2d_inf_thk_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= h <= %s" % (hmin,hmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/thk_unsafe/INV_seesaw2d_sup_thk_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= h <= %s" % (hmin,hmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/thk_unsafe/INV_surrogate_expect.py
r471 r575 140 140 print " mean: %s" % _mean 141 141 print " range: %s" % _range 142 print " npts: %s" % str((nx,ny,nz)) 142 143 print "..............\n" 143 144 -
branches/UQ/math/examples3/vel_safe/INV_seesaw2d_inf_vel_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= v <= %s" % (vmin,vmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/vel_safe/INV_seesaw2d_sup_vel_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= v <= %s" % (vmin,vmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/vel_safe/INV_surrogate_expect.py
r471 r575 140 140 print " mean: %s" % _mean 141 141 print " range: %s" % _range 142 print " npts: %s" % str((nx,ny,nz)) 142 143 print "..............\n" 143 144 -
branches/UQ/math/examples3/vel_unsafe/INV_seesaw2d_inf_vel_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= v <= %s" % (vmin,vmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/vel_unsafe/INV_seesaw2d_sup_vel_diam.py
r474 r575 147 147 print " mean: %s" % _mean 148 148 print " range: %s" % _range 149 print " npts: %s" % str((nx,ny,nz)) 149 150 print " CONDITION: %s <= v <= %s" % (vmin,vmax) 150 151 print "..............\n" -
branches/UQ/math/examples3/vel_unsafe/INV_surrogate_expect.py
r471 r575 140 140 print " mean: %s" % _mean 141 141 print " range: %s" % _range 142 print " npts: %s" % str((nx,ny,nz)) 142 143 print "..............\n" 143 144 -
branches/UQ/math/legacy/MINMAX_StAlData.py
r569 r575 58 58 func_evals = solver.evaluations 59 59 from mystic.munge import write_support_file 60 write_support_file(stepmon )60 write_support_file(stepmon, npts=npts) 61 61 return solved, func_max, func_evals 62 62 … … 189 189 print " target: %s" % str(target) 190 190 print " error: %s" % str(error) 191 print " npts: %s" % str((nx,ny,nz)) 191 192 print "..............\n" 192 193 -
branches/UQ/math/legacy/MM_OUQ_StAlData.py
r569 r575 66 66 func_evals = solver.evaluations 67 67 from mystic.munge import write_support_file 68 write_support_file(stepmon )68 write_support_file(stepmon, npts=npts) 69 69 return solved, func_max, func_evals 70 70 … … 220 220 print " target: %s" % str(target) 221 221 print " error: %s" % str(error) 222 print " npts: %s" % str((nx,ny,nz)) 222 223 print "..............\n" 223 224 -
branches/UQ/math/legacy/TEST_OUQ_1dData.py
r569 r575 62 62 func_evals = solver.evaluations 63 63 from mystic.munge import write_support_file 64 write_support_file(stepmon )64 write_support_file(stepmon, npts=npts) 65 65 return solved, func_max, func_evals 66 66 … … 216 216 print " target: %s" % str(target) 217 217 print " error: %s" % str(error) 218 print " npts: %s" % str((nx,ny,nz)) 218 219 print "..............\n" 219 220 -
branches/UQ/math/legacy/TEST_OUQ_1dSurr_CxCy.py
r569 r575 61 61 func_evals = solver.evaluations 62 62 from mystic.munge import write_support_file 63 write_support_file(stepmon )63 write_support_file(stepmon, npts=npts) 64 64 return solved, func_max, func_evals 65 65 … … 217 217 print " target: %s" % str(target) 218 218 print " error: %s" % str(error) 219 print " npts: %s" % str((nx,ny,nz)) 219 220 print "..............\n" 220 221 -
branches/UQ/math/legacy/TEST_OUQ_1dSurr_Cy.py
r569 r575 61 61 func_evals = solver.evaluations 62 62 from mystic.munge import write_support_file 63 write_support_file(stepmon )63 write_support_file(stepmon, npts=npts) 64 64 return solved, func_max, func_evals 65 65 … … 217 217 print " target: %s" % str(target) 218 218 print " error: %s" % str(error) 219 print " npts: %s" % str((nx,ny,nz)) 219 220 print "..............\n" 220 221 -
branches/UQ/math/legacy/TEST_OUQ_StAlData.py
r569 r575 62 62 func_evals = solver.evaluations 63 63 from mystic.munge import write_support_file 64 write_support_file(stepmon )64 write_support_file(stepmon, npts=npts) 65 65 return solved, func_max, func_evals 66 66 … … 217 217 print " target: %s" % str(target) 218 218 print " error: %s" % str(error) 219 print " npts: %s" % str((nx,ny,nz)) 219 220 print "..............\n" 220 221 -
branches/UQ/math/legacy/TEST_OUQ_StStSurr_Cy.py
r569 r575 61 61 func_evals = solver.evaluations 62 62 from mystic.munge import write_support_file 63 write_support_file(stepmon )63 write_support_file(stepmon, npts=npts) 64 64 return solved, func_max, func_evals 65 65 … … 217 217 print " target: %s" % str(target) 218 218 print " error: %s" % str(error) 219 print " npts: %s" % str((nx,ny,nz)) 219 220 print "..............\n" 220 221 -
branches/UQ/math/sausage/TEST_OUQ_1dSurr_diam.py
r569 r575 63 63 func_evals = solver.evaluations 64 64 from mystic.munge import write_support_file 65 write_support_file(stepmon )65 write_support_file(stepmon, npts=npts) 66 66 return solved, func_max, func_evals 67 67 … … 218 218 print " target: %s" % str(target) 219 219 print " error: %s" % str(error) 220 print " npts: %s" % str((nx,ny,nz)) 220 221 print "..............\n" 221 222 -
branches/UQ/math/sausage/TEST_OUQ_StStSurr.py
r569 r575 62 62 func_evals = solver.evaluations 63 63 from mystic.munge import write_support_file 64 write_support_file(stepmon )64 write_support_file(stepmon, npts=npts) 65 65 return solved, func_max, func_evals 66 66 … … 230 230 print " target: %s" % str(target) 231 231 print " error: %s" % str(error) 232 print " npts: %s" % str((nx,ny,nz)) 232 233 print "..............\n" 233 234 -
branches/decorate/TEST_OUQ_surrogate_diam.py
r535 r575 58 58 func_evals = solver.evaluations 59 59 from mystic.munge import write_support_file 60 write_support_file(stepmon )60 write_support_file(stepmon, npts=npts) 61 61 return solved, func_max, func_evals 62 62 … … 162 162 print " target: %s" % str(target) 163 163 print " error: %s" % str(error) 164 print " npts: %s" % str((nx,ny,nz)) 164 165 print "..............\n" 165 166
Note: See TracChangeset
for help on using the changeset viewer.