Skip to content

Commit

Permalink
Merge pull request clawpack#65 from mandli/fix-setrun-templates
Browse files Browse the repository at this point in the history
Fix '==' output format bug
  • Loading branch information
rjleveque committed Oct 29, 2013
2 parents e426b84 + f9b707d commit aff93a6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def setrun(claw_pkg='amrclaw'):
clawdata.output_t0 = True # output at initial (or restart) time?


clawdata.output_format == 'ascii' # 'ascii', 'binary', 'netcdf'
clawdata.output_format = 'ascii' # 'ascii', 'binary', 'netcdf'

clawdata.output_q_components = 'all' # could be list such as [True,True]
clawdata.output_aux_components = 'none' # could be list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def setrun(claw_pkg='classic'):
clawdata.output_t0 = True # output at initial (or restart) time?


clawdata.output_format == 'ascii' # 'ascii', 'binary', 'netcdf'
clawdata.output_format = 'ascii' # 'ascii', 'binary', 'netcdf'

clawdata.output_q_components = 'all' # could be list such as [True,True]
clawdata.output_aux_components = 'none' # could be list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def setrun(claw_pkg='classic'):
clawdata.output_t0 = True # output at initial (or restart) time?


clawdata.output_format == 'ascii' # 'ascii', 'binary', 'netcdf'
clawdata.output_format = 'ascii' # 'ascii', 'binary', 'netcdf'

clawdata.output_q_components = 'all' # could be list such as [True,True]
clawdata.output_aux_components = 'none' # could be list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def setrun(claw_pkg='classic'):
clawdata.output_t0 = True # output at initial (or restart) time?


clawdata.output_format == 'ascii' # 'ascii', 'binary', 'netcdf'
clawdata.output_format = 'ascii' # 'ascii', 'binary', 'netcdf'

clawdata.output_q_components = 'all' # could be list such as [True,True]
clawdata.output_aux_components = 'none' # could be list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def setrun(claw_pkg='geoclaw'):
clawdata.output_t0 = True # output at initial (or restart) time?


clawdata.output_format == 'ascii' # 'ascii', 'binary', 'netcdf'
clawdata.output_format = 'ascii' # 'ascii', 'binary', 'netcdf'

clawdata.output_q_components = 'all' # could be list such as [True,True]
clawdata.output_aux_components = 'none' # could be list
Expand Down

0 comments on commit aff93a6

Please # to comment.