From 0cf1029ee7d0f24e7c420e9f996c2326c88a5703 Mon Sep 17 00:00:00 2001 From: anand43 Date: Fri, 16 Feb 2024 13:47:34 -0500 Subject: [PATCH 1/2] Added module load fftw3. cmake could not find it unless I manually loaded it. Adding it to the build file as a comment for review --- buildscripts/build_rcac_intel.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/buildscripts/build_rcac_intel.sh b/buildscripts/build_rcac_intel.sh index 58919182f..57433581f 100755 --- a/buildscripts/build_rcac_intel.sh +++ b/buildscripts/build_rcac_intel.sh @@ -51,6 +51,7 @@ if [[ $MACHINE_NAME == "bell" ]]; then module load netcdf/4.7.4 module load netcdf-fortran/4.5.3 module load use.own + # module load fftw/3.3.8.lua module load conda-env/mintongroup-py3.8.5 MACHINE_CODE_VALUE="Host" elif [[ $MACHINE_NAME == "negishi" ]]; then From 38445eeb6eb573aa5f4b40f6e656272562f7867c Mon Sep 17 00:00:00 2001 From: anand43 Date: Fri, 16 Feb 2024 14:13:07 -0500 Subject: [PATCH 2/2] changed rot units in the readme to deg/TU --- README_tables/add_body_kwargs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README_tables/add_body_kwargs.md b/README_tables/add_body_kwargs.md index 59f52078f..a172cfc5a 100644 --- a/README_tables/add_body_kwargs.md +++ b/README_tables/add_body_kwargs.md @@ -15,7 +15,7 @@ | ```Gmass``` | Gravitational mass value(s) of bodies. Only for massive bodies. Only ```mass``` **OR** ```Gmass``` may be set. | float or array-like of floats | ```radius``` | Radius value(s) of bodies. Only for massive bodies. | float or array-like of floats | ```rhill``` | Hill Radius value(s) of bodies. Only for massive bodies. | float or array-like of floats -| ```rot``` | Rotation rate vector(s) of bodies in degrees/sec. Only for massive bodies. Only used if ```rotation``` is set to ```True```. | (n,3) array-like of floats +| ```rot``` | Rotation rate vector(s) of bodies in degrees/TU. Only for massive bodies. Only used if ```rotation``` is set to ```True```. | (n,3) array-like of floats | ```Ip``` | Principal axes moments of inertia vector(s) of bodies. Only for massive bodies. Only used if ```rotation``` is set to ```True```. | (n,3) array-like of floats | ```J2``` | The unitless value of the spherical harmonic term equal to J2*R^2 where R is the radius of the central body. | float or array-like of floats | ```J4``` | The unitless value of the spherical harmonic term equal to J4*R^4 where R is the radius of the central body. | float or array-like of floats