-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
Vectors for Replay Mode #9
Closed
Closed
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
2dfd246
adapt to new directory structure in precice
richahert 214e887
different prettyprint location
richahert 0b140e8
support writing vector data in a vtk
richahert 9c98322
partition_mesh.py should work for vectors now
richahert 73312f6
vector functionality unfinished
richahert 35ac49e
Merge remote-tracking branch 'upstream/master'
richahert 1a2bdd4
fixes after merging updates
richahert c02aa36
3d vector support in preciceMap.cpp
richahert 8d5e0c9
support for precice export, still buggy
richahert fb4f319
enable support to read from multiple vectors with reader.ReadAllVecto…
richahert 6e317fd
add script for converting precice output
richahert f122c4c
Merge branch 'master-upstream' into vectors
richahert 0d09207
add stuff to gitignore
richahert 8c45bc7
Delete bunny.vtk
richahert 395d2c5
cleanup
richahert cfe67fd
timestep is implemented as precice time window
richahert f735d1b
use roundmesh in every round
richahert 243ee93
add log to gitignore
richahert d8699ca
consistent dimensions for data
richahert 1b24eb8
cleanup
richahert f73d999
cleanup
richahert 069f941
cleanup
richahert cd79817
further cleanup
richahert 062ee1e
github wants a new line at end of file
richahert 897d13c
revert to scalar case
richahert f03cd29
write Vectordata with --vectordata flag
richahert 0b2258d
consistent use of datadim for dimension of data vectors.
richahert 33dce04
some requested changes
richahert 948996f
Remove subprocesses and use mesh_io functions directly
richahert 4bbf42d
remove leftovers
richahert 428fc10
its a tag for data, not a function
richahert 252ab7c
refactor write process for vectors
richahert 94537d4
remove --vectordata tag
richahert 53c6f88
delete leftovers
richahert b81387b
remove pointless or statement
richahert 1936e8b
simplify read_txt
richahert d124d0f
remove unnecessary imports
richahert 13f1c56
delete vector_demo.sh
richahert 944e457
revert chagens
richahert 9b0423e
delete readVectorData() because general function exists
richahert f7c27d1
remove vectordata tag because it is automated
richahert fdedc9e
just formatting
richahert 84ebcbc
formatting againg..
richahert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a good opportunity to simplify this code.
Ideally this should simply be something similar to
zip -> map (concat map(str) join) -> write
:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see what you mean, however I didn't find a much simpler way that works for all possibilities.