<

Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 13 to 24 of 27

Thread: Define initial saturation of model

  1. #13
    Dear Vinomarky & Itag,
    Thank you so much for your great contribution. I will go through your advise. I will come after some homework
    Thanks
    Dipak

  2. # ADS
    Spons Circuit
    Join Date
    Always
    Posts
    Many
     
  3. #14

    Join Date
    Nov 2008
    Location
    Australia
    Posts
    508
    Again - agree in general your approach works, but not always - so we still have to agree to disagree on the use of 'never'

    In cases where you have a lot of low perm reservoir, the saturation of which is highly dependent upon the height above free water level and permeability AND a normal or modified J-function cannot be fit, then it breaks down if you want to use one SATNUM.

    Let me illustrate with an example which I used to match a low relief, low perm oil reservoir - many of the wells in which had initial mobile water (the initial WC's correlateable to the vertical distance from FWL, and agreeing with Pc curves from SCAL). J-function would not honor saturations well enough, but I found a Lambda function of perm worked nicely. Eclipse does not support Lambda functions, so how else can you honour initial saturations if you don't calculate them outside of Eclipse? There is nothing special about the way Eclipse initializes saturations - the math is pretty basic, so what is wrong about doing the same math outside of Eclipse when Eclipse is incapable of handling a more complex saturation height function?

    I'd be delighted to find an easier way of doing it.

    Below snippet of code I used as a Petrel macro (removed my name & well references) to calculate not only the endpoints, but also the initial saturations using a saturation height function that fit measured and log data nicely.

    ------------------------------------------
    # Created by xxxx, August 2007
    # Macro to calculate actual and endpoint water & oil saturations

    # Actual saturations from fitted secondary drainage curves
    # Fitted Lambda function Sw = [a x (h^-lambda)] + B
    # a = a1 x log(perm) + a2
    # lambda = L1 x log(perm) + L2
    # B = b1 x log(perm) + b2
    # where a1, a2, L1, L2, b1, b2 are constants, h is height above FWL (in m) and k is in mD
    #
    # For xx (xxxx & xxx) drainage curves, the fit constants are;
    $a1=-7.75017
    $a2=34.17743
    $l1=-0.00041
    $l2=0.002083
    $b1=7.5149
    $b2=-33.1969


    $FWL = -1039

    # Calculate height above FWL, set to zero if below FWL to prevent calculation problems
    $h = (Depth()-$FWL)*0.3048
    $h=if($h<0,0,$h)

    # Calculate Sw, error-trap to be within 0.0 to 1.0 range
    $a = ($a1*log(Perm))+$a2
    $lambda = ($l1*log(Perm))+$l2
    $B = ($b1*log(Perm))+$b2
    Sw=if($h=0,1,($a*(Pow($h,-$lambda)))+$B)
    Sw=if(Sw<0,0,Sw)
    Sw=if(Sw>1,1,Sw)

    # Irreducible water saturation, Swir from (1 - Soi)
    # From regression of perm vs Soi from capillary pressures and NMR
    # Swir = 1-((0.0371*LN(perm))+0.3595) (capped to max of 1-Sw)

    SWCR = 1-((0.0371*LN(Perm))+0.3595)
    SWCR = if(SWCR>Sw,Sw,SWCR)
    SWCR =if(SWCR<0,0,SWCR)


    # Residual oil saturations from fitting Land constant equation to
    # imbibition capillary curves, with constant = 9
    # Sor = 1/(9 + (1 / (1 - Swir) ) )

    SOWCR= 1/(9 + (1 / (1 - SWCR) ) )
    SOWCR=if(SOWCR>0.3,0.3,SOWCR)
    SOWCR=if(SOWCR<0,0,SOWCR)

    SWCR=if(SOWCR+SWCR>=1,0.999-SOWCR,SWCR)

    # Max water saturation = 1 - residual oil, or 1 if below FWL
    SWU=if(Depth()<FWL,1,1-SOWCR)

    # Scale rel xplot_perm end-points
    # Use Corey curves to determine actual rel xplot_perm
    # Normal perm, Co = 1.93, Cw = 1.15
    # High perm, Co = 1.49, Cw = 0.61

    # Scale for rel xplot_perm to oil at Swi
    KRO=(0.0344*LN(Perm))+0.5427
    KRO=if(KRO>1,1,if(KRO<=0.0001,0.0001,KRO))

    # Scale for rel xplot_perm to water at Sor
    KRW=(0.0109*LN(Perm))+0.0357
    KRW=if(KRW>1,1,if(KRW<=0.0001,0.0001,KRW))

  4.    Sponsored Links



    -

  5. #15

    Join Date
    Jan 2009
    Location
    ALA, KZ
    Posts
    436
    Quote Originally Posted by dipak_m View Post
    Dear Term,

    I will be thankfull to you if you give me some basic and detailed idea regarding initialisation of model. I know in this forum you are ony guy to do needful regarding this matter. I made a model in petrel. I want run simulation in Petrel RE. I know there are two ways to define initial saturation. 1. Using SATNUM as per saturation and using relperm and cap data. 2. Using only log derived saturation, no use of SATNUM. In this I have to give the initial pressure and Rs of the model. If I am wrong, correct me.

    Plese give me the detailed procedure to define initial saturation of the model.

    How I link cap data to relperm data as per SATNUM.

    Plase help me.

    Thanks

    Dipak
    Dipak, lets go step by step
    But before doing something look carefully all keywords i will mentioned here in Eclipse reference manual -otherwise all efforts will be wasted
    first try to make simple dead oil model ( no soluted gas)
    First in order to initialize the model you need to give the eclipse idea how many phases you will use
    in or case 2 oil and water
    Now eclipse knows that you will use 2 phase model so he prepare needed arrays for initialization and if for example you will give him the keyword PVDG eclipse will give you an error
    The eclipse do following step to initialize you model in equilibrium conditions
    1 calculation of formation pressure ( you assign it in EQUIL keyword)
    2 calculation of capillary pressure of phases, PC (in our case only 2 water and oil , how it calculates i wrote in my previous post)
    3 and at last when eclipse knows PC , it uses your SCAL tables ( 1 and 4 column) and linear extrapolate SW between known values in the table
    Finnito
    So if you will make scal tables which are inline with your log data(how to make it , agian i wrote it in my previous post) then it will means that saturation in your coarse model will be like in you fine model
    You model can have more that 2 SCAL tables for example if you have different type of lithology in this case you need to say eclipse what cells belongs to what SCAL table
    the keyword responsible for that is SATNUM
    And one more advise - if you want to learn fast use eclipse ( not office not petrel) and read manuals
    PS. also carefully read all post here , there are a lot of information to learn, rgds
    Last edited by temr; 05-03-2010 at 09:35 PM.

  6. #16

    Join Date
    Jan 2009
    Location
    ALA, KZ
    Posts
    436
    One more thing.
    Dont try to make one complex sim model at once .
    first make small model analyze all issues
    make workflow
    test model improve you workflow
    and only then apply your workflow to big problems (models)

  7. #17
    Dear Term
    Thank you for very simple explanation of initialisation. I have a question .

    Quote Originally Posted by temr View Post
    then put all points to plot on y axes put Sw on x axes put Pc values
    apply power trend and you will get following formula
    y=a*x^b
    So that what you are looking for
    use this dependency in scal file and you will get the same saturation in your sim model of course if you will get high R2
    How I use this cap-Sw dependency in scal file. Please give me in detailed.

    Thnaks
    Dipak

  8.    Spons.


  9. #18

    Join Date
    Jan 2009
    Location
    ALA, KZ
    Posts
    436
    In scal row 1 you have sw
    so having function from logs pc=a*sw^b you will have corresponding PC

  10. #19
    Thank you very much Term

    When you are starting your Petrel Training like Eclipse step by step?

  11. #20

    Join Date
    Jan 2009
    Location
    ALA, KZ
    Posts
    436
    not at all
    soon

  12. #21
    Quote Originally Posted by temr View Post
    not at all
    soon
    Waiting for

  13. #22
    Not sure if this one was offered before but here it is. It may be useful

    "A Relationship between Porosity and Water Saturation: Methodology to Distinguish Mobile from Capillary Bound Water"

    [link Point to another website Only the registered members can access]

    Regards

    “Considering the many productive uses of petroleum, burning it for fuel is like burning a Picasso for heat.”
    —Big Oil Executive

  14. #23
    Very Good discussion on Contacts, gradients and thinks to remember so as not to get lost.

    [link Point to another website Only the registered members can access]

    Regards

    “Considering the many productive uses of petroleum, burning it for fuel is like burning a Picasso for heat.”
    —Big Oil Executive

  15.    Spons.


  16. #24
    Thanks to all!
    as this post is very interesting I am planning to copy all your comments and keep track of them at reach as personal notes...if you don't mind!
    cheers!
    Kader

  •   

Similar Threads

  1. Initial water saturation - Eclipse
    By catapam in forum Reservoir
    Replies: 1
    Last Post: 08-24-2011, 12:26 AM
  2. Article: Initial water saturation - Eclipse
    By catapam in forum Home Articles
    Replies: 0
    Last Post: 08-23-2011, 10:59 PM
  3. Replies: 1
    Last Post: 03-30-2011, 01:13 AM
  4. Initial saturation
    By dipak_m in forum Reservoir
    Replies: 9
    Last Post: 04-21-2010, 05:12 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •