Skip to content
Open
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4c1bb50
Adds a Unit class to CoefClasses
Sep 19, 2025
b515bc1
Bind the setUnit() member of Coefs
Sep 19, 2025
15e2fed
A few minor fixes to case handling
Sep 20, 2025
3b96170
Minor fixes
Sep 20, 2025
a97277e
Update pyEXP/CoefWrappers.cc
The9Cat Sep 20, 2025
ca50f5b
Update pyEXP/CoefWrappers.cc
The9Cat Sep 20, 2025
67a8cce
Update pyEXP/CoefWrappers.cc
The9Cat Sep 20, 2025
b68e494
Update pyEXP/CoefWrappers.cc
The9Cat Sep 20, 2025
080e7ce
Update expui/Coefficients.cc
The9Cat Sep 20, 2025
33b50b9
Update expui/Coefficients.cc
The9Cat Sep 20, 2025
d8e763b
Remove tabs from parameter documentation
Sep 20, 2025
a344e50
Some minor fixes: use string equals rather than find for matching, li…
Sep 20, 2025
e6040d8
Comments only
Sep 22, 2025
5baf021
Added unit checking code and test routine
Oct 21, 2025
215da3a
Added unit name checking
Oct 21, 2025
77cc613
Print warning if exactly 4 units including G are not provided
Oct 21, 2025
e3b5fb4
Merge branch 'devel' into AddUnits
Oct 22, 2025
feabfdb
Merge branch 'devel' into AddUnits
The9Cat Oct 22, 2025
27c1763
Update expui/UnitValidator.H
The9Cat Oct 22, 2025
a69dcba
Make pyEXP interface consistent with C++ code unit db check
Oct 22, 2025
28eec3d
Merge branch 'AddUnits' of github.com:EXP-code/EXP into AddUnits
Oct 22, 2025
02675c7
Changed name of setUnit(tuple) to setUnits(tuple) and added a setUnit…
Oct 22, 2025
74e9d88
Added a removeUnits() member function for completeness
Oct 22, 2025
21a6ea3
Added more aliases
Oct 22, 2025
3c5c94a
Added more comments/documentation only
Oct 24, 2025
00e3f60
Some minor cleaning up
Oct 24, 2025
8d4ca2b
Do not build ICs if utils build is disabled
Oct 29, 2025
29245f2
Added default EXP n-body units with L=M=T=G; Coefs throws an exceptio…
Oct 29, 2025
ad283de
Added type reflection for units
Nov 7, 2025
e1eb438
Merge branch 'devel' into AddUnits
Nov 7, 2025
97f8a14
Merge branch 'devel' into AddUnits
michael-petersen Nov 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions expui/BasisFactory.H
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ namespace BasisClasses
//! Get the current pseudo acceleration value
Eigen::Vector3d currentAccel(double time);

//! Gravitational constant
double G = 1.0;

public:

//! The current pseudo acceleration
Expand Down
Loading