Git Product home page Git Product logo

Comments (2)

hemanu avatar hemanu commented on September 23, 2024

section 15

section 23

from basic-well-log-interpretation.

petroGG avatar petroGG commented on September 23, 2024

Gr_log, sp_log, neut_log - represent your GR, SP and Neutronic logs. They are imported in section In [10] with the following command:
data=pd.read_table('WA1.txt', delim_whitespace=True, index_col='M__DEPTH'),
and then reduced to my zone of interest (which is between top_depth and bottom_depth variables) with:
logs=data[(data.DEPT >= top_depth) & (data.DEPT <= bottom_depth)]
So any log is imported as a pandas series that can be called with logs.GR, logs.SP, logs. NPHI ...

Vclgr, vclnd and vclsp are calculated all at once in a loop in section In [23]:
for (i,j,k,l,m) in zip(logs.GR,logs.NPHI,logs.RHOB,logs.ILD,logs.SP):
vclgr_temp.append(vclgr(i, gr_clean, gr_clay))
vclnd_temp.append(vclnd(j,k,neut_clean1,den_clean1,neut_clean2,den_clean2,neut_clay,den_clay))
vclsp_temp.append(vclsp(m, sp_clean, sp_clay))

PS. There is very good library to import your las files into lists or pandas dataframe called lasio.

from basic-well-log-interpretation.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.