-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from febrifahmi/dev
update: adding some test and updating README.md
- Loading branch information
Showing
4 changed files
with
81 additions
and
8 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,35 @@ | ||
# geotekppu | ||
# GeotekPPU (geotekppu) | ||
![Coverage](coverage.svg "Test Coverage") | ||
A python module for geotechnic analysis | ||
|
||
A python module for geotechnic analysis. | ||
|
||
## Usage | ||
|
||
### Rock Mass Rating (RMR89) | ||
|
||
Rock Mass Rating (RMR) is a rating system proposed by Bieniawski (1989) to classify rock based on five classification parameters. | ||
|
||
``` | ||
Parameters: | ||
----------- | ||
r1 : strength rating | ||
r2 : Rock Quality Designation (RQD) rating | ||
r3 : space of discontinuity rating | ||
r4 : condition of discontinuity rating | ||
r5 : ground water rating | ||
Return(s): | ||
---------- | ||
RMR89 / rock mass rating value which consists of: | ||
- Rating value | ||
- Class number (I, II, III, IV, V) | ||
- Description (Very good rock, Good rock, Fair rock, Poor rock, Very poor rock) | ||
``` | ||
|
||
References: | ||
----------- | ||
Code developed base on [1]__ | ||
.. [1] Bieniawski, Z.T. 1989. Engineering rock mass classifications. New York: Wiley. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Copyright (2023) Febri Fahmi Hakim ([email protected]) and Daru Jaka Sasangka | ||
Copyright (2023) Febri Fahmi Hakim ([email protected]) and Daru Jaka Sasangka ([email protected]) | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
@@ -155,7 +155,7 @@ def r5(inflow, wpress, cond): | |
inflow - inflow per 10 m tunnel length (i/m) | ||
wpress - joint water pressure / major principal | ||
cond - general conditions | ||
cond - general conditions (dry, damp, wet, dripping, or flowing) | ||
Return: | ||
------- | ||
|
@@ -183,9 +183,6 @@ def rmr89(r1, r2, r3, r4, r5): | |
An implementation of [1]__. | ||
Features: | ||
--------- | ||
Parameters: | ||
----------- | ||
|
@@ -201,7 +198,7 @@ def rmr89(r1, r2, r3, r4, r5): | |
RMR89 / rock mass rating value which consists of: | ||
- Rating value | ||
- Class number (I, II, III, IV, V) | ||
- Description (Very good rock, good rock, Fair rock, Poor rock, Very poor rock) | ||
- Description (Very good rock, Good rock, Fair rock, Poor rock, Very poor rock) | ||
Notes: | ||
------ | ||
|
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