Recent Releases of AIBECS.jl

AIBECS.jl - v0.20.2

AIBECS v0.20.2

Diff since v0.20.1

Merged pull requests:

  • Add DIP+DOP+POP P-cycle tutorial; drop numeric filename prefixes; test cleanup (#142) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.20.1

AIBECS v0.20.1

Diff since v0.20.0

Closed issues:

  • slow solve with julia 1.12 but fast with 1.8 (#135)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.20.0

AIBECS v0.20.0

Diff since v0.19.6

Breaking changes

CTKAlg's default convergence criterion changed from the NonlinearSolveBase AbsNormSafeBestTerminationMode (absolute, unit-blind) to NormTerminationMode (scale-aware), with new tolerance defaults:

kwarg old default new default
termination_condition AbsNormSafeBestTerminationMode(maximum∘abs) NormTerminationMode(maximum∘abs)
abstol nothing → NSB default (≈ 3e-13 for Float64) 0.0
reltol nothing → NSB default (≈ 3e-13 for Float64) 1 / ustrip(s, 1Myr) ≈ 3.17e-14 (τstop = 1 Myr)

The new rule is

‖F‖∞ ≤ abstol     ||     ‖F‖∞ ≤ reltol · ‖F + x‖∞

With abstol = 0 the active branch is the relative one — equivalent to ‖x‖/‖F‖ ≥ τstop, the same physically meaningful "system is steady on timescales longer than τstop" criterion as the original τstop kwarg before AIBECS adopted NonlinearSolveBase termination modes.

Why it changed. The previous default was unit-blind and broke in opposite directions on tutorial problems:

  • Radiocarbon: ‖F₀‖∞ ≈ 1e-13 already met the absolute tolerance on the first call, so Newton ran zero iterations. Required a manual abstol = … workaround in the tutorial.
  • Ideal age: ‖F‖∞ floored at eps · cond(J) ≈ 1e-10, never met abstol, and NSB safe-best stall detection could not fire inside maxItNewton = 50 (patience = 100, max_stalled_steps = nothing). Solver ground to MaxIters.

The relative criterion side-steps both — ‖x‖∞ provides the scale.

Migration

  • Default users: no action required. Both tutorial problems and the test suite converge with the new defaults.
  • Users who set abstol explicitly: the new default reltol ≈ 3.17e-14 is now also checked (OR semantics) — for typical AIBECS problems with ‖x‖ ≫ 1 this is the looser branch and your abstol still governs. Pass reltol = 0 to suppress the relative branch entirely.
  • Users who relied on AbsNormSafeBest-specific behaviour (best-iterate tracking, stall-based StalledSuccess): pass termination_condition = AbsNormSafeBestTerminationMode(maximum∘abs) explicitly.

Other changes

  • CTKAlg now emits an @warn when it returns a non-success retcode, reporting retcode, residual ∞-norm, abstol, reltol, and maxItNewton. Silent MaxIters / Unstable failures are now visible.
  • The radiocarbon tutorial no longer needs the manual abstol = ustrip(upreferred(1e-8·Ratm/yr)) workaround — solve(prob, CTKAlg()) is enough.

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.19.6

AIBECS v0.19.6

Diff since v0.19.5

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.19.5

AIBECS v0.19.5

Diff since v0.19.4

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.19.4

AIBECS v0.19.4

Diff since v0.19.3

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.19.3

AIBECS v0.19.3

Diff since v0.19.2

Merged pull requests:

  • docs: add parameter optimisation how-to (#130) (@briochemc)
  • CompatHelper: bump compat for Bijectors in [weakdeps] to 0.16, (keep existing compat) (#131) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.19.2

AIBECS v0.19.2

Diff since v0.19.1

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.19.1

AIBECS v0.19.1

Diff since v0.19.0

Merged pull requests:

  • docs: reorganize how-to sidebar, embed benchmarks, rewrite solvers explanation (#128) (@briochemc)
  • docs(howto): add Makie-based plotting example (#129) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.19.0

AIBECS v0.19.0

Diff since v0.18.0

Breaking changes

  • NewtonChordShamanskii now returns (x, retcode) instead of a bare state vector. The function is documented as AIBECS-internal, but any external caller that pattern-matched on a single return value will need to unpack the tuple.

New features

  • solve(::SteadyStateProblem, ::CTKAlg; …) now forwards a meaningful SciML retcode into build_solution instead of hard-coding ReturnCode.Success. The retcode threads:
    • the NonlinearSolveBase termination-cache verdict (Success / StalledSuccess / Stalled)
    • MaxIters when the Newton budget runs out
    • Unstable on Armijo complete-failure with a fresh Jacobian
  • New linear_cache::LinearSolve.LinearCache kwarg on solve(::SteadyStateProblem, ::CTKAlg; …) that bypasses the internal init(LinearProblem(…)) call so callers (F1Method, parameter sweeps) can feed in a pre-factorised Jacobian. Shamanskii's ratio check + Armijo's old-J fallback are the safety net against stale factors.

See #127 for the implementation and rationale.

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.18.0

AIBECS v0.18.0

Diff since v0.17.1

Breaking changes

  • CTKAlg's default linsolve field now eagerly defaults to
    UMFPACKFactorization() instead of nothing. Runtime behaviour is
    unchanged (the previous === nothing branch fell back to UMFPACK
    too), but the type parameter CTKAlg{L} is now
    CTKAlg{UMFPACKFactorization} by default rather than
    CTKAlg{Nothing}. Any downstream code dispatching on
    CTKAlg{Nothing} will need updating.

New features

  • Analytical ∂Gs/∂G keyword on AIBECSFunction — supply
    closed-form derivatives of the source–sink term G to skip the
    per-block ForwardDiff.derivative call in Jacobian assembly. Strictly
    opt-in; omitting the keyword keeps the existing ForwardDiff path.
    Tuple-of-tuples shape for multi-tracer; check_∂Gs(Gs, ∂Gs, x, p, nb)
    is exported to validate analytical derivatives against ForwardDiff.

  • AD-through-the-solve for CTKAlg — new
    solve(::SteadyStateProblem{…,Dual,…}, ::CTKAlg) dispatch peels
    the duals, runs the primal Newton–Chord–Shamanskii at Float64, and
    reconstructs ∂u*/∂p via the implicit function theorem
    (Jᵤ z = −Jₚ). Nested-Dual (Hessian) calls recurse one Dual layer
    per level, routed through LinearSolve's DualLinearCache so the
    sparse factorisation is reused — no densification.
    ForwardDiff.gradient(p -> sum(solve(SteadyStateProblem(F, x, p), CTKAlg()).u), p)
    now Just Works on AIBECS's sparse Jacobian.

  • AIBECS.nonlinearproblem Dual-stripping — the sparse
    jac_prototype builder now strips Duals before construction, so the
    SciML NonlinearSolve IFT path also works with ForwardDiff over an
    AIBECS steady-state solve.

Caveats

  • The IFT dispatch reuses three NonlinearSolveBase symbols
    (nodual_value, nonlinearsolve_∂f_∂p, nonlinearsolve_dual_solution)
    that are public-but-internal-feeling. A one-shot @warn surfaces this
    on first AD-through-solve call.
  • IFT-reconstructed partials inherit the primal Newton residual; for
    machine-precision derivatives the solver must be forced past its
    stopping rule (abstol=0, run to maxItNewton). Not practical at
    production grid sizes — use F1Method's analytical gradient/Hessian
    there.

Merged pull requests:

  • feat: analytical ∂Gs for G + AD-through-the-solve via IFT for CTKAlg (#124) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.17.1

AIBECS v0.17.1

Diff since v0.17.0

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.17.0

AIBECS v0.17.0

Diff since v0.16.7

Now opens up to all solvers from NonlinearSolve.jl and LinearSolve.jl.

Breaking changes

  • SciML ecosystem opt-in via a new AIBECSNonlinearSolveExt (NonlinearSolve + ADTypes + DI + SparseConnectivityTracer + SparseMatrixColorings as weak deps):

    • AIBECS.nonlinearproblem(prob)SteadyStateProblem → NonlinearProblem with sparse jac_prototype (sidesteps NonlinearSolve's iip-promotion of 3-arg f(u, p, t=0)).
    • AIBECS.recommended_nlalg()NewtonRaphson + UMFPACK with sparse-AD fallback.
    • AIBECS.default_sparse_ad() — overridable.
  • CTKAlg overhaul. No longer welded to factorize/\:

    • CTKAlg(linsolve = …) plugs in any LinearSolve algorithm (UMFPACK, KLU, MKL Pardiso, …); the inner loop mutates a LinearSolve.LinearCache so Shamanskii's lazy refresh rides the cache's isfresh toggle.
    • Convergence delegates to NonlinearSolveBase termination modes; abstol/reltol/termination_condition replace the old nrm/τstop kwargs.
    • LinearSolve promoted to direct dep; NonlinearSolveBase added.
  • Existing tutorials and SteadyStateProblem usage continue to work modulo the nrm/τstopabstol/reltol/termination_condition rename on CTKAlg.

Merged pull requests:

  • Open up to all SciML nonlinear/linear solvers (#122) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 3 months ago

AIBECS.jl - v0.16.7

AIBECS v0.16.7

Diff since v0.16.6

Merged pull requests:

  • Migrate OCIM/OCCA datasets from FigShare to Zenodo (#121) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.16.6

AIBECS v0.16.6

Diff since v0.16.5

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.16.5

AIBECS v0.16.5

Diff since v0.16.4

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.16.4

AIBECS v0.16.4

Diff since v0.16.3

Merged pull requests:

  • ci: deploy docs via GitHub Actions, materialising symlinks for VitePress (#119) (@briochemc)
  • ci: bump DocumenterVitepress to 0.3 to fix /stable/ hydration (#120) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.16.3

AIBECS v0.16.3

Diff since v0.16.2

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.16.2

AIBECS v0.16.2

Diff since v0.16.1

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.16.1

AIBECS v0.16.1

Diff since v0.16.0

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.16.0

AIBECS v0.16.0

Diff since v0.15.0

Breaking changes

  • all heavy deps have been moved to extensions/weakdeps, so they must be imported (e.g., using JLD2 before loading OCIM1 matrix, etc.) Docs + tutorials have been updated to reflect that. This is a major breaking change but should reduce load times significantly for all users not using all the deps (because deps that are not used are not precompiled).

Merged pull requests:

  • Migrate AIBECS dependencies to package extensions (#102) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.15.0

AIBECS v0.15.0

Diff since v0.14.0

Breaking changes

  • Added Haine et al. (2002, 2025) 9-box model circulation.

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 4 months ago

AIBECS.jl - v0.14.0

AIBECS v0.14.0

Diff since v0.13.6

Breaking changes

  • Remove some unnecessary deps
  • update downloading functions
  • remove broken Kok tests

Closed issues:

  • Change license and wording (#101)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] 8 months ago

AIBECS.jl - v0.13.6

AIBECS v0.13.6

Diff since v0.13.5

  • CompatHelper: bump compat for Bijectors to 0.15, (keep existing compat)

Merged pull requests:

  • CompatHelper: bump compat for Bijectors to 0.15, (keep existing compat) (#99) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 1 year ago

AIBECS.jl - v0.13.5

AIBECS v0.13.5

Diff since v0.13.4

  • bump compats (JLD2 and Bijectors)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 2 years ago

AIBECS.jl - v0.13.4

AIBECS v0.13.4

Diff since v0.13.3

Merged pull requests:

  • Fix loading of OCIM2_48L (updated NCDataset syntax) (#98) (@briochemc)

Closed issues:

  • Cannot load OCIM2_48L? (#97)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 2 years ago

AIBECS.jl - v0.13.3

AIBECS v0.13.3

Diff since v0.13.2

  • updated dependencies
  • updated documentation (removed notebooks + added auto-docs for all functions and types)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 2 years ago

AIBECS.jl - v0.13.2

AIBECS v0.13.2

Diff since v0.13.1

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 4 years ago

AIBECS.jl - v0.13.1

AIBECS v0.13.1

Diff since v0.13.0

Merged pull requests:

  • CompatHelper: bump compat for Interpolations to 0.14, (keep existing compat) (#93) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 4 years ago

AIBECS.jl - v0.13.0

AIBECS v0.13.0

Diff since v0.12.0

Merged pull requests:

  • CompatHelper: bump compat for Shapefile to 0.8, (keep existing compat) (#92) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 4 years ago

AIBECS.jl - v0.12.0

AIBECS v0.12.0

Diff since v0.11.3

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 4 years ago

AIBECS.jl - v0.11.3

AIBECS v0.11.3

Diff since v0.11.2

Merged pull requests:

  • CompatHelper: bump compat for NCDatasets to 0.12, (keep existing compat) (#91) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 4 years ago

AIBECS.jl - v0.11.2

AIBECS v0.11.2

Diff since v0.11.1

Merged pull requests:

  • CompatHelper: bump compat for Bijectors to 0.10, (keep existing compat) (#89) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 4 years ago

AIBECS.jl - v0.11.1

AIBECS v0.11.1

Diff since v0.11.0

Closed issues:

  • Change from DiffEqBase to SciMLBase (#88)

Merged pull requests:

  • JOSS paper (#87) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 4 years ago

AIBECS.jl - v0.11.0

AIBECS v0.11.0

Diff since v0.10.12

Merged pull requests:

  • Fix convoluted/messy output from F_and_∇ₓF and load (#85) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 4 years ago

AIBECS.jl - v0.10.12

AIBECS v0.10.12

Diff since v0.10.11

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 5 years ago

AIBECS.jl - v0.10.11

AIBECS v0.10.11

Diff since v0.10.10

Merged pull requests:

  • CompatHelper: bump compat for ImageFiltering to 0.7, (keep existing compat) (#79) (@github-actions[bot])
  • CompatHelper: bump compat for StringDistances to 0.11, (keep existing compat) (#80) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 5 years ago

AIBECS.jl - v0.10.10

AIBECS v0.10.10

Diff since v0.10.9

Merged pull requests:

  • add ETOPO ice (#77) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.9

AIBECS v0.10.9

Diff since v0.10.8

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.8

AIBECS v0.10.8

Diff since v0.10.7

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.7

AIBECS v0.10.7

Diff since v0.10.6

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.6

AIBECS v0.10.6

Diff since v0.10.5

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.5

AIBECS v0.10.5

Diff since v0.10.4

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.4

AIBECS v0.10.4

Diff since v0.10.3

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.3

AIBECS v0.10.3

Diff since v0.10.2

Merged pull requests:

  • Update docs deployment (#75) (@briochemc)
  • Fix AWESOME-OCIM data and code download (#76) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.2

AIBECS v0.10.2

Diff since v0.10.1

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.1

AIBECS v0.10.1

Diff since v0.10.0

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.10.0

AIBECS v0.10.0

Diff since v0.9.3

Closed issues:

  • Add Kok et al dataset (#73)

Merged pull requests:

  • Include Kok et all dataset (#74) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.9.3

AIBECS v0.9.3

Diff since v0.9.2

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.9.2

AIBECS v0.9.2

Diff since v0.9.1

Merged pull requests:

  • Prettier Plots recipes (#71) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.9.1

AIBECS v0.9.1

Diff since v0.9.0

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.9.0

AIBECS v0.9.0

Diff since v0.8.7

Closed issues:

  • Use JLD2 with compression instead of BSON for storage (#43)

Merged pull requests:

  • Use JLD2 instead of BSON (#69) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.8.7

AIBECS v0.8.7

Diff since v0.8.6

Merged pull requests:

  • CompatHelper: bump compat for "Bijectors" to "0.9" (#65) (@github-actions[bot])
  • CompatHelper: bump compat for "DataFrames" to "1.0" (#66) (@github-actions[bot])
  • CompatHelper: bump compat for "Distributions" to "0.25" (#67) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 5 years ago

AIBECS.jl - v0.8.6

AIBECS v0.8.6

Diff since v0.8.5

Merged pull requests:

  • SmoothOperator (#64) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 5 years ago

AIBECS.jl - v0.8.5

AIBECS v0.8.5

Diff since v0.8.4

Merged pull requests:

  • CompatHelper: bump compat for "BSON" to "0.3" (#62) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 5 years ago

AIBECS.jl - v0.8.4

AIBECS v0.8.4

Diff since v0.8.3

Closed issues:

  • Issues with replicating documentation example (#58)

Merged pull requests:

  • Update Project.toml (#57) (@briochemc)
  • CompatHelper: bump compat for "Shapefile" to "0.7" (#59) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 5 years ago

AIBECS.jl - v0.8.3

AIBECS v0.8.3

Diff since v0.8.2

Merged pull requests:

  • CompatHelper: bump compat for "Reexport" to "1.0" (#56) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 5 years ago

AIBECS.jl - v0.8.2

AIBECS v0.8.2

Diff since v0.8.1

Merged pull requests:

  • CompatHelper: bump compat for "NCDatasets" to "0.11" (#55) (@github-actions[bot])

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 5 years ago

AIBECS.jl - v0.8.1

AIBECS v0.8.1

Diff since v0.8.0

Merged pull requests:

  • Bump DataFrames dep (#54) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 5 years ago

AIBECS.jl - v0.8.0

AIBECS v0.8.0

Diff since v0.7.15

Closed issues:

  • Evaluate parameter cost in λ space (#50)

Merged pull requests:

  • λspace mismatch (#53) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 5 years ago

AIBECS.jl - v0.7.15

AIBECS v0.7.15

Diff since v0.7.14

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.14

AIBECS v0.7.14

Diff since v0.7.13

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.13

AIBECS v0.7.13

Diff since v0.7.12

Merged pull requests:

  • CompatHelper: bump compat for "Distances" to "0.10" (#45) (@github-actions[bot])
  • CompatHelper: bump compat for "UnitfulRecipes" to "1.0" (#46) (@github-actions[bot])
  • CompatHelper: bump compat for "Flatten" to "0.4" (#47) (@github-actions[bot])
  • Use TransformVariables + without unit conversion (#48) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.12

AIBECS v0.7.12

Diff since v0.7.11

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.11

AIBECS v0.7.11

Diff since v0.7.10

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.10

AIBECS v0.7.10

Diff since v0.7.9

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.9

AIBECS v0.7.9

Diff since v0.7.8

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.8

AIBECS v0.7.8

Diff since v0.7.7

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.7

AIBECS v0.7.7

Diff since v0.7.6

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.6

AIBECS v0.7.6

Diff since v0.7.5

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.5

AIBECS v0.7.5

Diff since v0.7.4

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.4

AIBECS v0.7.4

Diff since v0.7.3

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.3

AIBECS v0.7.3

Diff since v0.7.2

Merged pull requests:

  • Add ETOPO example to P tut (#41) (@briochemc)
  • Add codecov to docs (#42) (@briochemc)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] almost 6 years ago

AIBECS.jl - v0.7.2

AIBECS v0.7.2

Diff since v0.7.1

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.7.1

AIBECS v0.7.1

Diff since v0.7.0

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.7.0

AIBECS v0.7.0

Diff since v0.6.4

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.6.4

AIBECS v0.6.4

Diff since v0.6.3

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.6.3

AIBECS v0.6.3

Diff since v0.6.2

Closed issues:

  • Update OCIM2 files (#33)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.6.2

AIBECS v0.6.2

Diff since v0.6.1

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.6.1

AIBECS v0.6.1

Diff since v0.6.0

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.6.0

AIBECS v0.6.0

Diff since v0.5.4

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.5.4

AIBECS v0.5.4

Diff since v0.5.3

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.5.3

AIBECS v0.5.3

Diff since v0.5.2

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.5.2

AIBECS v0.5.2

Diff since v0.5.1

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.5.1

AIBECS v0.5.1

Diff since v0.5.0

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.5.0

AIBECS v0.5.0

Diff since v0.4.16

Closed issues:

  • use depth of bottom of boxes for sinking particles (#28)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] about 6 years ago

AIBECS.jl - v0.4.16

AIBECS v0.4.16

Diff since v0.4.15

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.15

AIBECS v0.4.15

Diff since v0.4.14

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.14

AIBECS v0.4.14

Diff since v0.4.13

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.13

AIBECS v0.4.13

Diff since v0.4.12

Closed issues:

  • Revise ReadMe to match current state of the package (#23)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.12

AIBECS v0.4.12

Diff since v0.4.11

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.11

AIBECS v0.4.11

Diff since v0.4.10

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.10

AIBECS v0.4.10

Diff since v0.4.9

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.9

AIBECS v0.4.9

Diff since v0.4.8

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.8

AIBECS v0.4.8

Diff since v0.4.7

Merged pull requests:

  • Install TagBot as a GitHub Action (#26) (@JuliaTagBot)

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by github-actions[bot] over 6 years ago

AIBECS.jl - v0.4.7

v0.4.7 (2020-02-06)

Diff since v0.4.6

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by julia-tagbot[bot] over 6 years ago

AIBECS.jl - v0.4.6

v0.4.6 (2020-02-03)

Diff since v0.4.5

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by julia-tagbot[bot] over 6 years ago

AIBECS.jl - v0.4.5

v0.4.5 (2020-02-03)

Diff since v0.4.4

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by julia-tagbot[bot] over 6 years ago

AIBECS.jl - v0.4.4

v0.4.4 (2020-02-03)

Diff since v0.4.3

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by julia-tagbot[bot] over 6 years ago

AIBECS.jl - v0.4.3

v0.4.3 (2020-01-14)

Diff since v0.4.2

Hydrosphere - Ocean Carbon and Temperature - Julia
Published by julia-tagbot[bot] over 6 years ago