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

[Refactor] Particle variables and functions handling #654

Closed
wants to merge 66 commits into from
Closed
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
f3f6fb2
:computer: Refactor particle to handle scalar and vector properties
kks32 Jun 29, 2020
ad09dfa
:dart: Add testing to particle refactor of scalar properties
kks32 Jun 29, 2020
e68ab89
:computer: Compute mass free function
kks32 Jul 4, 2020
d40b6b0
Merge branch 'develop' of https://github.com/cb-geo/mpm into refactor…
bodhinandach Jul 7, 2020
67303d8
:wrench: modify mass, mass_density_volume
bodhinandach Jul 8, 2020
0a6ac16
:wrench: modify compute_mass function
bodhinandach Jul 8, 2020
adfd93f
:wrench: refactor particle velocity and displacement
bodhinandach Jul 9, 2020
2b92b3f
:wrench: refactor nodal mass and volume
bodhinandach Jul 9, 2020
336cfe6
:wrench: refactor nodal velocity and acceleration
bodhinandach Jul 9, 2020
91d5c97
:wrench: refactor nodal momentum, external, and internal forces
bodhinandach Jul 9, 2020
8ed2eb8
:wrench: refactor nodal pressure
bodhinandach Jul 9, 2020
02911bf
:wrench: Add scalar and vector properties enum
bodhinandach Jul 9, 2020
0feaf6d
:wrench: aesthetic clean up order of initialise()
bodhinandach Jul 9, 2020
bcfb878
:wrench: fix particle vector_properties_ size order
bodhinandach Jul 9, 2020
99b9eea
:dart: add testings for update and return functions
bodhinandach Jul 9, 2020
315cfae
Merge branch 'develop' of https://github.com/cb-geo/mpm into refactor…
bodhinandach Jul 9, 2020
2f54b90
:wrench: add overload functions of mapping
bodhinandach Jul 9, 2020
0facda0
:construction: :dart: test nightly benchmarks with refactored particl…
bodhinandach Jul 9, 2020
4136654
:construction: :dart: refactor map_mass_momentum and tests
bodhinandach Jul 10, 2020
9da224f
Merge branch 'develop' of https://github.com/cb-geo/mpm into refactor…
bodhinandach Jul 10, 2020
cb71c90
:construction: :dart: refactor map_body_force and update_volume
bodhinandach Jul 10, 2020
52eb2b3
:construction: :dart: change assign_velocity to void and cleanup
bodhinandach Jul 10, 2020
a20a2ab
:dart: revert mass change in particle test
bodhinandach Jul 10, 2020
0a0cf7b
:construction: :dart: add return cell pointer and refactor compute_vo…
bodhinandach Jul 10, 2020
fe0f9bf
:wrench: add assert in return and update scalar and vector properties
bodhinandach Jul 10, 2020
b693709
:construction: :dart: return set traction and refactor map traction
bodhinandach Jul 10, 2020
5fc100e
:construction: :dart: refactor pressure smoothing
bodhinandach Jul 12, 2020
bfee43a
:construction: change assign pressure to update pressure
bodhinandach Jul 12, 2020
2727d34
:construction: :dart: refactor update_mass_pressure
bodhinandach Jul 12, 2020
f9602fd
:wrench: fix return value of interpolate vector properties
bodhinandach Jul 12, 2020
a3ee684
:construction: :dart: use interpolate functions in particle
bodhinandach Jul 12, 2020
45aa3ba
:construction: refactor pressure smoothing interpolation
bodhinandach Jul 13, 2020
212505e
:dart: fix and add pressure mapping test
bodhinandach Jul 13, 2020
1251bd7
:construction: add TODO notes in particle.tcc
bodhinandach Jul 13, 2020
27ea5d6
:dart: add test for assign and return scalar and vector property
bodhinandach Jul 13, 2020
b888b07
Merge branch 'develop' of https://github.com/cb-geo/mpm into refactor…
bodhinandach Jul 13, 2020
ae339f1
:wrench: clang format
bodhinandach Jul 13, 2020
f34b64c
:wrench: remove virtual in initialise particle
bodhinandach Jul 14, 2020
164491f
:dart: :construction_worker: revert benchmarks to gcc
bodhinandach Jul 14, 2020
3d35f45
:wrench: modify explanation as suggested
bodhinandach Jul 14, 2020
deb54a7
:construction: :dart: some minor corrections and test addition
bodhinandach Jul 15, 2020
fcfcf87
:hammer: Improve performance with vector
kks32 Jul 17, 2020
385fcca
:pencil: AssocVector
kks32 Jul 18, 2020
86341a6
:fire: Remove unnecessary files
kks32 Jul 20, 2020
c8b65cd
:fire: Delete flat_map
kks32 Jul 20, 2020
5421984
:pencil: External flat_map
kks32 Jul 20, 2020
23be100
:fire: Remove unused includes
kks32 Jul 20, 2020
83a1257
Merge branch 'refactor/particles' into refactor/particles-assocvec
bodhinandach Jul 20, 2020
fc8a8a2
Merge pull request #672 from kks32/refactor/particles-assocvec
cbgeo Jul 21, 2020
222ca55
:wrench: change flat map initialisation
bodhinandach Jul 21, 2020
da461c3
:pencil: External flat_map
kks32 Jul 20, 2020
532aca8
:wrench: add mpm_properties
bodhinandach Jul 21, 2020
b017a99
:wrench: clang-format
bodhinandach Jul 21, 2020
6de587f
:wrench: add functions and container in node
bodhinandach Jul 21, 2020
9f42d94
:wrench: add functions and container in particle
bodhinandach Jul 21, 2020
da1682e
:construction: cosmetic changes as suggested
bodhinandach Jul 21, 2020
3e1f9ff
:construction: add boolean property
bodhinandach Jul 22, 2020
a687fa8
Merge branch 'refactor/particles_properties' of https://github.com/cb…
bodhinandach Jul 22, 2020
47c5f48
:wrench: modify function calls
bodhinandach Jul 22, 2020
6e2913b
Merge branch 'develop' into refactor/particles
ezrayst Jul 24, 2020
4899191
Merge branch 'develop' of https://github.com/cb-geo/mpm into refactor…
bodhinandach Jul 25, 2020
b8a3932
:construction: :dart: add set_traction to boolean_properties and add …
bodhinandach Jul 25, 2020
f2a982c
Merge branch 'develop' of https://github.com/cb-geo/mpm into refactor…
bodhinandach Jul 25, 2020
68506c1
:wrench: fix particle_function for pressure smoothing
bodhinandach Jul 25, 2020
0666b0a
:construction: :dart: refactor and add test for nodal boolean properties
bodhinandach Jul 25, 2020
a0bbd15
Merge branch 'develop' of https://github.com/cb-geo/mpm into refactor…
bodhinandach Jul 28, 2020
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ workflows:
version: 2
build:
jobs:
- gcc
- benchmarks
- clang
- cppcheck
- codecov
Expand Down
Loading