-
Notifications
You must be signed in to change notification settings - Fork 41
Description
Recall single valued functions
- I think we should not mod any of the angles we compute
$\theta, \zeta, \phi, \alpha, \vartheta$ inside our compute functions. Otherwise, we can run into issues because there are functions of interest which are not periodic. 1
We don't mod
but this will not be satisfied if we mod
Currently on master we mod This doesn't cause issues for my work, but FYI it would impede computing
- Inside the coordinate mapping routines, we mod the coordinates by the period common to all periodic functions of those coordinates. This is fine if we only care about feeding the output to periodic functions, and should help accelerate convergence of the root finding. If we care about feeding these coordinates to non periodic functions, such as a radial derivative of
$\alpha$ , dependency, or chain multiple coordinate mappings together, then we could get wrong results.
I think 1. can be done without drawbacks. Not sure if 2 affects anyone. 2 affects me