Joe Renaud

Results 24 issues of Joe Renaud

Hi, VPlanet team! Looking forward to this week's workshop. I was testing out my installation and found a small bug when running `vplot` after a run on a Windows 10...

## What I am trying to produce A plot with the latitude labels on the left-hand side from -60 to 60 and longitude on the bottom of the plot (inline)...

The following code is supported (and based on this [convo](https://github.com/cython/cython/issues/5245#issuecomment-2083523496), preferred. See also [PR 6177](https://github.com/cython/cython/pull/6177)) style of Cython for a pointer array: ```cython cdef (char *)[4] char_ptr_array ``` However, currently...

Added in "noexcept nogil" as an acceptable pattern to grammar check. Addressing issue #20. _This is untested!_ I could not get the extension to compile locally (using windows) so I...

With cython 3.0.0+ we can write a function that is compiled with two different conditions: ```cython cdef double square(double x) noexcept nogil: return x * x ``` In this particular...

The syntax highlighter flags the word "complex" in the example below as a problem with the message "Statements must be separated by newlines or semicolons". However the syntax is correct....

Users have reported that successful runs of `RadialSolver.radial_solver` give unallocated values when accessing the solutions.k, .h, .l etc. ```python # Problem def run(): solution = radial_solver(*input) k = solution.k return...

bug
Docs
Cython
RadialSolver

**Describe the bug** This is a thread to track improvements / issues related to integration stability when using dynamic liquid layers in RadialSolver. * Causes * Stability problems appear when...

Research Needed
Performance
RadialSolver

Having issues with cibuildwheel building wheels for x86 architectures (on windows and linux) as well as musl-linux. Have disabled these for now in pyproject.toml.

cibuildwheel
Github Actions

The RadialSolver method has the option of scaling relative and/or absolute tolerances based on the layer type. See, for example, [here](https://github.com/jrenaud90/TidalPy/blob/49a004ca564f49e0a9011d4219610bde5bc32c81/TidalPy/RadialSolver/solver.pyx#L575-L576). The scales that are currently in place are just...

Beginner
Research Needed
RadialSolver