Andrew Williams
Andrew Williams
Full set of instructions for compiling on ARCHER2 is [here](https://github.com/holly-t/build-instructions/blob/master/apps/Isca/ARCHER2_Isca_gcc.md). These will soon be merged into the main build instructions repository here: https://github.com/hpc-uk/build-instructions I haven't run *all* of the test...
Closes #117
``` from windspharm.xray import VectorWind w = VectorWind(u, v) ``` should be ``` from windspharm.xarray import VectorWind w = VectorWind(u, v) ```
Example usage below. Hoping this will make exploring different kernels a bit easier for users.  To-do: - [] Add tests
Hi Brian! Thanks for making this code available, it's been really helpful for me recently. I did try to code up something similar myself but couldn't understand how... I was...
At the moment, `compute_tau_H2ON2_CO2dilute` assumes that CO2 is a trace gas and so doesn't include the partial pressure of CO2 in the calculation. I'm currently running PyRADS with CO2 values...
This PR fixes a couple of the issues in #16 related to unused code and global instances. Changes: 1) `use_numba` option deprecated. I think it might be possible to fix...
Hi all! Just looking around the code and am wondering how the package/the Bryan(2008) code deals with `nan`s? Lots of CMIP data on pressure levels is `nan` because of orography,...
Firstly, I've spent the day marvelling at how well `interp_hybrid_to_pressure()` works for interpolating CMIP6 model data on hybrid sigma pressure coordinates! So thank you! Now, my request... There are a...
Implements the simple spectral longwave radiation model (SSM) into Isca. Paper documenting the scheme is here: https://arxiv.org/abs/2508.09353 Haven't added a trip test yet, and not sure how this would interact...