Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFC: source terms via global vector storage #173

Merged
merged 61 commits into from
Nov 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
d5ecc49
add getter for number of dofs
benegee Feb 22, 2024
72709e5
change trixi_load_cell_average
benegee Feb 22, 2024
71ba4bf
fix: ensure Int32
benegee Feb 23, 2024
9c83b05
adapt reference value
benegee Feb 23, 2024
5b3960b
add getter for all dofs values
benegee Feb 23, 2024
3e31f4a
adapt next value
benegee Feb 23, 2024
2d45c62
add trixi_store_in_database
benegee Feb 26, 2024
92d817a
add trixi_ndofs_element
benegee Feb 26, 2024
530f5cc
add tests
benegee Feb 26, 2024
c7d38d4
add missing parts in tests
benegee Feb 26, 2024
ba00c6f
fix tests
benegee Feb 26, 2024
cdf6e5e
deallocate first
benegee Feb 26, 2024
aa6d8c7
add trixi_load_prim to Fortran API
benegee Feb 26, 2024
cf43795
reference value
benegee Feb 26, 2024
dda491a
get doxygen right
benegee Feb 26, 2024
35513ac
Merge branch 'main' into more-data-access
sloede Feb 26, 2024
bf0b732
Merge branch 'main' into bg/store-in-database
benegee Feb 28, 2024
b864850
add trixi_get_time, trixi_load_node_coordinates
benegee Feb 29, 2024
9430f2d
implement source terms controller
benegee Feb 29, 2024
5956a78
libelixir with source terms via database
benegee Feb 29, 2024
ccd23fc
change Array to Vector
benegee Feb 29, 2024
1be73d9
spelling
benegee Feb 29, 2024
6170610
Merge branch 'more-data-access' into bg/store-in-database
benegee Mar 7, 2024
94cc1c7
Merge branch 'more-data-access' of github.com:trixi-framework/libtrix…
benegee Mar 7, 2024
7dbb2c6
make everything more consistent!
benegee Mar 7, 2024
7906080
use const double *
benegee Mar 8, 2024
ff6ac54
Merge branch 'main' into more-data-access
benegee Mar 11, 2024
dfea9e4
Merge branch 'main' into more-data-access
sloede Apr 18, 2024
017e166
Merge branch 'bg/store-in-database' of github.com:trixi-framework/lib…
benegee May 13, 2024
f534175
Merge branch 'main' into more-data-access
benegee May 13, 2024
8b6a81f
Merge branch 'more-data-access' into bg/store-in-database
benegee May 13, 2024
f96436b
missed merge conflict
benegee May 13, 2024
b76ca70
transpose calloc args
benegee May 13, 2024
37b88a1
Merge branch 'main' into more-data-access
benegee Jun 25, 2024
95ba0cc
Merge branch 'more-data-access' into bg/store-in-database
benegee Jun 28, 2024
b40a2a1
add functions to get quadrature information
benegee Jul 24, 2024
e4d6901
update CI badge URL
benegee Jul 24, 2024
66ee664
Merge branch 'main' into more-data-access
benegee Jul 24, 2024
3f665f0
Merge branch 'more-data-access' into bg/store-in-database
benegee Jul 24, 2024
3a0387b
remove load_node_coordinates
benegee Jul 24, 2024
6627b97
add get_t8code_forest to Fortran interface
benegee Jul 26, 2024
2550872
format
benegee Jul 26, 2024
211de01
Merge branch 'more-data-access' into bg/store-in-database
benegee Jul 26, 2024
08daf22
add trixi_store_in_database to Fortran interface
benegee Jul 26, 2024
312e979
Merge branch 'main' into bg/store-in-database
benegee Nov 18, 2024
a175a04
adapt min version according to main CMakeLists.txt
benegee Nov 18, 2024
d5fd61f
missed while merging
benegee Nov 18, 2024
4449a82
Merge branch 'main' into bg/store-in-database
benegee Nov 19, 2024
0a359b1
change default argument for DataBase parameter
benegee Nov 19, 2024
7b654a4
remove deprecated export
benegee Nov 19, 2024
41ab02a
test for get_time
benegee Nov 19, 2024
6bda669
add tests for trixi_store_in_database
benegee Nov 19, 2024
a8c573e
need Int32
benegee Nov 19, 2024
5a33b95
cannot compare Refs
benegee Nov 19, 2024
378dc90
check based on address
benegee Nov 19, 2024
8c36455
relax error tolerance
benegee Nov 19, 2024
f28d802
remove deprecated example
benegee Nov 19, 2024
fdfb80d
rename get_time to get_simulation_time
benegee Nov 25, 2024
9b2508d
rename database to registry
benegee Nov 25, 2024
e21ba07
spurious Ref access
benegee Nov 25, 2024
223866d
Merge branch 'main' into bg/store-in-database
sloede Nov 26, 2024
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
Prev Previous commit
Next Next commit
spelling
benegee committed Feb 29, 2024
commit 1be73d99862dd0ec6cf94b4b0e5633edf7075773
2 changes: 1 addition & 1 deletion src/api.f90
Original file line number Diff line number Diff line change
@@ -347,7 +347,7 @@ real(c_double) function trixi_get_time(handle) bind(c)
!!
!! @brief Get coordinates of all nodes (degrees of freedom).
!!
!! The coordinates of all nodes (degress of freedom in the DG method) are stored dimension-
!! The coordinates of all nodes (degrees of freedom in the DG method) are stored dimension-
!! wise in the provided array `x`, i.e. x-coordinates will be in the beginning and so on.
!! The given array has to be of correct size, i.e. number of nodes times dimension, and
!! memory has to be allocated beforehand.

Unchanged files with check annotations Beta

*
* @brief Get coordinates of all nodes (degrees of freedom).
*
* The coordinates of all nodes (degress of freedom in the DG method) are stored dimension-

Check warning on line 667 in src/api.c

GitHub Actions / Spell Check with Typos

"degress" should be "degrees" or "digress".
* wise in the provided array `x`, i.e. x-coordinates will be in the beginning and so on.
* The given array has to be of correct size, i.e. number of nodes times dimension, and
* memory has to be allocated beforehand.