-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor time distance plotting to be more general * unit fixes; strand em; flexible bounds on em * function for making clean copy of hydrad * cleanup bkgrnd heating config; add overwrite option * fix b-field/gravity configuration * fix pass by reference issue * fix heating template tests * clean up CI config now that HYDRAD is public * adjust time array tests * ci debugging * fix glob sorting
- Loading branch information
Showing
10 changed files
with
249 additions
and
134 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
{{ fit.order }} | ||
{{ fit.domains | length - 1}} | ||
{% for d in fit.domains %}{{ d }} {% endfor %} | ||
{{ fit.x | length }} | ||
{%- set y_val = fit.y | units_filter(y_unit) -%} | ||
{% for x in fit.x %} | ||
{{ x }} {{ y_val[loop.index0] }} | ||
{%- endfor %} | ||
{{ order }} | ||
{{ domains | length - 1}} | ||
{% for d in domains %}{{ d }} {% endfor %} | ||
{% for c in coefficients -%} | ||
{% for _c in c %}{{ _c }} {% endfor %} | ||
{{ minmax[loop.index0][0] }} {{ minmax[loop.index0][1] }} | ||
{% endfor %} | ||
|
||
Configuration file generated by pydrad on {{ date }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.