-
Notifications
You must be signed in to change notification settings - Fork 248
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
[FluidApp] Adding CFD utilities to calculate Y_PLUS and U_TAU #7039
Closed
Closed
Changes from 18 commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
5b982fe
adding variables
sunethwarna 8fb798e
initial cfd_utilities commit
sunethwarna 565c494
adding cfd utilities
sunethwarna b627bf1
adding cfd_function_process.py
sunethwarna aeaeae7
adding cfd_utility tests
sunethwarna acf2a78
bug fix
sunethwarna f4254cb
adding cfd_function_process minor change
sunethwarna a7779bd
adding cfd_function_process test
sunethwarna ab096c3
method name change
sunethwarna a7e29ed
add test to Fluid app
sunethwarna af809dc
bug fix
sunethwarna 55aecd7
remove unused variable
sunethwarna 76b097f
remove unused import
sunethwarna e8be43b
merge remote-tracking branch 'origin/master' into flud-cfd-utility-y-…
sunethwarna b9613a3
update
sunethwarna 65408f0
adding KRATOS_API
sunethwarna 2506440
using isinstance
sunethwarna 23393f1
fix KRATOS_API
sunethwarna b47bd33
using parallel_utilities.h
sunethwarna 4e0bf6d
adding doxygen comments
sunethwarna e52de15
using geoemtry normals
sunethwarna 320a43e
using geometry center
sunethwarna df3c179
adding checks
sunethwarna 4e43561
Update applications/FluidDynamicsApplication/custom_utilities/cfd_uti…
sunethwarna 65659b0
fix copy paste error
sunethwarna 87ebff6
Merge branch 'flud-cfd-utility-y-plus' of https://github.com/KratosMu…
sunethwarna 258e554
formatting
sunethwarna bf27154
Merge remote-tracking branch 'origin/master' into flud-cfd-utility-y-…
sunethwarna 2b05bcb
Merge remote-tracking branch 'origin/master' into flud-cfd-utility-y-…
sunethwarna 78ee65c
removing evaluate in point
sunethwarna 4671657
Merge remote-tracking branch 'origin/master' into flud-cfd-utility-y-…
sunethwarna c021ef6
seperating files
sunethwarna 31e875b
add missing kratos_api
sunethwarna e961c3f
change name
sunethwarna 5b36c9e
checks
sunethwarna d1f4133
remove unused import
sunethwarna defeed1
adding kratos_api
sunethwarna 53bbf46
adding kratos_api to cpp
sunethwarna bd57bec
remove kratos_api from cpp
sunethwarna 8075af9
minor
sunethwarna 49339a7
Merge remote-tracking branch 'origin/master' into flud-cfd-utility-y-…
sunethwarna f3169f1
Update applications/FluidDynamicsApplication/tests/cfd_function_proce…
sunethwarna 1a5dc52
remove defaults for python
sunethwarna 7a5c065
Merge branch 'flud-cfd-utility-y-plus' of https://github.com/KratosMu…
sunethwarna 7edd3a2
bugfix - missing closing brace
sunethwarna 86e726a
update tests
sunethwarna 2e06daa
Merge remote-tracking branch 'origin/master' into flud-cfd-utility-y-…
sunethwarna 85b532b
adding distribute method to variable_utils
sunethwarna 3cef0d8
adding distribute method test
sunethwarna 4eaf227
update to use variable utils
sunethwarna 48e6766
fix for windows compilation
sunethwarna 5a357f7
add int versions
sunethwarna e0c065d
fix variable type conflict
sunethwarna 9e4317c
applying codacy suggestions
sunethwarna 809efc3
Merge remote-tracking branch 'origin/master' into flud-cfd-utility-y-…
sunethwarna bc7c234
adopt to newer variable_utils
sunethwarna 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
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 done this way to oblige using kwargs?
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 did this merely to avoid everytime passing the well known values for constants used in wall modelling.
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.
to the best pf my understanding (it these are kwargs) you are impicitly adding a dictionary on every call.
this will be negligible if you call once the function for many elements, however it wouldn't be acceptable if you are calling it once per node.
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.
These python level calls are not used at the moment, I just exposed them to python in case someone wants to use them in their own scripts. If someone uses them, they need to call this method for every entity (node, element, condition). So I will remove them.
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.
ping @sunethwarna