Nick Wogan
Nick Wogan
Suppose I have project `A` which depends on `B`. And suppose `A` and `B` both depend on `D`. But `D` isn't a cmake project. I can still use CPM to...
Really like CPM. Thanks so much. This is more of a question than an issue. I am trying to build binaries of [my project](https://github.com/Nicholaswogan/numblsoda) with Github actions. This fails on...
@stuartarchibald I made a wrapper for Minpack, which can be called from within numba jit compiled functions: https://github.com/Nicholaswogan/NumbaMinpack . scipy.optimize.root uses minpack. The wrapper is a bit hacky, but it...
When using the Fortran 2003 interface to Sundial, retrieved arrays from NVectors are not the correct dimension https://github.com/LLNL/sundials/blob/e2f29c34f324829302037a1492db480be8828084/src/sundials/fmod/fsundials_nvector_mod.f90#L824 The Fortran-C interface assumes NVector arrays are always length 1. So, for...
Here is an example program. It tries to to run two integrations with FCVODE. ```fortran module vars integer*8 neqs end module program test use vars implicit none neqs = 1...
I am trying to use an analytical banded jacobian with CVODE_BDF. My goal is to provide CVODE_BDF with a jacobian function which returns the jacobian in band storage (not a...
Would be more convenient if you used [scikit-build](https://github.com/scikit-build/scikit-build) for an easier install. The benefit is that the MultiNest library could just be built and contained within PyMultiNest package. I've used...
VPLanet would probably be ~10x faster, and a more flexible if it used a production quality ODE solver. I think [LSODA (this is link to C version)](https://github.com/sdwfrost/liblsoda) is a good...
I'm trying to build LFortran on MacOS ARM following: https://docs.lfortran.org/en/installation/#build-from-git When I run `./build0.sh` I get an error ```sh (lf) nicholas@Nicholass-MacBook-Air lfortran % ./build0.sh + ci/version.sh ++ git describe --tags...
I think this is an indexing error for fixed mixing ratio upper boundary conditions https://github.com/VirtualPlanetaryLaboratory/atmos/blob/cdfe1b0bc30dc396cb946dbf7079643bbd2236d9/PhotoMain.f#L2020 I think the `K` should be replaced with an `I`. The code should be ```fortran...