Skip to content

Releases: PALEOtoolkit/PALEOmodel.jl

v0.15.4

31 Jul 19:47
75cb77e
Compare
Choose a tag to compare

PALEOmodel v0.15.4

Diff since v0.15.3

Merged pull requests: (#19) (@sjdaines)

  • get_array can now modify / replace coordinates
    Main use is to support time-varying coordinates (default coordinates can only be time-independent).
    'get_array(output, ...)' and 'plot(output, ...)' can now take an
    optional argument coords to supply plot coordinates from Variables in output, to replace any default coordinates.
    Format is a Vector of Pairs of "coord_name"=>("var_name1", "var_name2", ...)

    Example: to replace a 1D column default pressure coordinate with a z coordinate:

    coords=["z"=>("atm.zmid", "atm.zlower", "atm.zupper")]
    NB: the coordinates will be generated by applying the same spatial etc filter as that applied to the Variables,
    so the supplied coordinate Variables must have the same dimensionality as the supplied Variables.

  • rationalize 'get_array' syntax to match that of 'plot' so that we have:
    get_array(output, "varname", (tmodel=1.0, column=1))
    and
    plot(output, "varname", (tmodel=1 .0, column=1))

  • it is now possible to plot spatially-resolved quantities from the current model state in modeldata, eg
    plot(modeldata, "varname", (column=1,))

v0.15.3

24 Jul 17:44
64865fe
Compare
Choose a tag to compare

PALEOmodel v0.15.3

Diff since v0.15.2

Merged pull requests:

  • sync with PALEOboxes 20.2 VariableAggregatorNamed changes (#18) (@sjdaines)

v0.15.2

09 Jul 14:15
2994d09
Compare
Choose a tag to compare

PALEOmodel v0.15.2

Diff since v0.15.1

Merged pull requests:

v0.15.1

26 Jun 20:13
fd9e452
Compare
Choose a tag to compare

PALEOmodel v0.15.1

Diff since v0.15.0

Merged pull requests:

  • Simplify SteadyState solvers, and function objects (#16) (@sjdaines)

v0.15.0

25 Jun 15:04
a3ae2e6
Compare
Choose a tag to compare

PALEOmodel v0.15.0

Diff since v0.14.8

Merged pull requests:

v0.14.8

22 Jun 19:53
0e1a208
Compare
Choose a tag to compare

PALEOmodel v0.14.8

Diff since v0.14.7

Merged pull requests:

v0.14.7

21 Jun 18:10
2798f8c
Compare
Choose a tag to compare

PALEOmodel v0.14.7

Diff since v0.14.6

Merged pull requests:

v0.14.6

14 May 12:50
Compare
Choose a tag to compare

PALEOmodel v0.14.6

Diff since v0.14.5

v0.14.5

12 May 16:29
fdf8022
Compare
Choose a tag to compare

PALEOmodel v0.14.5

Diff since v0.14.4

Merged pull requests:

  • update [compat] for PALEOboxes v0.18 (#7) (@sjdaines)

v0.14.4

06 May 12:10
31ee8a0
Compare
Choose a tag to compare

PALEOmodel v0.14.4

Diff since v0.14.3

Merged pull requests:

  • use Requires.jl to remove direct dependency on PyCall.jl (#6) (@sjdaines)