OPM / opm-common

Common components for OPM, in particular build system (cmake).
http://www.opm-project.org
GNU General Public License v3.0
30 stars 110 forks source link

Source code of the opm python library #3617

Open soulstealer-star opened 11 months ago

soulstealer-star commented 11 months ago

Dear all,

Can you give me any clue that I can find the source code of the opm python library? Especially like the function called ERst, EclOutput, Because I did not find them where the python library was installed

the example import code is following:

from .opmcommon_python import ERst

Or the souce code are just ERst.cpp or EclOutput.cpp?

akva2 commented 11 months ago

you find the source at https://github.com/OPM/opm-common/tree/master/python/cxx And yes, it is basically ERst.cpp and EclOutput.cpp with some thin wrapping for some of the methods.

soulstealer-star commented 11 months ago

Thanks!