-
Notifications
You must be signed in to change notification settings - Fork 9
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
Bugfix/wrong unit water #44
base: master
Are you sure you want to change the base?
Conversation
…ing the absolute of the depth is not relevant
…bugfix/wrong-stress-stuff
…bugfix/wrong-stress-stuff # Conflicts: # tests/robertson_cpt_interpretation/test_robertson_cpt_interpretation.py
…bugfix/wrong-stress-stuff # Conflicts: # tests/robertson_cpt_interpretation/test_robertson_cpt_interpretation.py
…gfix/wrong-unit-water
…gfix/wrong-unit-water
…gfix/wrong-unit-water
…gfix/wrong-unit-water
…gfix/wrong-unit-water
|
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.
self.data.water
transformation from kPa back to MPa to be added at end of method interpret()
. See comment
@@ -85,6 +85,7 @@ def interpret(self, data: AbstractCPT): | |||
MPa_to_kPa = 1000 | |||
self.data.tip = self.data.tip * MPa_to_kPa | |||
self.data.friction = self.data.friction * MPa_to_kPa | |||
self.data.water = self.data.water * MPa_to_kPa |
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.
pore pressures need to be transformed back from kPa to MPa at the end of this method (line 165)
No description provided.