Skip to content

Commit

Permalink
Merge pull request #32 from RahmanOzdemir/master
Browse files Browse the repository at this point in the history
Added relative density calc to Roberston interpret function
  • Loading branch information
EleniSmyrniou authored Mar 28, 2024
2 parents 6bcbbe9 + 0104764 commit 831a177
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ class RobertsonCptInterpretation(AbstractInterpretationMethod, BaseModel):
unitweightmethod: UnitWeightMethod = UnitWeightMethod.ROBERTSON
ocrmethod: OCRMethod = OCRMethod.ROBERTSON
shearwavevelocitymethod: ShearWaveVelocityMethod = ShearWaveVelocityMethod.ROBERTSON
relativedensitymethod: RelativeDensityMethod = RelativeDensityMethod.BALDI
data: AbstractCPT = None
gamma: Iterable = []
polygons: Iterable = []
Expand Down Expand Up @@ -143,6 +144,9 @@ def interpret(self, data: AbstractCPT):
# compute state parameter
self.state_parameter_calc()

# compute relative
self.relative_density_calc(method=self.relativedensitymethod)

# filter values
# lithologies = [""]
# key = ""
Expand Down

0 comments on commit 831a177

Please sign in to comment.