1093
Support Package for Petrel

Support Package for Petrel

  • Upload
    others

  • View
    10

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Support Package for Petrel

Support Package for Petrel

Page 2: Support Package for Petrel

Support Package for Petrel

Support Package for Petrel 2.1.0.66

Chad Van Fleet

[email protected]

MathWorks

Support Package for Petrel

The Support Package for Petrel enables you to:

Import/export MAT files from Petrel's user interface.

Get/set/add nodes in Petrel programmatically.

Supported Import/Export Types:

|---------------------------------|--------|-----------|--------|| Type | Get | Set | Add ||---------------------------------|--------|-----------|--------|| CheckShot | Yes | Yes(1)(2) | Yes(2) || Function | Yes | Yes | Yes || PointSet | Yes | Yes | Yes || PointSet Property Continuous | Yes | Yes(1) | Yes || PointSet Property Discrete | Yes | Yes(1) | Yes || PolylineSet | Yes | Yes | Yes || PolylineSet Property Continuous | Yes | Yes(1) | Yes || PolylineSet Property Discrete | Yes | Yes(1) | Yes || Grid | Yes | Yes(3) | Yes(3) || Grid Property Continuous | Yes | Yes(1) | Yes || Grid Property Discrete | Yes | Yes(1) | Yes || Seismic Cube | Yes | Yes(2) | Yes || Seismic Horizon | Yes | No | No || Surface | Yes | Yes | Yes || Surface Property Continuous | Yes | Yes(1) | Yes || Surface Property Discrete | Yes | Yes(1) | Yes || Well | Yes | Yes | Yes || WellLog | Yes | Yes(1)(2) | Yes(2) || Workflow | No | No | No ||---------------------------------|--------|-----------|--------|

(1) Setting the template is not supported.(2) Setting the geometry is not supported.(3) Setting or adding faults is not supported.

Supported Data Store Types:

|---------------------------------|-----|-----------|-----|| Type | Get | Set | Add ||---------------------------------|-----|-----------|-----|| Seismic Cube | Yes | Yes(1)(2) | No ||---------------------------------|-----|-----------|-----|

Page 3: Support Package for Petrel

(1) Setting the template is not supported.(2) Setting the geometry is not supported.

Supported Operations:

Add folder

Add node

Add window

Find node

Get camera

Get node

Rename node

Remove node

Run workflow

Set camera

Set node

Show node

Show window

Examples:

Petrel.addFolder('/Input','My Point Sets');

X = 1:3;Y = 1:3;Z = 1:3;

Node = Petrel.makePointSet(X,Y,Z,Petrel.Template.ElevationDepth);

Petrel.addNode('/Input/My Point Sets','My Point Set 1',Node);

Contents

Getting Started

Classes

Examples

Release Notes

Terms and Conditions

Getting Started

Classes

Examples

Release Notes

Terms and Conditions

Published with MATLAB® R2017b

Page 4: Support Package for Petrel
Page 5: Support Package for Petrel

Getting Started

Contents

Step 0

Step 1

Step 2

Step 3

Step 4

Step 5

Step 6

Step 0

A Petrel plugin is required for communication between MATLAB and Petrel. Attempting to use the MATLAB Support Package for Petrelbefore registering the plugin will result in the following error:

Step 1

Run Petrel.registerPlugin in MATLAB.

Step 2

Close any running instances of Petrel. Click "Next" to continue.

Step 3

Page 6: Support Package for Petrel

Select which version of Petrel you would like to register with. Click "Next" to continue.

Step 4

Adding a plugin to Petrel requires administrator privileges. The window below is displayed. Click "Yes" to allow MATLAB to add the plugin toPetrel.

Step 5

If successful the window below is displayed. Click "Finish" to complete registration. The Support Package for Petrel is now ready to use.

Page 7: Support Package for Petrel

Step 6

If unsuccessful the window below is displayed. Click "Details" to see the log file.

Published with MATLAB® R2017b

Page 8: Support Package for Petrel

Classes

Support Package for Petrel

Name Summary

Petrel.Domain Petrel domain kind

Petrel.Folder Petrel folder kind

Petrel.Horizon Petrel horizon kind

Petrel.SeismicCube Petrel seismic cube data store

Petrel.Template Petrel template kind

Petrel.Type Petrel node kind

Petrel.Window Petrel window kind

Petrel Support Package for Petrel

Published with MATLAB® R2017b

Page 9: Support Package for Petrel
Page 10: Support Package for Petrel

Examples

Support Package for Petrel

Name Summary

ex_Petrel_Function Function

ex_Petrel_Grid Grid

ex_Petrel_Membrane Create L-shaped membrane

ex_Petrel_PointSet PointSet

ex_Petrel_PolylineSet PolylineSet

ex_Petrel_SeismicCube Seismic Cube

ex_Petrel_Surface Surface

ex_Petrel_Well Well

Published with MATLAB® R2017b

Page 11: Support Package for Petrel
Page 12: Support Package for Petrel

Release Notes

Support Package for Petrel

Version 2.1.0.66 (05-Mar-2018)

Enhancements

Upgraded installation.

Upgraded documentation.

Version 1.2017.47.47 (03-Oct-2017)

Enhancements

Added support for Petrel 2017.x.

Version 1.2016.45.45 (24-Jul-2017)

Enhancements

Added support for Petrel 2016.x.

Version 1.2015.42.43 (16-Nov-2015)

Bug Fixes

Fixed issue with units. The data returned by Petrel.getNode and set by Petrel.setNode/addNode is now in the units specified by theCRS. Previously the data was returned in internal SI units.

Fixed issue with Petrel.registerPlugin. Selecting Petrel 2014 when only Petrel 2014 is available now works correctly.

Fixed issue with SeismicCube type. Adding a SeismicCube to an existing survey now works correctly. Previously adding a SeismicCubewith compatible geometry would sometimes fail.

Fixed issue with Petrel.linkCamera. Changing the camera with the 'view' command now works correctly.

Enhancements

Added support for Petrel 2015.x.

Added support for setting data to the Petrel.SeismicCube data store.

Added support for CheckShot type.

Added Petrel.makeCheckShot method.

Added support for Seismic Horizon type to include the domain.

Added support for SeismicCube type to auto-scale the color when setting an existing cube.

Version 1.2014.39.39 (30-Jun-2015)

Enhancements

Added support for Petrel 2014.x.

Added support for Grid and SeismicCube types to include the domain.

Page 13: Support Package for Petrel

Compatibility Considerations

The Petrel.makeGrid and Petrel.makeSeismicCube methods will require an additional argument for the domain.

Version 1.2013.31.31 (29-Dec-2014)

Bug Fixes

Fixed issue with the plug-in version. The MATLAB plug-in version is now displayed correctly in Petrel->Help->Ocean Plug-in Manager.

Enhancements

Added Petrel.SeismicCube class for accessing seismic data as a data store.

Added Petrel.SeismicCube class example to ex_Petrel_SeismicCube.m.

Added support for Workflow types.

Added Petrel.runWorkflow, Petrel.getCamera, Petrel.setCamera, and Petrel.linkCamera, methods.

Version 1.2013.23.23 (19-Nov-2014)

Enhancements

Added support for Grid types to include faults, horizons, and zones.

Added support for Well types.

Added Petrel.makeGridFault, Petrel.makeGridHorizon, Petrel.makeGridZone, and Petrel.makeWell, methods.

Added ex_Petrel_Well example.

Compatibility Considerations

The Petrel.makeGrid method will require additional arguments for faults, horizons, and zones.

The ex_Petrel_WellLog example has been removed, see ex_Petrel_Well instead.

Version 1.2013.21.21 (09-Sep-2014)

Enhancements

Added support for PolylineSet property types.

Added Petrel.makePolylineSetPropertyContinuous, makePolylineSetPropertyDiscrete methods.

Added support for templates.

Added Petrel.addWindow, Petrel.showNode.m, Petrel.showWindow methods.

Added support for Seismic Horizon types.

Compatibility Considerations

Most Petrel.make* methods will require additional arguments for the template.

Petrel.makePolylineSet no longer supports variable number of arguments, use cell arrays instead.

Petrel.addSeismicSurvey has been removed, use Petrel.addFolder instead.

Version 1.2013.16.16 (19-Aug-2014)

Bug Fixes

Page 14: Support Package for Petrel

Fixed issue with sub-folders under '/Models/Grids/Grid 1/Properties'. Property sub-folders are now searchable.

Enhancements

Added support for Function types.

Added Petrel.makeFunction method.

Added examples for Function, Grid, PointSet, PolylineSet, Surface, Seismic, and WellLog types.

Version 1.2013.12.12 (07-Aug-2014)

Bug Fixes

Fixed issue with node names containing commas. Commas are now handle correctly.

Fixed issue with sub-folders under '/Input/Wells'. Well sub-folders are now searchable.

Enhancements

Added Petrel.hasNode, Petrel.loadNode, Petrel.saveNode methods.

Compatibility Considerations

The support package installation process no longer requires Petrel to be installed.

Version 1.2013.10.10 (21-Jul-2014)

Enhancements

Added support for Petrel 2013.1 and R2014a.

Published with MATLAB® R2017b

Page 15: Support Package for Petrel

Terms and Conditions

Support Package for Petrel

The MathWorks, Inc.Software License Agreement

IMPORTANT NOTICEREAD THE TERMS AND CONDITIONS OF YOUR LICENSE AGREEMENT CAREFULLY BEFORE INSTALLING THESE MATERIALS (AS DEFINED BELOW).THIS LICENSE AGREEMENT REPRESENTS THE ENTIRE AGREEMENT BETWEEN YOU (THE "LICENSEE") AND THE MATHWORKS, INC. ("MATHWORKS") CONCERNING THE SOFTWARE AND DOCUMENTATION DELIVERED HEREUNDER (COLLECTIVELY, THE "MATERIALS").BY INSTALLING THESE MATERIALS, YOU ACCEPT THE TERMS OF THIS AGREEMENT. IF YOU ARE NOT WILLING TO DO SO, SELECT "I DO NOT ACCEPT THE AGREEMENT" AND THE INSTALLATION WILL BE ABORTED.

1. DEFINITIONS.1.1. "Licensee" means you, whether an individual or an entity, to whom MathWorks grants the License, and who is responsible for complying with the contractual obligations of the License, and ensuring that anyone permitted access to the Materials also complies with such obligations.1.2. "Documentation" means the user guides, if any, accompanying delivery of the Materials, as may be updated from time to time, as well as any reports or other feedback that MathWorks may, in its sole discretion, provide to Licensee. Documentation may be delivered in printed and/or online forms, and in one or more languages.1.3. "Licensor" means any person who, or entity which, grants a license to MathWorks to redistribute that persons or entitys intellectual property.1.4. "Materials" means the computer software delivered and licensed hereunder, including Documentation, enhancements and error corrections.1.5. "Third Party" means any person or legal entity that is not MathWorks or the Licensee.2. LICENSE GRANT. MathWorks hereby grants to Licensee, subject to the terms of this Agreement, a nonexclusive, nontransferable, revocable license (the "License") to use the Materials internally or for the purpose of providing to MathWorks engineering feedback on the Materials, as the context may require.3. LICENSE RESTRICTIONS. The License is subject to the express restrictions set forth below. Licensee shall not, and shall not permit any Third Party to:3.1. modify, or create any derivative work of, any part of the licensed Materials;3.2. adapt, translate, copy, or convert all or any part of the Materials in order to create software, a principal purpose of which is to perform the same or similar functions as the Materials or to replace any component of the Materials;3.3. rent, lease, or loan the Materials; use the Materials for supporting Third Parties use of the Materials, time share the Materials, or provide service bureau use;3.4. disassemble, decompile, reverse engineer the Materials or otherwise attempt to gain access to its method of operation or source code (other than files provided for convenience in source code form by MathWorks);3.5. sell, license, sublicense, publish, display, distribute, disseminate, assign, or otherwise transfer (whether by sale, exchange, lease, gift, or otherwise) to a Third Party the Materials, any copy or portion thereof, or any License or other rights thereto, in whole or in part, without MathWorks prior written consent;3.6. alter, remove, or obscure any copyright, trade secret, patent, trademark, logo, proprietary and/or other legal notices on or in copies of the Materials;3.7. use MathWorks name, trade names, logos, or other trademarks of MathWorks or any of its affiliates or Licensors in any advertising, promotional literature or any other material, whether in written, electronic, or other form, distributed to any Third Party, except in the form provided by MathWorks, and then solely for purposes of identifying MathWorks' Materials;3.8. provide access (directly or indirectly) to the Materials via a web or network application;3.9. copy, make available for copy, or otherwise reproduce the Materials, in whole or in part, except either (a) as may be required for their installation into computer memory for the purpose of executing the Materials in accordance with this Agreement; or (b) to make a reasonable number of copies

Page 16: Support Package for Petrel

solely for back-up purposes provided that any such permitted copies shall reproduce all copyright, trade secret, patent, logo, proprietary and/or other legal notices contained in the original copy obtained from MathWorks;3.10. republish the Documentation, except as expressly permitted herein; and/or3.11. create a server, for code generation, compilation, or other Materials.4. RETENTION OF RIGHT, TITLE AND INTEREST BY MATHWORKS AND ITS LICENSORS; CONFIDENTIALITY. The Materials shall at all times remain the property of MathWorks and/or its Licensors and Licensee shall have no right, title, or interest therein, except as expressly set forth in this Agreement. Licensee shall take appropriate action by instruction, agreement, or otherwise with any persons permitted access to the Materials, so as to enable Licensee to satisfy its obligations under the terms of this Agreement. The Materials are confidential and proprietary information of MathWorks, and is protected by copyright law, trade secret law and other applicable law. It is made available to you solely for use with MathWorks products and services. Licensee is expressly prohibited from disclosing, publishing, reproducing, summarizing, or transmitting these Materials, in whole or in part, in any form or means, whether verbal or written, electronic or manual, for any purpose, without the prior express written permission of MathWorks. Although MathWorks is considering a commercial release of the Materials, it is under no obligation to do so and MathWorks reserves the right to alter features, licensing terms, or other characteristics of any such commercial release.5. LICENSES FOR THIRD PARTY SOFTWARE. MathWorks has been granted licenses to distribute certain Third Party software. Certain MathWorks Materials require the use of Third Party software products that may require a separate license from such Third Parties to use those Third Party products. Licensee agrees and acknowledges that, to the extent that the Materials contain any Third Party software: (i) such Third Party software is provided on an "as-is", pass-through basis, and as such is provided to Licensee without warranty, indemnification, support or other representation by MathWorks; and (ii) MathWorks bears no liability with respect to such Third Party software.6. TERM AND TERMINATION. This Agreement shall continue until termination by MathWorks or Licensee as provided below. Either party may terminate this Agreement at any time, for any reason, upon written notice to the other party. Upon termination, Licensee shall promptly return all but archival copies of the Materials in Licensees possession or control, or promptly provide written certification of their destruction.7. EXPORT CONTROL. The Materials may be subject to U.S. export control laws or other (U.S. and non-U.S.) governmental export and import laws and regulations. Notwithstanding any other term of this Agreement or Third Party agreement, Licensees rights under this Agreement may not be exercised by Licensee or any Third Party in violation of such laws and regulations, nor may this Agreement be transferred to any party where doing so would result in such a violation. The terms of any limitation on the use, transfer or re-export of the Materials imposed by MathWorks in any Destination Control Statement or other document for the purpose of export control shall prevail over any term in this Agreement. It shall be Licensees responsibility to comply with the latest United States or other governmental export and import regulations.8. FEDERAL ACQUISITION. This provision applies to all acquisitions of the Materials and Documentation by, for, or through the federal government of the United States. By accepting delivery of the Materials or Documentation, the government hereby agrees that this software or documentation qualifies as commercial computer software or commercial computer software documentation as such terms are used or defined in FAR 12.212, DFARS Part 227.72, and DFARS 252.227-7014. Accordingly, the terms and conditions of this Agreement and only those rights specified in this Agreement, shall pertain to and govern the use, modification, reproduction, release, performance, display, and disclosure of the Materials and Documentation by the federal government (or other entity acquiring for or through the federal government) and shall supersede any conflicting contractual terms or conditions. If this License fails to meet the government's needs or is inconsistent in any respect with federal procurement law, the government agrees to return the Materials and Documentation, unused, to MathWorks.9. FOR EUROPEAN UNION LICENSEES ONLY. Any contractual provisions of this Agreement contrary to laws implemented under Article 6 of Appendix V of the European Union Software Directive or to the exceptions provided for in Article 5(2) and (3) of such Appendix shall be null and void solely to the extent decompiling, disassembling, or otherwise reverse-engineering of the Materials is necessary to enable the Licensee to create an independent program that is interoperable with the Materials or any other permitted objectives specified by such laws implemented under such directive (collectively, the "Permitted Objectives"), provided that any such information gained is used solely for such Permitted Objectives.10. ASSIGNMENT. Licensee may not assign or otherwise transfer this Agreement and its rights and obligations hereunder, in whole or in part, by operation of law or otherwise, without the written consent of MathWorks. In the case of any permitted assignment or transfer of or under this Agreement,

Page 17: Support Package for Petrel

this Agreement or the relevant provisions shall be binding upon, and inure to the benefit of, the successors, executors, heirs, representatives, administrators and assigns of the parties hereto. MathWorks may charge Licensee an administrative fee for any permitted assignment.11. LIMITATION OF LIABILITY. The Materials should not be relied on as the sole basis to solve a problem or implement a design whose incorrect solution or implementation could result in injury to person or property. If the Materials are employed in such a manner, it is at the Licensees own risk and MathWorks and its Licensors explicitly disclaim all liability for such misuse to the extent allowed by law. MathWorks and its Licensors liability for death or personal injury resulting from negligence or for any other matter in relation to which liability by law cannot be excluded or limited shall not be excluded or limited. Except as aforesaid, (a) any other liability of MathWorks and its Licensors (whether in relation to breach of contract, negligence or otherwise) shall not in total exceed one hundred dollars ($100.00); and (b) MathWorks and its Licensors shall have no liability for any indirect or consequential loss (whether foreseeable or otherwise and including loss of profits, loss of business, loss of opportunity, and loss of use of any computer hardware or software). Some states do not allow the exclusion or limitation of incidental or consequential damages, so the above exclusion or limitation may not apply to Licensee.12. DISCLAIMER OF WARRANTIES. The Materials are delivered "as is" and MathWorks makes and the Licensee receives no additional express or implied warranties. MathWorks and its Licensors hereby expressly disclaim any and all other conditions, warranties, or other terms of any kind or nature concerning the Materials (including, without limitation, any with regard to infringement, merchantability, quality, accuracy, or fitness for a particular purpose or Licensees purpose). MathWorks also expressly disclaims any warranties that may be implied from usage of trade, course of dealing, or course of performance. The Materials are provided with all faults, and the entire risk of satisfactory quality, performance, accuracy, and effort is with Licensee. MathWorks does not warrant that the Materials will operate without interruption or be error free. Some states and countries do not allow limitations on how long an implied warranty lasts, so the above limitation may not apply to Licensee. Licensee may also have other rights which vary from state to state and country to country. Licensee accepts responsibility for its use of the Materials and the results obtained therefrom.19. GOVERNING LAW; JURISDICTION. This Agreement shall be interpreted, enforced and construed and the rights of the parties hereunder governed in all respects by the laws of the Commonwealth of Massachusetts, United States of America, without regard to its conflicts of law provisions, and both parties consent to the jurisdiction of the federal and state courts located in said Commonwealth and consent to the service of process, pleadings and notices in connection with any and all actions initiated in such courts. The parties agree that a final judgment in any such action or proceeding shall be conclusive and binding and may be enforced in any other jurisdiction. To the extent any governing law, treaty, or regulation is in conflict with this Agreement, the conflicting terms of this Agreement shall be superseded only to the extent necessary by such law, treaty, or regulation. If any provision of this Agreement shall be otherwise unlawful, void, or otherwise unenforceable, that provision shall be enforced to the maximum extent permissible. In either case, the remainder of this Agreement shall not be affected. The parties agree that the U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. The parties further agree that the Uniform Computer Information Transactions Act, or any version thereof, adopted by any state, in any form ("UCITA"), shall not apply to this Agreement. To the extent that UCITA is applicable, the parties agree to opt out of the applicability of UCITA pursuant to the Opt-Out provision(s) contained therein.21. HEADINGS. The inclusion of headings is for convenience of reference only and shall not affect the construction or interpretation of this Agreement.22. ENTIRE AGREEMENT. This Agreement contains the entire understanding of the parties and may not be modified or amended except by written instrument, executed by authorized representatives of MathWorks and Licensee.

Published with MATLAB® R2017b

Page 18: Support Package for Petrel

Petrel.Domain

Petrel domain kind

Open Petrel.Domain

Contents

Detail

Attributes

Properties

Detail

Syntax:

Petrel.Domain.*

Examples:

[X,Y] = meshgrid(1:3,1:4);

Z = 1:5;

Value = randn(4,3,5);

Template = Petrel.Template.SeismicDefault;

Domain = Petrel.Domain.ElevationTime;

Node = Petrel.makeSeismicCube(X,Y,Z,Value,Template,Domain);

See also Petrel.makeGrid, Petrel.makeSeismicCube.

Attributes

Name Value

Abstract true

Construct on Load

false

Handle Compatible

false

Hidden false

Sealed true

Package Petrel

Inferior Class

Page 19: Support Package for Petrel

Super Class

Properties

Name Summary

Petrel.Domain.DipAngle Dip angle

Petrel.Domain.DipAzimuth Dip azimuth

Petrel.Domain.Distance Distance

Petrel.Domain.Dls Dogleg severity

Petrel.Domain.ElevationDepth Elevation depth

Petrel.Domain.ElevationTime Elevation time

Petrel.Domain.GeneralInteger General integer

Petrel.Domain.GeologicalTimescale Geological time scale

Petrel.Domain.MeasuredDepth Measured depth

Petrel.Domain.Owt One-way time

Petrel.Domain.SimulationTime Simulation time

Petrel.Domain.Tst True stratigraphic thickness

Petrel.Domain.Tvt True vertical thickness

Petrel.Domain.Twt Two-way time

Published with MATLAB® R2017b

Page 20: Support Package for Petrel

Petrel.Folder

Petrel folder kind

Open Petrel.Folder

Contents

Detail

Attributes

Properties

Detail

Syntax:

Petrel.Folder.*

Examples:

Path = Petrel.addFolder('/Input/Seismic','My Survey 1',Petrel.Folder.SeismicSurvey);

See also Petrel.addFolder.

Attributes

Name Value

Abstract true

Construct on Load

false

Handle Compatible

false

Hidden false

Sealed true

Package Petrel

Inferior Class

Super Class

Properties

Name Summary

Petrel.Folder.SeismicInterpretation Seismic interpretation folder

Petrel.Folder.SeismicSurvey Seismic survey folder

Page 21: Support Package for Petrel

Petrel.Folder.Wells Wells folder

Published with MATLAB® R2017b

Page 22: Support Package for Petrel

Petrel.Horizon

Petrel horizon kind

Open Petrel.Horizon

Contents

Detail

Attributes

Properties

Detail

Syntax:

Petrel.Horizon.*

Examples:

Horizon = Petrel.makeGridHorizon('Top',Petrel.Horizon.Conformable,1);

See also Petrel.makeGridHorizon.

Attributes

Name Value

Abstract true

Construct on Load

false

Handle Compatible

false

Hidden false

Sealed true

Package Petrel

Inferior Class

Super Class

Properties

Name Summary

Petrel.Horizon.Base Base horizon

Petrel.Horizon.Conformable Conformable horizon

Page 23: Support Package for Petrel

Petrel.Horizon.Discontinous Discontinous horizon

Petrel.Horizon.Erosional Erosional horizon

Petrel.Horizon.Intermediate Intermediate horizon

Petrel.Horizon.LayerHorizon Layer horizon

Published with MATLAB® R2017b

Page 24: Support Package for Petrel

Petrel.SeismicCube

Petrel seismic cube data store

Open Petrel.SeismicCube

Contents

Detail

Attributes

Properties

Methods

Detail

Access seismic cube data in-place.

Examples:

SC = Petrel.SeismicCube('/Input/Seismic/Survey 1/Cube 1');

Value = SC.Value(1:10:end,1:10:end,1:10:end);

Attributes

Name Value

Abstract false

Construct on Load

false

Handle Compatible

true

Hidden false

Sealed true

Package Petrel

Inferior Class

Super Class

handle

Properties

Name Summary

Petrel.SeismicCube.Path Path to seismic cube

Petrel.SeismicCube.Value Seismic cube value

Page 25: Support Package for Petrel

Petrel.SeismicCube.X Seismic cube X coordinate

Petrel.SeismicCube.Y Seismic cube Y coordinate

Petrel.SeismicCube.Z Seismic cube Z coordinate

Methods

Name Summary

Petrel.SeismicCube.SeismicCube Constructor

Published with MATLAB® R2017b

Page 26: Support Package for Petrel

Petrel.Template

Petrel template kind

Open Petrel.Template

Contents

Detail

Attributes

Properties

Detail

Syntax:

Petrel.Template.*

Examples:

Depth = (1:3)';

Value = rand(3,1);

Template = Petrel.Template.Porosity;

Node = Petrel.makeWellLog(Depth,Value,Template);

See also Petrel.makeWellLog.

Attributes

Name Value

Abstract true

Construct on Load

false

Handle Compatible

false

Hidden false

Sealed true

Package Petrel

Inferior Class

Super Class

Properties

Page 27: Support Package for Petrel

Name Summary

Petrel.Template.AboveContact Above contact

Petrel.Template.Acceleration Acceleration

Petrel.Template.Acidity Acidity

Petrel.Template.ActiveCellFlag Cell activity

Petrel.Template.ActivityCode Activity code

Petrel.Template.Adsorption Adsorption

Petrel.Template.AmountOfSubstance Amount of substance

Petrel.Template.AnnulusPressure Annulus pressure

Petrel.Template.Area Area

Petrel.Template.BGFactor Gas formation volume factor

Petrel.Template.BOFactor Oil formation volume factor

Petrel.Template.BWFactor Water formation volume factor

Petrel.Template.BitDepth Bit depth

Petrel.Template.Bodies Bodies

Petrel.Template.BooleanProperty Boolean

Petrel.Template.BottomHolePressure Bottom hole pressure

Petrel.Template.BottomHoleProppantConcentration Bottom hole proppant concentration

Petrel.Template.BulkModulus Bulk modulus

Petrel.Template.BulkVelocityGas Gas velocity

Petrel.Template.BulkVelocityOil Oil velocity

Petrel.Template.BulkVelocityWater Water velocity

Petrel.Template.BulkVolume Bulk volume

Petrel.Template.Caliper Caliper

Petrel.Template.CaliperAcoustic Caliper, acoustic stand-off

Petrel.Template.CaliperMechanical Caliper, mechanical

Petrel.Template.CapillaryPressure Capillary pressure

Petrel.Template.CarbonDioxideRate Carbon dioxide rate

Petrel.Template.CellAngle Cell angle

Petrel.Template.CellDeltaX Cell X dimension

Petrel.Template.CellDeltaY Cell Y dimension

Page 28: Support Package for Petrel

Petrel.Template.CellHeight Cell height

Petrel.Template.CellInsideOut Cell inside out

Petrel.Template.CellTopDepth Cell top depth

Petrel.Template.CleanFluid Clean fluid

Petrel.Template.CleanFluidRate Clean fluid rate

Petrel.Template.CmplsArea Completion area

Petrel.Template.CmplsDepth Completion depth

Petrel.Template.CmplsDiameter Completion diameter

Petrel.Template.CmplsDrainageRadius Drainage radius

Petrel.Template.CmplsPermLength Permeability-length

Petrel.Template.CmplsPiCompressible PI compressible fluid

Petrel.Template.CmplsPiGas PI gas

Petrel.Template.CmplsPiLiquid PI liquid

Petrel.Template.CmplsPiMult PI multiplier

Petrel.Template.CmplsRoughness Roughness

Petrel.Template.CmplsSkin Skin

Petrel.Template.CmplsTransmissiblity Connection transmissibility

Petrel.Template.CoalGasConcentration Coal gas concentration

Petrel.Template.CoalGasVolumePerMass Coal gas volume per mass

Petrel.Template.ComplCasing Cased

Petrel.Template.ComplGeneral Completion string

Petrel.Template.ComplLiner Lined

Petrel.Template.ComplPlugbackTotalDepth Plug back tot. depth

Petrel.Template.ComplTotalDepth Total depth

Petrel.Template.ComplWellDatum Well datum

Petrel.Template.CompressionalRatio Compressional modulus

Petrel.Template.Conductivity Conductivity

Petrel.Template.ConductivityDeep Conductivity, deep

Petrel.Template.ConductivityMedium Conductivity, medium

Petrel.Template.ConductivityShallow Conductivity, shallow

Petrel.Template.ConnectedVolume Connected volumes

Page 29: Support Package for Petrel

Petrel.Template.ConstantMudResistivity Constant mud resistivity

Petrel.Template.ConstantWaterResistivity Constant water resistivity

Petrel.Template.ConstantWaterSalinity Constant water salinity

Petrel.Template.CorrosionRate Corrosion rate

Petrel.Template.Deepening Deepening

Petrel.Template.DeltaTime Delta time

Petrel.Template.Density Density

Petrel.Template.DensityCompensatedBulk Density, compensated bulk

Petrel.Template.DensityDownwardAzim Density, azimuth downwards

Petrel.Template.DensityUpwardAzim Density, azimuth upwards

Petrel.Template.DifferentialTemperature Differential temperature

Petrel.Template.Diffusivity Diffusivity

Petrel.Template.DipAngle Dip angle

Petrel.Template.DipAzimuth Dip azimuth

Petrel.Template.DipClassification Dip classification

Petrel.Template.DipQuality Dip quality

Petrel.Template.Displacement Displacement

Petrel.Template.Distance Distance

Petrel.Template.DistributionFreq Distribution frequency

Petrel.Template.Dls Dogleg severity

Petrel.Template.DownholeTorque Downhole torque

Petrel.Template.Drho Bulk density correction

Petrel.Template.DrillingAzimuth Drilling azimuth

Petrel.Template.DrillingTemperature Temperature

Petrel.Template.DrillpipeRpm Angular velocity

Petrel.Template.Duration Duration

Petrel.Template.EffectiveStress Effective stress

Petrel.Template.ElevationDepth Elevation depth

Petrel.Template.ElevationProperty Elevation general

Petrel.Template.ElevationTime Elevation time

Petrel.Template.Energy Energy

Page 30: Support Package for Petrel

Petrel.Template.EnergyDensity Reservoir energy density

Petrel.Template.EnergyRate Energy flow rate

Petrel.Template.EnthalpyRate Enthalpy flow rate

Petrel.Template.EquivalentCirculatingDensity Equiv. circulating density

Petrel.Template.ErosionRate Erosion rate

Petrel.Template.ErosionalVelocity Erosional velocity

Petrel.Template.ExtendedElasticImpedance Extended elastic impedance

Petrel.Template.Facies Facies

Petrel.Template.FaultDisplacement Fault displacement

Petrel.Template.FaultPermeability Fault permeability

Petrel.Template.FaultThickness Fault thickness

Petrel.Template.Faults Faults

Petrel.Template.FluidInPlaceGas Gas fluid-in-place

Petrel.Template.FluidInPlaceOil Oil fluid-in-place

Petrel.Template.FluidInPlaceWater Water fluid-in-place

Petrel.Template.Fluids Fluids

Petrel.Template.Fluvial Fluvial facies

Petrel.Template.Fraction Fraction

Petrel.Template.FractionalFlow Fractional flow

Petrel.Template.FractureAperture Fracture aperture

Petrel.Template.FractureCompressibility Fracture compressibility

Petrel.Template.FracturePermeability Fracture permeability

Petrel.Template.FracturingJobTime Fracturing job time

Petrel.Template.FrictionAngle Friction angle

Petrel.Template.FromFacies From facies

Petrel.Template.GammaRay Gamma ray

Petrel.Template.GammaRayPotassium Gamma ray, potassium

Petrel.Template.GammaRayThorium Gamma ray, thorium

Petrel.Template.GammaRayUranium Gamma ray, uranium

Petrel.Template.GasFlowRate Gas flow rate

Petrel.Template.GasGeneration Gas generation

Page 31: Support Package for Petrel

Petrel.Template.GasHeatCapacity Gas heat capacity

Petrel.Template.GasOilContact Gas-oil contact

Petrel.Template.GasOilRatio Gas-oil ratio

Petrel.Template.GasViscosity Gas viscosity

Petrel.Template.GasWaterContact Gas-water contact

Petrel.Template.GelConcentration Gel concentration

Petrel.Template.GeneralContinuous General

Petrel.Template.GeneralDerivative General derivative

Petrel.Template.GeneralDiscrete General discrete

Petrel.Template.GeneralInteger General integer

Petrel.Template.GeneralProduction General production

Petrel.Template.GeneralTime General time

Petrel.Template.GeologicalTimescale Geological time scale

Petrel.Template.Giip GIIP

Petrel.Template.GiipMap GIIP (map)

Petrel.Template.HcpvGas HCPV gas

Petrel.Template.HcpvGasMap HCPV gas (map)

Petrel.Template.HcpvOil HCPV oil

Petrel.Template.HcpvOilMap HCPV oil (map)

Petrel.Template.HeatFlow Heat flow

Petrel.Template.HeatTransferCoefficient Heat transfer coefficient

Petrel.Template.HeatTransmissibility Heat transmissibility

Petrel.Template.HeatTransmissibilityI Heat transmissibility I

Petrel.Template.HeatTransmissibilityJ Heat transmissibility J

Petrel.Template.HeatTransmissibilityK Heat transmissibility K

Petrel.Template.HistoryMatchQualitativeCoarse History match qualitative coarse

Petrel.Template.HistoryMatchQualitativeFine History match qualitative fine

Petrel.Template.HistoryMatchQuantitative History match quantitative

Petrel.Template.HmatchConstant History match constant quantity

Petrel.Template.HmatchPolyline History match polyline quantity

Petrel.Template.HmatchStepwise History match stepwise quantity

Page 32: Support Package for Petrel

Petrel.Template.Holdup Holdup (volume %)

Petrel.Template.HoleClassification Hole classification for polygons

Petrel.Template.HookLoad Hook load

Petrel.Template.HorizonFilterAttribute Horizon filter attribute

Petrel.Template.Horizons Horizons

Petrel.Template.HydrogenIndex Hydrogen index

Petrel.Template.ICDStrength ICD strength

Petrel.Template.ImpedanceAcoustic Acoustic impedance

Petrel.Template.ImpedanceElasticPP PP elastic-impedance

Petrel.Template.ImpedanceElasticPS PS elastic-impedance

Petrel.Template.ImpedanceP P-impedance

Petrel.Template.ImpedanceS S-impedance

Petrel.Template.Inclination Inclination

Petrel.Template.InjectionRateGas Gas injection rate

Petrel.Template.InjectionRateOil Oil injection rate

Petrel.Template.InjectionRateResvol Reservoir injection rate

Petrel.Template.InjectionRateWater Water injection rate

Petrel.Template.InsideDiameter Inside diameter

Petrel.Template.Intensity Intensity

Petrel.Template.InverseFormationVolumeFactorGas Inverse water formation volume factor, also known as InverseBwFactor

Petrel.Template.InverseFormationVolumeFactorOil Inverse gas formation volume factor, also known as InverseBgFactor

Petrel.Template.InverseFormationVolumeFactorWater Inverse oil formation volume factor, also known as InverseBoFactor

Petrel.Template.InversePenetrationRate Inverse penetration rate

Petrel.Template.InverseTemperature Inverse temperature

Petrel.Template.InverseTemperatureSquared Inverse temperature squared

Petrel.Template.KFactorInTime K factor (time)

Petrel.Template.Kfactor K factor (depth)

Petrel.Template.Lambda Lambda

Petrel.Template.LambdaTimesRho Lambda*Rho

Petrel.Template.LiquidConcentration Liquid concentration

Petrel.Template.LiquidDensity Liquid density

Page 33: Support Package for Petrel

Petrel.Template.Lithologies Lithologies

Petrel.Template.LithologyFrac Lithology fraction

Petrel.Template.MFThermalCoupling Matrix-fracture thermal coupling

Petrel.Template.Mass Mass

Petrel.Template.MassConcentration Concentration

Petrel.Template.MassFlowRate Mass flow rate

Petrel.Template.MatrixFractureCoupling Matrix-fracture coupling

Petrel.Template.MeasuredDepth Measured depth

Petrel.Template.Mobility Mobility

Petrel.Template.MolarDensity Molar density

Petrel.Template.MolarEnthalpy Molar enthalpy

Petrel.Template.MolarMass Molar mass

Petrel.Template.MolarRate Molar rate

Petrel.Template.MolarVolume Molar volume

Petrel.Template.Money Money

Petrel.Template.MotorSpeed Motor speed

Petrel.Template.Mu Mu

Petrel.Template.MuTimesRho Mu*Rho

Petrel.Template.MudDensity Mud density

Petrel.Template.MudFlowrate Mud flow rate

Petrel.Template.NetGross Net/Gross

Petrel.Template.NetPay Net pay

Petrel.Template.Neutron Neutron

Petrel.Template.NitrogenRate Nitrogen rate

Petrel.Template.OilFlowRate Oil flow rate

Petrel.Template.OilGasRatio Oil-gas ratio

Petrel.Template.OilGeneration Oil generation

Petrel.Template.OilHeatCapacity Oil heat capacity

Petrel.Template.OilViscosity Oil viscosity

Petrel.Template.OilWaterContact Oil-water contact

Petrel.Template.OpenHole Open hole

Page 34: Support Package for Petrel

Petrel.Template.OpticalDensity Optical density

Petrel.Template.Owt One-way time

Petrel.Template.PatchSet Fracture set

Petrel.Template.Pef Photoelectric factor

Petrel.Template.PenetrationRate Penetration rate

Petrel.Template.PenetrationRateAvg Average penetration rate

Petrel.Template.Percent Percent

Petrel.Template.Perforation Perforation

Petrel.Template.PerforationConnectivity Perforation connectivity

Petrel.Template.Perm Permeability

Petrel.Template.PermI Permeability I

Petrel.Template.PermIJ Permeability IJ

Petrel.Template.PermIK Permeability IK

Petrel.Template.PermJ Permeability J

Petrel.Template.PermJK Permeability JK

Petrel.Template.PermK Permeability K

Petrel.Template.PermKR Relative permeability

Petrel.Template.PermMF Permeability matrix-fracture

Petrel.Template.PermX Permeability X

Petrel.Template.PermXY Permeability XY

Petrel.Template.PermXZ Permeability XZ

Petrel.Template.PermY Permeability Y

Petrel.Template.PermYZ Permeability YZ

Petrel.Template.PermZ Permeability Z

Petrel.Template.PoissonRatio Poissons ratio

Petrel.Template.PoreVolumeMultiplier Pore volume multiplier

Petrel.Template.Porosity Porosity

Petrel.Template.PorosityEffective Porosity - effective

Petrel.Template.PorosityTotal Porosity - total

Petrel.Template.Pressure Pressure

Petrel.Template.PressureGradient Pressure gradient

Page 35: Support Package for Petrel

Petrel.Template.PrincipalComponent Principal component

Petrel.Template.PrincipalStress Principal stress

Petrel.Template.Probability Probability

Petrel.Template.ProductionGas Gas production

Petrel.Template.ProductionLiquid Liquid production

Petrel.Template.ProductionMassGas Gas mass production

Petrel.Template.ProductionMassOil Oil mass production

Petrel.Template.ProductionMassRateGas Gas mass production rate

Petrel.Template.ProductionMassRateOil Oil mass production rate

Petrel.Template.ProductionMassRateWater Water mass production rate

Petrel.Template.ProductionMassWater Water mass production

Petrel.Template.ProductionOil Oil production

Petrel.Template.ProductionRateGas Gas production rate

Petrel.Template.ProductionRateLiquid Liquid production rate

Petrel.Template.ProductionRateOil Oil production rate

Petrel.Template.ProductionRateResvol Reservoir production rate

Petrel.Template.ProductionRateWater Water production rate

Petrel.Template.ProductionResvol Reservoir production volume

Petrel.Template.ProductionStatus Producer status

Petrel.Template.ProductionWater Water production

Petrel.Template.Proppant Proppant

Petrel.Template.ProppantConcentration Proppant concentration

Petrel.Template.Psonic P-sonic

Petrel.Template.Quality Quality

Petrel.Template.RSFactor Solution gas-oil ratio

Petrel.Template.RVFactor Vapourized oil-gas ratio

Petrel.Template.RecoverableGas Recoverable gas

Petrel.Template.RecoverableGasMap Recoverable gas (map)

Petrel.Template.RecoverableOil Recoverable oil

Petrel.Template.RecoverableOilMap Recoverable oil (map)

Petrel.Template.RecoveryFactor Recovery factor

Page 36: Support Package for Petrel

Petrel.Template.ReflectionCoeff Reflection coefficients

Petrel.Template.RegionId Region

Petrel.Template.RelativeTemperature Relative temperature

Petrel.Template.ReservoirMassDensity Reservoir mass density

Petrel.Template.Residual Residual

Petrel.Template.Resistivity Resistivity

Petrel.Template.ResistivityDeep Resistivity, deep

Petrel.Template.ResistivityMedium Resistivity, medium

Petrel.Template.ResistivityMicro Micro resistivity

Petrel.Template.ResistivityShallow Resistivity, shallow

Petrel.Template.RockCompressibility Rock compressibility

Petrel.Template.RockDensity Rock density

Petrel.Template.RockDisplacement Rock displacement

Petrel.Template.RockHeatCapacity Rock heat capacity

Petrel.Template.RockHeatCapacityTempCoefficient Rock heat capacity temp. coefficient

Petrel.Template.RockVolume Rock volume

Petrel.Template.SatGas Gas saturation

Petrel.Template.SatGasCritical Critical gas saturation

Petrel.Template.SatHydrocarbons Saturation hydrocarbons

Petrel.Template.SatOil Oil saturation

Petrel.Template.SatPressure Saturation pressure

Petrel.Template.SatSgr Irr. gas saturation

Petrel.Template.SatSgro Gas saturation, residual oil

Petrel.Template.SatSwr Irr. water saturation

Petrel.Template.SatSwro Water saturation, residual oil

Petrel.Template.SatWater Water saturation

Petrel.Template.SatWaterCritical Critical water saturation

Petrel.Template.Segments Segments

Petrel.Template.SeismicAnttrack Seismic - Ant tracking

Petrel.Template.SeismicAttenuation Seismic - Attenuation

Petrel.Template.SeismicConsistentCurvature Seismic - Consistent curvature

Page 37: Support Package for Petrel

Petrel.Template.SeismicContrast Seismic - Contrast

Petrel.Template.SeismicCorrelationCoefficient Seismic - Correlation coefficient

Petrel.Template.SeismicCosineOfPhase Seismic - Cosine of phase

Petrel.Template.SeismicDefault Seismic (default)

Petrel.Template.SeismicDipAngle Seismic - Dip (angle)

Petrel.Template.SeismicDipAzimuth Seismic - Dip azimuth

Petrel.Template.SeismicDipError Seismic - Dip error

Petrel.Template.SeismicDipRatio Seismic - Dip (ratio)

Petrel.Template.SeismicEdge Seismic - Edge

Petrel.Template.SeismicFrequency Seismic - Frequency

Petrel.Template.SeismicGradient Seismic - Gradient

Petrel.Template.SeismicLocalFlatness Seismic - Local flatness

Petrel.Template.SeismicPhase Seismic - Phase

Petrel.Template.SeismicPolarity Seismic - Polarity

Petrel.Template.SeismicShapeIndex Seismic - Shape index

Petrel.Template.SeismicVariance Seismic - Variance

Petrel.Template.ShaleGougeRatio Shale gouge ratio

Petrel.Template.ShearModulus Shear modulus

Petrel.Template.SimulationTime Simulation time

Petrel.Template.SlidingSleevePositions Sliding sleeve positions

Petrel.Template.Slurry Slurry

Petrel.Template.SlurryDensity Slurry density

Petrel.Template.SlurryRate Slurry rate

Petrel.Template.Sonic Sonic

Petrel.Template.SpecificHeatCapacityPerTemp Specific heat capacity per temperature

Petrel.Template.SpecificHeatCapacityPerTempSquared Specific heat capacity per temperature squared

Petrel.Template.SpontaneousPotential Spontaneous potential

Petrel.Template.Ssonic S-sonic

Petrel.Template.StairstepLayers IJK layers

Petrel.Template.StairstepSegments IJK Segments

Petrel.Template.StandpipePressure Standpipe pressure

Page 38: Support Package for Petrel

Petrel.Template.Status Status

Petrel.Template.Stooip STOIIP

Petrel.Template.StooipMap STOIIP (map)

Petrel.Template.Strain Strain

Petrel.Template.Strength Rock strength

Petrel.Template.Strings Strings

Petrel.Template.SummaryData Summary data

Petrel.Template.SurfaceAttribute Surface attribute

Petrel.Template.SurfaceTension Surface tension

Petrel.Template.SurfaceWeightOnBit Weight on bit

Petrel.Template.T2Distribution T2 distribution

Petrel.Template.Temperature Absolute temperature

Petrel.Template.ThermalConductivityCombined Thermal conductivity of rock and fluids

Petrel.Template.ThermalConductivityGas Gas phase thermal conductivity

Petrel.Template.ThermalConductivityMF Thermal conductivity matrix-fracture

Petrel.Template.ThermalConductivityOil Oil phase thermal conductivity

Petrel.Template.ThermalConductivityRock Thermal conductivity of rock

Petrel.Template.ThermalConductivitySolid Solid phase thermal conductivity

Petrel.Template.ThermalConductivityWater Water phase thermal conductivity

Petrel.Template.ThermalGradient Thermal gradient

Petrel.Template.ThermalResistance Thermal resistance

Petrel.Template.ThicknessDepth Thickness depth

Petrel.Template.ThicknessProperty Thickness general

Petrel.Template.ThicknessTime Thickness time

Petrel.Template.TimeStratigraphy Time stratigraphy

Petrel.Template.Torque Torque

Petrel.Template.TotalStress Total stress

Petrel.Template.TransMult Transmissibility multiplier

Petrel.Template.TransX Transmissibility I direction

Petrel.Template.TransY Transmissibility J direction

Petrel.Template.TransZ Transmissibility K direction

Page 39: Support Package for Petrel

Petrel.Template.TransformationRatio Transformation ratio

Petrel.Template.TreatingPressure Treating pressure

Petrel.Template.Tst True stratigraphic thickness

Petrel.Template.Tvt True vertical thickness

Petrel.Template.Twt Two-way time

Petrel.Template.Uncertainty Uncertainty

Petrel.Template.UptimeFraction Uptime fraction

Petrel.Template.UserCont2 Happy day

Petrel.Template.V0Factor V0 factor

Petrel.Template.VaporizationHeat Vaporization heat

Petrel.Template.Variance Variance

Petrel.Template.Velocity Velocity

Petrel.Template.VelocityAverage Average velocity

Petrel.Template.VelocityInterval Interval velocity

Petrel.Template.VelocityP P-velocity

Petrel.Template.VelocityRatio P/S velocity ratio

Petrel.Template.VelocityS S-velocity

Petrel.Template.VelocityStack Stacking velocity

Petrel.Template.VerticalSection Vertical section

Petrel.Template.VitriniteReflectance Vitrinite reflectance

Petrel.Template.VolumeBulkMap Bulk volume (map)

Petrel.Template.VolumeNet Net volume

Petrel.Template.VolumeNetMap Net volume (map)

Petrel.Template.VolumePore Pore volume

Petrel.Template.VolumePoreMap Pore volume (map)

Petrel.Template.Vshale VShale

Petrel.Template.WaterCompressibility Water compressibility

Petrel.Template.WaterCut Water cut

Petrel.Template.WaterFlowRate Water flow rate

Petrel.Template.WaterGasRatio Water-gas ratio

Petrel.Template.WaterHeatCapacity Water heat capacity

Page 40: Support Package for Petrel

Petrel.Template.WaterViscosibility Water viscosibility

Petrel.Template.WaterViscosity Water viscosity

Petrel.Template.Wavelet Wavelet

Petrel.Template.WellBoreRadius Well bore radius

Petrel.Template.WellIndex Well Index

Petrel.Template.YoungsModulus Young''s modulus

Petrel.Template.ZFactor Z factor

Petrel.Template.ZoneLog Zone log from ''Well Tops''

Petrel.Template.ZonesAllK Layers

Petrel.Template.ZonesMain Main zones

Petrel.Template.ZonesSub Zones

Petrel.Template.ZonesSubHierarchy Zones (hierarchy)

Published with MATLAB® R2017b

Page 41: Support Package for Petrel

Petrel.Type

Petrel node kind

Open Petrel.Type

Contents

Detail

Attributes

Properties

Detail

Syntax:

Petrel.Type.*

Examples:

Path = Petrel.findNode('/Input/Wells/*','A10',Petrel.Type.WellLog);

See also Petrel.findNode.

Attributes

Name Value

Abstract true

Construct on Load

false

Handle Compatible

false

Hidden false

Sealed true

Package Petrel

Inferior Class

Super Class

Properties

Name Summary

Petrel.Type.CheckShot CheckShot type

Petrel.Type.Function Function type

Page 42: Support Package for Petrel

Petrel.Type.Grid Grid type

Petrel.Type.GridPropertyContinuous Continuous grid property type

Petrel.Type.GridPropertyDiscrete Discrete grid property type

Petrel.Type.PointSet Point set type

Petrel.Type.PointSetPropertyContinuous Continuous point set property type

Petrel.Type.PointSetPropertyDiscrete Discrete point set property type

Petrel.Type.PolylineSet Polyline set type

Petrel.Type.PolylineSetPropertyContinuous Continuous polyline set property type

Petrel.Type.PolylineSetPropertyDiscrete Discrete polyline set property type

Petrel.Type.SeismicCube Seismic cube type

Petrel.Type.SeismicHorizon Seismic horizon type

Petrel.Type.Surface Surface type

Petrel.Type.SurfacePropertyContinuous Continuous surface property type

Petrel.Type.SurfacePropertyDiscrete Discrete surface property type

Petrel.Type.Well Well type

Petrel.Type.WellLog Well log type

Petrel.Type.Workflow Workflow type

Published with MATLAB® R2017b

Page 43: Support Package for Petrel

Petrel.Window

Petrel window kind

Open Petrel.Window

Contents

Detail

Attributes

Properties

Detail

Syntax:

Petrel.Window.*

Examples:

Path = Petrel.findNode('*','*',Petrel.Window.Window3D);

Petrel.showWindow(Path,true);

See also Petrel.showWindow.

Attributes

Name Value

Abstract true

Construct on Load

false

Handle Compatible

false

Hidden false

Sealed true

Package Petrel

Inferior Class

Super Class

Properties

Name Summary

Petrel.Window.Function Function window

Page 44: Support Package for Petrel

Petrel.Window.Interpretation Interpretation window

Petrel.Window.Intersection Intersection window

Petrel.Window.Map Map window

Petrel.Window.Window2D 2D window

Petrel.Window.Window3D 3D window

Published with MATLAB® R2017b

Page 45: Support Package for Petrel

Petrel

Support Package for Petrel

Open Petrel

Contents

Detail

Attributes

Methods

Detail

The Support Package for Petrel enables you to:

Import/export MAT files from Petrel's user interface.

Get/set/add nodes in Petrel programmatically.

Supported Import/Export Types:

|---------------------------------|--------|-----------|--------|| Type | Get | Set | Add ||---------------------------------|--------|-----------|--------|| CheckShot | Yes | Yes(1)(2) | Yes(2) || Function | Yes | Yes | Yes || PointSet | Yes | Yes | Yes || PointSet Property Continuous | Yes | Yes(1) | Yes || PointSet Property Discrete | Yes | Yes(1) | Yes || PolylineSet | Yes | Yes | Yes || PolylineSet Property Continuous | Yes | Yes(1) | Yes || PolylineSet Property Discrete | Yes | Yes(1) | Yes || Grid | Yes | Yes(3) | Yes(3) || Grid Property Continuous | Yes | Yes(1) | Yes || Grid Property Discrete | Yes | Yes(1) | Yes || Seismic Cube | Yes | Yes(2) | Yes || Seismic Horizon | Yes | No | No || Surface | Yes | Yes | Yes || Surface Property Continuous | Yes | Yes(1) | Yes || Surface Property Discrete | Yes | Yes(1) | Yes || Well | Yes | Yes | Yes || WellLog | Yes | Yes(1)(2) | Yes(2) || Workflow | No | No | No ||---------------------------------|--------|-----------|--------|

(1) Setting the template is not supported.(2) Setting the geometry is not supported.(3) Setting or adding faults is not supported.

Supported Data Store Types:

|---------------------------------|-----|-----------|-----|| Type | Get | Set | Add ||---------------------------------|-----|-----------|-----|| Seismic Cube | Yes | Yes(1)(2) | No ||---------------------------------|-----|-----------|-----|

Page 46: Support Package for Petrel

(1) Setting the template is not supported.(2) Setting the geometry is not supported.

Supported Operations:

Add folder

Add node

Add window

Find node

Get camera

Get node

Rename node

Remove node

Run workflow

Set camera

Set node

Show node

Show window

Examples:

Petrel.addFolder('/Input','My Point Sets');

X = 1:3;Y = 1:3;Z = 1:3;

Node = Petrel.makePointSet(X,Y,Z,Petrel.Template.ElevationDepth);

Petrel.addNode('/Input/My Point Sets','My Point Set 1',Node);

Attributes

Name Value

Abstract true

Construct on Load

false

Handle Compatible

false

Hidden false

Sealed true

Package

Inferior Class

Page 47: Support Package for Petrel

Super Class

Methods

Name Summary

Petrel.addFolder Add folder to Petrel project

Petrel.addNode Add node to Petrel project

Petrel.addWindow Add window to Petrel UI

Petrel.findNode Find node in Petrel project

Petrel.getCamera Get camera from Petrel UI

Petrel.getNode Get node from Petrel project

Petrel.getPlugin Get Petrel plugin

Petrel.hasNode Check Petrel project for node

Petrel.linkCamera Link MATLAB camera to Petrel UI

Petrel.loadNode Load node from file

Petrel.makeCheckShot Make Petrel check shot for export

Petrel.makeFunction Make Petrel function node for export

Petrel.makeGrid Make Petrel grid node for export

Petrel.makeGridFault Make Petrel grid fault

Petrel.makeGridHorizon Make Petrel grid horizon

Petrel.makeGridPropertyContinuous Make Petrel continuous grid property

Petrel.makeGridPropertyDiscrete Make Petrel discrete grid property

Petrel.makeGridZone Make Petrel grid zone

Petrel.makePointSet Make Petrel point set node for export

Petrel.makePointSetPropertyContinuous Make Petrel continuous point set property node for export

Petrel.makePointSetPropertyDiscrete Make Petrel discrete point set property node for export

Petrel.makePolylineSet Make Petrel polyline set node for export

Petrel.makePolylineSetPropertyContinuous Make Petrel continuous polyline set property node for export

Petrel.makePolylineSetPropertyDiscrete Make Petrel discrete polyline set property node for export

Petrel.makeSeismicCube Make Petrel seismic cube node for export

Petrel.makeSurface Make Petrel surface node for export

Petrel.makeSurfacePropertyContinuous Make Petrel continuous surface property node for export

Page 48: Support Package for Petrel

Petrel.makeSurfacePropertyDiscrete Make Petrel discrete surface property node for export

Petrel.makeWell Make Petrel well node for export

Petrel.makeWellLog Make Petrel well log node for export

Petrel.registerPlugin Register MATLAB plugin with Petrel

Petrel.removeNode Remove node from Petrel project

Petrel.renameNode Rename node in Petrel project

Petrel.runWorkflow Run workflow in Petrel project

Petrel.saveNode Save node to file

Petrel.setCamera Set camera in Petrel UI

Petrel.setNode Set node in Petrel project

Petrel.showNode Show node in Petrel UI

Petrel.showWindow Show window in Petrel UI

Published with MATLAB® R2017b

Page 49: Support Package for Petrel

ex_Petrel_Function

Function

Open ex_Petrel_Function

Contents

Function

Add a folder

Make a 'Function' node

Add the 'Function' node to the folder

Add a window

Show the 'Function' node in the window

Function

Geometry (X,Y,UseSpline)

Open Petrel

Add a folder

Path = Petrel.addFolder('/Input','Functions');

Make a 'Function' node

X = linspace(0,1,9);Y = sin(2*pi*X);UseSpline = true;TemplateX = Petrel.Template.GeneralContinuous;TemplateY = Petrel.Template.GeneralContinuous;

figure;plot(X,Y,'.-');grid('on');title('Function');xlabel('X');ylabel('Y');

Node = Petrel.makeFunction(X,Y,UseSpline,TemplateX,TemplateY);

Page 50: Support Package for Petrel

Add the 'Function' node to the folder

Path = Petrel.addNode(Path,'Function 1',Node);

Add a window

Window = Petrel.addWindow(Petrel.Window.Function);

Show the 'Function' node in the window

Petrel.showNode(Path,Window,true);

Published with MATLAB® R2017b

Page 51: Support Package for Petrel

ex_Petrel_Grid

Grid

Open ex_Petrel_Grid

Contents

Grid

Add a folder

Make a 'Grid' node

Add the 'Grid' node to the folder

Make a 'GridPropertyContinuous' node

Add the 'GridPropertyContinuous' node to the 'Grid' node

Make a 'GridPropertyDiscrete' node

Add the 'GridPropertyDiscrete' node to the 'Grid' node

Add a window

Show the 'GridPropertyDiscrete' node in the window

Grid

Geometry (X,Y,Z)

Continuous Property

Discrete Property

Open Petrel before running this file.

Add a folder

Path = Petrel.addFolder('/Models','Grids');

Make a 'Grid' node

Page 52: Support Package for Petrel

[Xm,Ym,Zm] = ex_Petrel_Membrane();

X = Xm;Y = Ym;Z = Zm;

P = 5;X = repmat(X,[1 1 P 4]);Y = repmat(Y,[1 1 P 4]);Z = repmat(Z,[1 1 P 4]);

dZ = 0:(P - 1);dZ = 1000 * dZ; % (m) -> (km)dZ = permute(dZ,[3 1 2]);dZ = repmat(dZ,[size(Z,1) size(Z,2) 1 4]);

Z = Z + dZ;

The 4th dimension is used specify the position of faulted nodes shown below. Setting the same value for each element would represent anunfaulted node.

1. South West - the point is below and to the left of the node.

2. North West - the point is above and to the left of the node.

Page 53: Support Package for Petrel

3. North East - the point is above and to the right of the node.

4. South East - the point is below and to the right of the node.

Xs = mean(X,4);Ys = mean(Y,4);Zs = mean(Z,4);

figure;hold('on');

for i = 1:P surf(Xs(:,:,i),Ys(:,:,i),Zs(:,:,i));end

hold('off');view(3);axis('vis3d');grid('on');title('Grid');xlabel('X');ylabel('Y');zlabel('Z');

Page 54: Support Package for Petrel

Add faults

Fault = Petrel.makeGridFault(); % No faults

Add horizons

Horizon = Petrel.makeGridHorizon(... 'Top' ,Petrel.Horizon.Conformable ,1,... 'Mid 1',Petrel.Horizon.Conformable ,2,... 'Mid 2',Petrel.Horizon.Intermediate,3,... 'Mid 3',Petrel.Horizon.Conformable ,4,... 'Base' ,Petrel.Horizon.Conformable ,5);

Add zones

Zone = Petrel.makeGridZone(... 'Top - Mid 1' ,false,[1 2],... 'Mid 1 - Mid 3',true ,[2 4],... 'Mid 1 - Mid 2',false,[2 3],... 'Mid 2 - Mid 3',false,[3 4],... 'Mid 3 - Base' ,false,[4 5]);

Domain = Petrel.Domain.ElevationDepth;

Node = Petrel.makeGrid(X,Y,Z,Fault,Horizon,Zone,Domain);

Add the 'Grid' node to the folder

Page 55: Support Package for Petrel

Path = Petrel.addNode(Path,'Grid 1',Node);

Make a 'GridPropertyContinuous' node

Xc = mean(X,4);Yc = mean(Y,4);Zc = mean(Z,4);

Kernel = ones(2,2,2) ./ 8;

Xc = convn(Xc,Kernel,'valid');Yc = convn(Yc,Kernel,'valid');Zc = convn(Zc,Kernel,'valid');

Value = sqrt(Xc.^2 + Yc.^2 + Zc.^2);

figure;scatter3(Xc(:),Yc(:),Zc(:),10,Value(:),'fill');axis('vis3d');grid('on');title('Continuous Grid Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makeGridPropertyContinuous(Value,Petrel.Template.GeneralContinuous);

Add the 'GridPropertyContinuous' node to the 'Grid' node

Page 56: Support Package for Petrel

Path = horzcat(Path,'/Properties');

Petrel.addNode(Path,'Continuous 1',Node);

Make a 'GridPropertyDiscrete' node

[~,Xb] = hist(Value,5); % Group continuous property into 5 discrete values.

[~,Value] = histc(Value,Xb);

figure;scatter3(Xc(:),Yc(:),Zc(:),10,Value(:),'fill');axis('vis3d');grid('on');title('Discrete Grid Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makeGridPropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

Add the 'GridPropertyDiscrete' node to the 'Grid' node

Path = Petrel.addNode(Path,'Discrete 1',Node);

Add a window

Window = Petrel.addWindow(Petrel.Window.Window3D);

Page 57: Support Package for Petrel

Show the 'GridPropertyDiscrete' node in the window

Petrel.showNode(Path,Window,true);

Published with MATLAB® R2017b

Page 58: Support Package for Petrel

Contents

ex_Petrel_Membrane

Create L-shaped membrane

ex_Petrel_Membrane

Create L-shaped membrane

Open ex_Petrel_Membrane

function [X,Y,Z] = ex_Petrel_Membrane()

Create L-shaped membrane

Syntax:

[X,Y,Z] = ex_Petrel_Membrane()

Outputs:

X [MxN] (double) : Surface X coordinate.Y [MxN] (double) : Surface Y coordinate.Z [MxN] (double) : Surface Z coordinate.

Examples:

[X,Y,Z] = ex_Petrel_Membrane();

See also membrane.

Z = membrane(1);Z = Z - min(Z(:));Z = Z / max(Z(:));

[M,N] = size(Z);

Z = Z * max(M,N) / 5; % Petrel's default Z-scale is 5.X = 0:(N - 1);Y = 0:(M - 1);

X = 1000 * X; % (m) -> (km)Y = 1000 * Y;Z = 1000 * Z;

[X,Y] = meshgrid(X,Y);

end

Published with MATLAB® R2017b

Page 59: Support Package for Petrel
Page 60: Support Package for Petrel

ex_Petrel_PointSet

PointSet

Open ex_Petrel_PointSet

Contents

PointSet

Add a folder

Make a 'PointSet' node

Add the 'PointSet' node to the folder

Add a window

Show the 'PointSet' node in the window

Make a 'PointSetPropertyContinuous' node

Add the 'PointSetPropertyContinuous' node to the 'PointSet' node.

Make a 'PointSetPropertyDiscrete' Node

Add the 'PointSetPropertyDiscrete' node to the 'PointSet' node

PointSet

Geometry (X,Y,Z)

Continuous Property

Discrete Property

Open Petrel before running this file.

Add a folder

Path = Petrel.addFolder('/Input','Points');

Make a 'PointSet' node

[Xm,Ym,Zm] = ex_Petrel_Membrane();

X = Xm(:);Y = Ym(:);Z = Zm(:);

figure;plot3(X,Y,Z,'.');axis('vis3d');grid('on');title('PointSet');xlabel('X');ylabel('Y');zlabel('Z');

Node = Petrel.makePointSet(X,Y,Z,Petrel.Template.ElevationDepth);

Page 61: Support Package for Petrel

Add the 'PointSet' node to the folder

Path = Petrel.addNode(Path,'Point 1',Node);

Add a window

Window = Petrel.addWindow(Petrel.Window.Window3D);

Show the 'PointSet' node in the window

Petrel.showNode(Path,Window,true);

Make a 'PointSetPropertyContinuous' node

Value = sqrt(X.^2 + Y.^2 + Z.^2);

figure;scatter3(X,Y,Z,10,Value,'fill');axis('vis3d');grid('on');title('Continuous PointSet Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makePointSetPropertyContinuous(Value,Petrel.Template.GeneralContinuous);

Page 62: Support Package for Petrel

Add the 'PointSetPropertyContinuous' node to the 'PointSet' node.

Petrel.addNode(Path,'Continuous 1',Node);

Make a 'PointSetPropertyDiscrete' Node

[~,Xb] = hist(Value,5); % Group continuous property into 5 discrete values.

[~,Value] = histc(Value,Xb);

figure;scatter3(X,Y,Z,10,Value,'fill');axis('vis3d');grid('on');title('Discrete PointSet Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makePointSetPropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

Page 63: Support Package for Petrel

Add the 'PointSetPropertyDiscrete' node to the 'PointSet' node

Petrel.addNode(Path,'Discrete 1',Node);

Published with MATLAB® R2017b

Page 64: Support Package for Petrel

ex_Petrel_PolylineSet

PolylineSet

Open ex_Petrel_PolylineSet

Contents

PolylineSet

Add a folder

Make a 'PolylineSet' node

Add the 'PolylineSet' node to the folder

Add a window

Show the 'PolylineSet' node in the window

Make a 'PolylineSetPropertyContinuous' node

Add the 'PolylineSetPropertyContinuous' node to the 'PolylineSet' node.

Make a 'PolylineSetPropertyDiscrete' Node

Add the 'PolylineSetPropertyDiscrete' node to the 'PolylineSet' node

PolylineSet

Geometry (X,Y,Z)

Continuous Property

Discrete Property

Open Petrel before running this file.

Add a folder

Path = Petrel.addFolder('/Input','Lines');

Make a 'PolylineSet' node

[Xm,Ym,Zm] = ex_Petrel_Membrane();

[M,N] = size(Xm);

X = cell(1,N);Y = cell(1,N);Z = cell(1,N);

for i = 1:N

X{i} = Xm(:,i); Y{i} = Ym(:,i); Z{i} = Zm(:,i);end

figure;hold('on');

Page 65: Support Package for Petrel

for i = 1:N plot3(X{i},Y{i},Z{i},'-');end

hold('off')view(3);axis('vis3d');grid('on');title('PolylineSet');xlabel('X');ylabel('Y');zlabel('Z');

Node = Petrel.makePolylineSet(X,Y,Z,Petrel.Template.ElevationDepth);

Add the 'PolylineSet' node to the folder

Path = Petrel.addNode(Path,'Line 1',Node);

Add a window

Window = Petrel.addWindow(Petrel.Window.Window3D);

Show the 'PolylineSet' node in the window

Petrel.showNode(Path,Window,true);

Make a 'PolylineSetPropertyContinuous' node

Page 66: Support Package for Petrel

Xc = cellfun(@mean,X);Yc = cellfun(@mean,Y);Zc = cellfun(@mean,Z);

Value = sqrt(Xc.^2 + Yc.^2 + Zc.^2);

figure;scatter3(Xc,Yc,Zc,10,Value,'fill');axis('vis3d');grid('on');title('Continuous PolylineSet Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makePolylineSetPropertyContinuous(Value,Petrel.Template.GeneralContinuous);

Add the 'PolylineSetPropertyContinuous' node to the 'PolylineSet' node.

Petrel.addNode(Path,'Continuous 1',Node);

Make a 'PolylineSetPropertyDiscrete' Node

[~,Xb] = hist(Value,5); % Group continuous property into 5 discrete values.

[~,Value] = histc(Value,Xb);

figure;

Page 67: Support Package for Petrel

scatter3(Xc,Yc,Zc,10,Value,'fill');axis('vis3d');grid('on');title('Discrete PolylineSet Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makePolylineSetPropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

Add the 'PolylineSetPropertyDiscrete' node to the 'PolylineSet' node

Petrel.addNode(Path,'Discrete 1',Node);

Published with MATLAB® R2017b

Page 68: Support Package for Petrel

ex_Petrel_SeismicCube

Seismic Cube

Open ex_Petrel_SeismicCube

Contents

Seismic Cube

Get a 'SeismicCube' node

Create a 'SeismicCube' data store

Seismic Cube

Geometry and Value (X,Y,Z,Value)

Open ex_Petrel.pet in Petrel before running this file.

Get a 'SeismicCube' node

Node = Petrel.getNode('/Input/Seismic/Survey 1/Cube 1');

[M,N,P] = size(Node.Value);

X = repmat(Node.X,[1 1 P]);Y = repmat(Node.Y,[1 1 P]);Z = repmat(Node.Z,[M N 1]);

Sx = round(N./2);Sy = round(M./2);Sz = round(P./2);

% Inline

SliceI.X = squeeze(X(Sy,:,:));SliceI.Y = squeeze(Y(Sy,:,:));SliceI.Z = squeeze(Z(Sy,:,:));SliceI.Value = squeeze(Node.Value(Sy,:,:));

% Crossline

SliceX.X = squeeze(X(:,Sx,:));SliceX.Y = squeeze(Y(:,Sx,:));SliceX.Z = squeeze(Z(:,Sx,:));SliceX.Value = squeeze(Node.Value(:,Sx,:));

% Z

SliceZ.X = squeeze(X(:,:,Sz));SliceZ.Y = squeeze(Y(:,:,Sz));SliceZ.Z = squeeze(Z(:,:,Sz));SliceZ.Value = squeeze(Node.Value(:,:,Sz));

ColorMap = [1 1 0;1 0 0;0.8 0.8 0.8;0 0 1;0 1 1];ColorMap = interp1(ColorMap,1:.025:5);

figure;

Page 69: Support Package for Petrel

hold('on');surf(SliceI.X,SliceI.Y,SliceI.Z,SliceI.Value);surf(SliceX.X,SliceX.Y,SliceX.Z,SliceX.Value);surf(SliceZ.X,SliceZ.Y,SliceZ.Z,SliceZ.Value);hold('off');shading('flat');view(3);axis('vis3d');grid('on');title('SeismicCube');xlabel('X');ylabel('Y');zlabel('Z');colormap(ColorMap);caxis([-8000 +8000]);colorbar;

Create a 'SeismicCube' data store

The 'SeismicCube' data store can access a subset of the volume without loading the entire volume. This permits working with data sets toolarge to fit into memory. Accessing the data in MATLAB is transparent to the user. Use standard array indexing to subscript the data.

SC = Petrel.SeismicCube('/Input/Seismic/Survey 1/Cube 1');

[M,N,P] = size(SC.Value);

NumTiles = 5;

m = floor(M / NumTiles);n = floor(N / NumTiles);

Page 70: Support Package for Petrel

Io = floor(linspace(1,(M - m - 1),NumTiles));Jo = floor(linspace(1,(N - n - 1),NumTiles));Ko = floor(linspace(1,P,3));

Io = Io(1:2:end);Jo = Jo(1:2:end);

figure;hold('on');

for i = 1:numel(Io) for j = 1:numel(Jo)

I = Io(i) + (0:(m - 1)); J = Jo(j) + (0:(n - 1));

for k = 1:numel(Ko)

K = Ko(k);

X = SC.X(I,J); Y = SC.Y(I,J); Z = SC.Z(1,1,k); Z = repmat(Z,size(X));

Value = SC.Value(I,J,K);

surf(X,Y,Z,Value); end endend

hold('off');shading('flat');view(3);axis('vis3d');grid('on');title('SeismicCube Data Store');xlabel('X');ylabel('Y');zlabel('Z');colormap(ColorMap);caxis([-8000 +8000]);colorbar;

Page 71: Support Package for Petrel

Published with MATLAB® R2017b

Page 72: Support Package for Petrel

ex_Petrel_Surface

Surface

Open ex_Petrel_Surface

Contents

Surface

Add a folder

Make a 'Surface' node

Add the 'Surface' node to the folder

Add a window

Show the 'Grid' node in the window

Make a 'SurfacePropertyContinuous' node

Add the 'SurfacePropertyContinuous' node to the 'Surface' node

Make a 'SurfacePropertyDiscrete' node

Add the SurfacePropertyDiscrete node to the Surface node

Surface

Geometry (X,Y,Z)

Continuous Property

Discrete Property

Open Petrel before running this file.

Add a folder

Path = Petrel.addFolder('/Input','Surfaces');

Make a 'Surface' node

[Xm,Ym,Zm] = ex_Petrel_Membrane();

X = Xm;Y = Ym;Z = Zm;

figure;surf(X,Y,Z);axis('vis3d');grid('on');title('Surface');xlabel('X');ylabel('Y');zlabel('Z');

Node = Petrel.makeSurface(X,Y,Z,Petrel.Template.ElevationDepth);

Page 73: Support Package for Petrel

Add the 'Surface' node to the folder

Path = Petrel.addNode(Path,'Surface 1',Node);

Add a window

Window = Petrel.addWindow(Petrel.Window.Window3D);

Show the 'Grid' node in the window

Petrel.showNode(Path,Window,true);

Make a 'SurfacePropertyContinuous' node

Value = sqrt(X.^2 + Y.^2 + Z.^2);

figure;surf(X,Y,Z,Value);axis('vis3d');grid('on');title('Continuous Surface Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makeSurfacePropertyContinuous(Value,Petrel.Template.GeneralContinuous);

Page 74: Support Package for Petrel

Add the 'SurfacePropertyContinuous' node to the 'Surface' node

Petrel.addNode(Path,'Continuous 1',Node);

Make a 'SurfacePropertyDiscrete' node

[~,Xb] = hist(Value,5); % Group continuous property into 5 discrete values.

[~,Value] = histc(Value,Xb);

figure;surf(X,Y,Z,Value);axis('vis3d');grid('on');title('Discrete Surface Property');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Node = Petrel.makeSurfacePropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

Page 75: Support Package for Petrel

Add the SurfacePropertyDiscrete node to the Surface node

Petrel.addNode(Path,'Discrete 1',Node);

Published with MATLAB® R2017b

Page 76: Support Package for Petrel

ex_Petrel_Well

Well

Open ex_Petrel_Well

Contents

Well

Find all 'WellLog' nodes named "Porosity"

Synthesize a new 'Well'

Make a 'Well' node

Make a 'WellLog' node

Add a folder

Add the 'Well' node to the folder

Add the 'WellLog' node to the 'Well' node

Add a window

Show the 'WellLog' node in the window

Well

Geometry (X,Y,Z,Offset)

Log (X,Y,Z,Depth,Value)

Open ex_Petrel.pet in Petrel before running this file.

Find all 'WellLog' nodes named "Porosity"

Path = Petrel.findNode('/Input/Wells/*','Porosity',Petrel.Type.WellLog);

NumWells = numel(Path);

figure;hold('on');

for i = 1:NumWells

WellLog = Petrel.getNode(Path{i});

scatter3(WellLog.X,WellLog.Y,WellLog.Z,10,WellLog.Value,'fill');end

hold('off');view(3);axis('vis3d');grid('on');title('Well Log - Porosity');xlabel('X');ylabel('Y');zlabel('Z');colorbar;

Page 77: Support Package for Petrel

Synthesize a new 'Well'

Define a new well path in the middle of the field. Use a linear regression to estimate the "Porosity" along the new well path.

X = [];Y = [];Z = [];V = [];

for i = 1:NumWells

WellLog = Petrel.getNode(Path{i});

X = vertcat(X,WellLog.X); %#ok<AGROW> Y = vertcat(Y,WellLog.Y); %#ok<AGROW> Z = vertcat(Z,WellLog.Z); %#ok<AGROW> V = vertcat(V,WellLog.Value); %#ok<AGROW>end

% Remove NaNs

Mask = ~isnan(V);

X = X(Mask);Y = Y(Mask);Z = Z(Mask);V = V(Mask);

% Estimate "Porosity"

N = 100;

Page 78: Support Package for Petrel

Xq = repmat(mean(X),N,1);Yq = repmat(mean(Y),N,1);Zq = linspace(max(Z),min(Z),N)';

B = [X Y Z ones(size(X))] \ V;

Vq = [Xq Yq Zq ones(size(Xq))] * B;

Make a 'Well' node

X = Xq;Y = Yq;Z = Zq;

Offset = 0;

Well = Petrel.makeWell(X,Y,Z,Offset);

Make a 'WellLog' node

Depth = -Z;Value = Vq;Template = Petrel.Template.Porosity;

WellLog = Petrel.makeWellLog(Depth,Value,Template);

Add a folder

Path = Petrel.addFolder('/Input/Wells','Synthesized Wells');

Add the 'Well' node to the folder

Path = Petrel.addNode(Path,'Synthesized Well',Well);

Add the 'WellLog' node to the 'Well' node

Path = horzcat(Path,'/Well logs');

Petrel.addNode(Path,'Porosity',WellLog);

Add a window

Window = Petrel.addWindow(Petrel.Window.Window3D);

Show the 'WellLog' node in the window

Path = Petrel.findNode('/Input/Wells/*','Porosity',Petrel.Type.WellLog);

Petrel.showNode(Path,Window,true);

Page 79: Support Package for Petrel

Published with MATLAB® R2017b

Page 80: Support Package for Petrel

Petrel.Domain.DipAngle

Dip angle

Contents

Detail

Detail

DipAngle [1x?] (char) : Dip angle

Published with MATLAB® R2017b

Page 81: Support Package for Petrel
Page 82: Support Package for Petrel

Petrel.Domain.DipAzimuth

Dip azimuth

Contents

Detail

Detail

DipAzimuth [1x?] (char) : Dip azimuth

Published with MATLAB® R2017b

Page 83: Support Package for Petrel
Page 84: Support Package for Petrel

Petrel.Domain.Distance

Distance

Contents

Detail

Detail

Distance [1x?] (char) : Distance

Published with MATLAB® R2017b

Page 85: Support Package for Petrel
Page 86: Support Package for Petrel

Petrel.Domain.Dls

Dogleg severity

Contents

Detail

Detail

Dls [1x?] (char) : Dogleg severity

Published with MATLAB® R2017b

Page 87: Support Package for Petrel
Page 88: Support Package for Petrel

Petrel.Domain.ElevationDepth

Elevation depth

Contents

Detail

Detail

ElevationDepth [1x?] (char) : Elevation depth

Published with MATLAB® R2017b

Page 89: Support Package for Petrel
Page 90: Support Package for Petrel

Petrel.Domain.ElevationTime

Elevation time

Contents

Detail

Detail

ElevationTime [1x?] (char) : Elevation time

Published with MATLAB® R2017b

Page 91: Support Package for Petrel
Page 92: Support Package for Petrel

Petrel.Domain.GeneralInteger

General integer

Contents

Detail

Detail

GeneralInteger [1x?] (char) : General integer

Published with MATLAB® R2017b

Page 93: Support Package for Petrel
Page 94: Support Package for Petrel

Petrel.Domain.GeologicalTimescale

Geological time scale

Contents

Detail

Detail

GeologicalTimescale [1x?] (char) : Geological time scale

Published with MATLAB® R2017b

Page 95: Support Package for Petrel
Page 96: Support Package for Petrel

Petrel.Domain.MeasuredDepth

Measured depth

Contents

Detail

Detail

MeasuredDepth [1x?] (char) : Measured depth

Published with MATLAB® R2017b

Page 97: Support Package for Petrel
Page 98: Support Package for Petrel

Petrel.Domain.Owt

One-way time

Contents

Detail

Detail

Owt [1x?] (char) : One-way time

Published with MATLAB® R2017b

Page 99: Support Package for Petrel
Page 100: Support Package for Petrel

Petrel.Domain.SimulationTime

Simulation time

Contents

Detail

Detail

SimulationTime [1x?] (char) : Simulation time

Published with MATLAB® R2017b

Page 101: Support Package for Petrel
Page 102: Support Package for Petrel

Petrel.Domain.Tst

True stratigraphic thickness

Contents

Detail

Detail

Tst [1x?] (char) : True stratigraphic thickness

Published with MATLAB® R2017b

Page 103: Support Package for Petrel
Page 104: Support Package for Petrel

Petrel.Domain.Tvt

True vertical thickness

Contents

Detail

Detail

Tvt [1x?] (char) : True vertical thickness

Published with MATLAB® R2017b

Page 105: Support Package for Petrel
Page 106: Support Package for Petrel

Petrel.Domain.Twt

Two-way time

Contents

Detail

Detail

Twt [1x?] (char) : Two-way time

Published with MATLAB® R2017b

Page 107: Support Package for Petrel
Page 108: Support Package for Petrel

Petrel.Folder.SeismicInterpretation

Seismic interpretation folder

Contents

Detail

Detail

SeismicInterpretation [1x?] (char) : Seismic interpretation folder

Published with MATLAB® R2017b

Page 109: Support Package for Petrel
Page 110: Support Package for Petrel

Petrel.Folder.SeismicSurvey

Seismic survey folder

Contents

Detail

Detail

SeismicSurvey [1x?] (char) : Seismic survey folder

Published with MATLAB® R2017b

Page 111: Support Package for Petrel
Page 112: Support Package for Petrel

Petrel.Folder.Wells

Wells folder

Contents

Detail

Detail

Wells [1x?] (char) : Wells folder

Published with MATLAB® R2017b

Page 113: Support Package for Petrel
Page 114: Support Package for Petrel

Petrel.Horizon.Base

Base horizon

Contents

Detail

Detail

Base [1x?] (char) : Base horizon

Published with MATLAB® R2017b

Page 115: Support Package for Petrel
Page 116: Support Package for Petrel

Petrel.Horizon.Conformable

Conformable horizon

Contents

Detail

Detail

Conformable [1x?] (char) : Conformable horizon

Published with MATLAB® R2017b

Page 117: Support Package for Petrel
Page 118: Support Package for Petrel

Petrel.Horizon.Discontinous

Discontinous horizon

Contents

Detail

Detail

Discontinous [1x?] (char) : Discontinous horizon

Published with MATLAB® R2017b

Page 119: Support Package for Petrel
Page 120: Support Package for Petrel

Petrel.Horizon.Erosional

Erosional horizon

Contents

Detail

Detail

Erosional [1x?] (char) : Erosional horizon

Published with MATLAB® R2017b

Page 121: Support Package for Petrel
Page 122: Support Package for Petrel

Petrel.Horizon.Intermediate

Intermediate horizon

Contents

Detail

Detail

Intermediate [1x?] (char) : Intermediate horizon

Published with MATLAB® R2017b

Page 123: Support Package for Petrel
Page 124: Support Package for Petrel

Petrel.Horizon.LayerHorizon

Layer horizon

Contents

Detail

Detail

LayerHorizon [1x?] (char) : Layer horizon

Published with MATLAB® R2017b

Page 125: Support Package for Petrel
Page 126: Support Package for Petrel

Petrel.SeismicCube.Path

Path to seismic cube

Contents

Detail

Detail

Path [1x?] (char) : Path to seismic cube

Published with MATLAB® R2017b

Page 127: Support Package for Petrel
Page 128: Support Package for Petrel

Petrel.SeismicCube.Value

Seismic cube value

Contents

Detail

Detail

Value [MxNxP] (double) : Seismic cube value.

Published with MATLAB® R2017b

Page 129: Support Package for Petrel
Page 130: Support Package for Petrel

Petrel.SeismicCube.X

Seismic cube X coordinate

Contents

Detail

Detail

X [MxN] (double) : Seismic cube X coordinate.

Published with MATLAB® R2017b

Page 131: Support Package for Petrel
Page 132: Support Package for Petrel

Petrel.SeismicCube.Y

Seismic cube Y coordinate

Contents

Detail

Detail

Y [MxN] (double) : Seismic cube Y coordinate.

Published with MATLAB® R2017b

Page 133: Support Package for Petrel
Page 134: Support Package for Petrel

Petrel.SeismicCube.Z

Seismic cube Z coordinate

Contents

Detail

Detail

Z [1x1xP] (double) : Seismic cube Z coordinate.

Published with MATLAB® R2017b

Page 135: Support Package for Petrel
Page 136: Support Package for Petrel

Petrel.SeismicCube.SeismicCube

Constructor

Contents

Detail

Detail

Syntax:

this = Petrel.SeismicCube(Path)

Inputs:

Path [1x?] (char) : Path of the node in Petrel.

Examples:

SC = Petrel.SeismicCube('/Input/Seismic/Survey 1/Cube 1');

Value = SC.Value(1:10:end,1:10:end,1:10:end);

Published with MATLAB® R2017b

Page 137: Support Package for Petrel
Page 138: Support Package for Petrel

Petrel.Template.AboveContact

Above contact

Contents

Detail

Detail

AboveContact [1x?] (char) : Above contact

Published with MATLAB® R2017b

Page 139: Support Package for Petrel
Page 140: Support Package for Petrel

Petrel.Template.Acceleration

Acceleration

Contents

Detail

Detail

Acceleration [1x?] (char) : Acceleration

Published with MATLAB® R2017b

Page 141: Support Package for Petrel
Page 142: Support Package for Petrel

Petrel.Template.Acidity

Acidity

Contents

Detail

Detail

Acidity [1x?] (char) : Acidity

Published with MATLAB® R2017b

Page 143: Support Package for Petrel
Page 144: Support Package for Petrel

Petrel.Template.ActiveCellFlag

Cell activity

Contents

Detail

Detail

ActiveCellFlag [1x?] (char) : Cell activity

Published with MATLAB® R2017b

Page 145: Support Package for Petrel
Page 146: Support Package for Petrel

Petrel.Template.ActivityCode

Activity code

Contents

Detail

Detail

ActivityCode [1x?] (char) : Activity code

Published with MATLAB® R2017b

Page 147: Support Package for Petrel
Page 148: Support Package for Petrel

Petrel.Template.Adsorption

Adsorption

Contents

Detail

Detail

Adsorption [1x?] (char) : Adsorption

Published with MATLAB® R2017b

Page 149: Support Package for Petrel
Page 150: Support Package for Petrel

Petrel.Template.AmountOfSubstance

Amount of substance

Contents

Detail

Detail

AmountOfSubstance [1x?] (char) : Amount of substance

Published with MATLAB® R2017b

Page 151: Support Package for Petrel
Page 152: Support Package for Petrel

Petrel.Template.AnnulusPressure

Annulus pressure

Contents

Detail

Detail

AnnulusPressure [1x?] (char) : Annulus pressure

Published with MATLAB® R2017b

Page 153: Support Package for Petrel
Page 154: Support Package for Petrel

Petrel.Template.Area

Area

Contents

Detail

Detail

Area [1x?] (char) : Area

Published with MATLAB® R2017b

Page 155: Support Package for Petrel
Page 156: Support Package for Petrel

Petrel.Template.BGFactor

Gas formation volume factor

Contents

Detail

Detail

BGFactor [1x?] (char) : Gas formation volume factor

Published with MATLAB® R2017b

Page 157: Support Package for Petrel
Page 158: Support Package for Petrel

Petrel.Template.BOFactor

Oil formation volume factor

Contents

Detail

Detail

BOFactor [1x?] (char) : Oil formation volume factor

Published with MATLAB® R2017b

Page 159: Support Package for Petrel
Page 160: Support Package for Petrel

Petrel.Template.BWFactor

Water formation volume factor

Contents

Detail

Detail

BWFactor [1x?] (char) : Water formation volume factor

Published with MATLAB® R2017b

Page 161: Support Package for Petrel
Page 162: Support Package for Petrel

Petrel.Template.BitDepth

Bit depth

Contents

Detail

Detail

BitDepth [1x?] (char) : Bit depth

Published with MATLAB® R2017b

Page 163: Support Package for Petrel
Page 164: Support Package for Petrel

Petrel.Template.Bodies

Bodies

Contents

Detail

Detail

Bodies [1x?] (char) : Bodies

Published with MATLAB® R2017b

Page 165: Support Package for Petrel
Page 166: Support Package for Petrel

Petrel.Template.BooleanProperty

Boolean

Contents

Detail

Detail

BooleanProperty [1x?] (char) : Boolean

Published with MATLAB® R2017b

Page 167: Support Package for Petrel
Page 168: Support Package for Petrel

Petrel.Template.BottomHolePressure

Bottom hole pressure

Contents

Detail

Detail

BottomHolePressure [1x?] (char) : Bottom hole pressure

Published with MATLAB® R2017b

Page 169: Support Package for Petrel
Page 170: Support Package for Petrel

Petrel.Template.BottomHoleProppantConcentration

Bottom hole proppant concentration

Contents

Detail

Detail

BottomHoleProppantConcentration [1x?] (char) : Bottom hole proppant concentration

Published with MATLAB® R2017b

Page 171: Support Package for Petrel
Page 172: Support Package for Petrel

Petrel.Template.BulkModulus

Bulk modulus

Contents

Detail

Detail

BulkModulus [1x?] (char) : Bulk modulus

Published with MATLAB® R2017b

Page 173: Support Package for Petrel
Page 174: Support Package for Petrel

Petrel.Template.BulkVelocityGas

Gas velocity

Contents

Detail

Detail

BulkVelocityGas [1x?] (char) : Gas velocity

Published with MATLAB® R2017b

Page 175: Support Package for Petrel
Page 176: Support Package for Petrel

Petrel.Template.BulkVelocityOil

Oil velocity

Contents

Detail

Detail

BulkVelocityOil [1x?] (char) : Oil velocity

Published with MATLAB® R2017b

Page 177: Support Package for Petrel
Page 178: Support Package for Petrel

Petrel.Template.BulkVelocityWater

Water velocity

Contents

Detail

Detail

BulkVelocityWater [1x?] (char) : Water velocity

Published with MATLAB® R2017b

Page 179: Support Package for Petrel
Page 180: Support Package for Petrel

Petrel.Template.BulkVolume

Bulk volume

Contents

Detail

Detail

BulkVolume [1x?] (char) : Bulk volume

Published with MATLAB® R2017b

Page 181: Support Package for Petrel
Page 182: Support Package for Petrel

Petrel.Template.Caliper

Caliper

Contents

Detail

Detail

Caliper [1x?] (char) : Caliper

Published with MATLAB® R2017b

Page 183: Support Package for Petrel
Page 184: Support Package for Petrel

Petrel.Template.CaliperAcoustic

Caliper, acoustic stand-off

Contents

Detail

Detail

CaliperAcoustic [1x?] (char) : Caliper, acoustic stand-off

Published with MATLAB® R2017b

Page 185: Support Package for Petrel
Page 186: Support Package for Petrel

Petrel.Template.CaliperMechanical

Caliper, mechanical

Contents

Detail

Detail

CaliperMechanical [1x?] (char) : Caliper, mechanical

Published with MATLAB® R2017b

Page 187: Support Package for Petrel
Page 188: Support Package for Petrel

Petrel.Template.CapillaryPressure

Capillary pressure

Contents

Detail

Detail

CapillaryPressure [1x?] (char) : Capillary pressure

Published with MATLAB® R2017b

Page 189: Support Package for Petrel
Page 190: Support Package for Petrel

Petrel.Template.CarbonDioxideRate

Carbon dioxide rate

Contents

Detail

Detail

CarbonDioxideRate [1x?] (char) : Carbon dioxide rate

Published with MATLAB® R2017b

Page 191: Support Package for Petrel
Page 192: Support Package for Petrel

Petrel.Template.CellAngle

Cell angle

Contents

Detail

Detail

CellAngle [1x?] (char) : Cell angle

Published with MATLAB® R2017b

Page 193: Support Package for Petrel
Page 194: Support Package for Petrel

Petrel.Template.CellDeltaX

Cell X dimension

Contents

Detail

Detail

CellDeltaX [1x?] (char) : Cell X dimension

Published with MATLAB® R2017b

Page 195: Support Package for Petrel
Page 196: Support Package for Petrel

Petrel.Template.CellDeltaY

Cell Y dimension

Contents

Detail

Detail

CellDeltaY [1x?] (char) : Cell Y dimension

Published with MATLAB® R2017b

Page 197: Support Package for Petrel
Page 198: Support Package for Petrel

Petrel.Template.CellHeight

Cell height

Contents

Detail

Detail

CellHeight [1x?] (char) : Cell height

Published with MATLAB® R2017b

Page 199: Support Package for Petrel
Page 200: Support Package for Petrel

Petrel.Template.CellInsideOut

Cell inside out

Contents

Detail

Detail

CellInsideOut [1x?] (char) : Cell inside out

Published with MATLAB® R2017b

Page 201: Support Package for Petrel
Page 202: Support Package for Petrel

Petrel.Template.CellTopDepth

Cell top depth

Contents

Detail

Detail

CellTopDepth [1x?] (char) : Cell top depth

Published with MATLAB® R2017b

Page 203: Support Package for Petrel
Page 204: Support Package for Petrel

Petrel.Template.CleanFluid

Clean fluid

Contents

Detail

Detail

CleanFluid [1x?] (char) : Clean fluid

Published with MATLAB® R2017b

Page 205: Support Package for Petrel
Page 206: Support Package for Petrel

Petrel.Template.CleanFluidRate

Clean fluid rate

Contents

Detail

Detail

CleanFluidRate [1x?] (char) : Clean fluid rate

Published with MATLAB® R2017b

Page 207: Support Package for Petrel
Page 208: Support Package for Petrel

Petrel.Template.CmplsArea

Completion area

Contents

Detail

Detail

CmplsArea [1x?] (char) : Completion area

Published with MATLAB® R2017b

Page 209: Support Package for Petrel
Page 210: Support Package for Petrel

Petrel.Template.CmplsDepth

Completion depth

Contents

Detail

Detail

CmplsDepth [1x?] (char) : Completion depth

Published with MATLAB® R2017b

Page 211: Support Package for Petrel
Page 212: Support Package for Petrel

Petrel.Template.CmplsDiameter

Completion diameter

Contents

Detail

Detail

CmplsDiameter [1x?] (char) : Completion diameter

Published with MATLAB® R2017b

Page 213: Support Package for Petrel
Page 214: Support Package for Petrel

Petrel.Template.CmplsDrainageRadius

Drainage radius

Contents

Detail

Detail

CmplsDrainageRadius [1x?] (char) : Drainage radius

Published with MATLAB® R2017b

Page 215: Support Package for Petrel
Page 216: Support Package for Petrel

Petrel.Template.CmplsPermLength

Permeability-length

Contents

Detail

Detail

CmplsPermLength [1x?] (char) : Permeability-length

Published with MATLAB® R2017b

Page 217: Support Package for Petrel
Page 218: Support Package for Petrel

Petrel.Template.CmplsPiCompressible

PI compressible fluid

Contents

Detail

Detail

CmplsPiCompressible [1x?] (char) : PI compressible fluid

Published with MATLAB® R2017b

Page 219: Support Package for Petrel
Page 220: Support Package for Petrel

Petrel.Template.CmplsPiGas

PI gas

Contents

Detail

Detail

CmplsPiGas [1x?] (char) : PI gas

Published with MATLAB® R2017b

Page 221: Support Package for Petrel
Page 222: Support Package for Petrel

Petrel.Template.CmplsPiLiquid

PI liquid

Contents

Detail

Detail

CmplsPiLiquid [1x?] (char) : PI liquid

Published with MATLAB® R2017b

Page 223: Support Package for Petrel
Page 224: Support Package for Petrel

Petrel.Template.CmplsPiMult

PI multiplier

Contents

Detail

Detail

CmplsPiMult [1x?] (char) : PI multiplier

Published with MATLAB® R2017b

Page 225: Support Package for Petrel
Page 226: Support Package for Petrel

Petrel.Template.CmplsRoughness

Roughness

Contents

Detail

Detail

CmplsRoughness [1x?] (char) : Roughness

Published with MATLAB® R2017b

Page 227: Support Package for Petrel
Page 228: Support Package for Petrel

Petrel.Template.CmplsSkin

Skin

Contents

Detail

Detail

CmplsSkin [1x?] (char) : Skin

Published with MATLAB® R2017b

Page 229: Support Package for Petrel
Page 230: Support Package for Petrel

Petrel.Template.CmplsTransmissiblity

Connection transmissibility

Contents

Detail

Detail

CmplsTransmissiblity [1x?] (char) : Connection transmissibility

Published with MATLAB® R2017b

Page 231: Support Package for Petrel
Page 232: Support Package for Petrel

Petrel.Template.CoalGasConcentration

Coal gas concentration

Contents

Detail

Detail

CoalGasConcentration [1x?] (char) : Coal gas concentration

Published with MATLAB® R2017b

Page 233: Support Package for Petrel
Page 234: Support Package for Petrel

Petrel.Template.CoalGasVolumePerMass

Coal gas volume per mass

Contents

Detail

Detail

CoalGasVolumePerMass [1x?] (char) : Coal gas volume per mass

Published with MATLAB® R2017b

Page 235: Support Package for Petrel
Page 236: Support Package for Petrel

Petrel.Template.ComplCasing

Cased

Contents

Detail

Detail

ComplCasing [1x?] (char) : Cased

Published with MATLAB® R2017b

Page 237: Support Package for Petrel
Page 238: Support Package for Petrel

Petrel.Template.ComplGeneral

Completion string

Contents

Detail

Detail

ComplGeneral [1x?] (char) : Completion string

Published with MATLAB® R2017b

Page 239: Support Package for Petrel
Page 240: Support Package for Petrel

Petrel.Template.ComplLiner

Lined

Contents

Detail

Detail

ComplLiner [1x?] (char) : Lined

Published with MATLAB® R2017b

Page 241: Support Package for Petrel
Page 242: Support Package for Petrel

Petrel.Template.ComplPlugbackTotalDepth

Plug back tot. depth

Contents

Detail

Detail

ComplPlugbackTotalDepth [1x?] (char) : Plug back tot. depth

Published with MATLAB® R2017b

Page 243: Support Package for Petrel
Page 244: Support Package for Petrel

Petrel.Template.ComplTotalDepth

Total depth

Contents

Detail

Detail

ComplTotalDepth [1x?] (char) : Total depth

Published with MATLAB® R2017b

Page 245: Support Package for Petrel
Page 246: Support Package for Petrel

Petrel.Template.ComplWellDatum

Well datum

Contents

Detail

Detail

ComplWellDatum [1x?] (char) : Well datum

Published with MATLAB® R2017b

Page 247: Support Package for Petrel
Page 248: Support Package for Petrel

Petrel.Template.CompressionalRatio

Compressional modulus

Contents

Detail

Detail

CompressionalRatio [1x?] (char) : Compressional modulus

Published with MATLAB® R2017b

Page 249: Support Package for Petrel
Page 250: Support Package for Petrel

Petrel.Template.Conductivity

Conductivity

Contents

Detail

Detail

Conductivity [1x?] (char) : Conductivity

Published with MATLAB® R2017b

Page 251: Support Package for Petrel
Page 252: Support Package for Petrel

Petrel.Template.ConductivityDeep

Conductivity, deep

Contents

Detail

Detail

ConductivityDeep [1x?] (char) : Conductivity, deep

Published with MATLAB® R2017b

Page 253: Support Package for Petrel
Page 254: Support Package for Petrel

Petrel.Template.ConductivityMedium

Conductivity, medium

Contents

Detail

Detail

ConductivityMedium [1x?] (char) : Conductivity, medium

Published with MATLAB® R2017b

Page 255: Support Package for Petrel
Page 256: Support Package for Petrel

Petrel.Template.ConductivityShallow

Conductivity, shallow

Contents

Detail

Detail

ConductivityShallow [1x?] (char) : Conductivity, shallow

Published with MATLAB® R2017b

Page 257: Support Package for Petrel
Page 258: Support Package for Petrel

Petrel.Template.ConnectedVolume

Connected volumes

Contents

Detail

Detail

ConnectedVolume [1x?] (char) : Connected volumes

Published with MATLAB® R2017b

Page 259: Support Package for Petrel
Page 260: Support Package for Petrel

Petrel.Template.ConstantMudResistivity

Constant mud resistivity

Contents

Detail

Detail

ConstantMudResistivity [1x?] (char) : Constant mud resistivity

Published with MATLAB® R2017b

Page 261: Support Package for Petrel
Page 262: Support Package for Petrel

Petrel.Template.ConstantWaterResistivity

Constant water resistivity

Contents

Detail

Detail

ConstantWaterResistivity [1x?] (char) : Constant water resistivity

Published with MATLAB® R2017b

Page 263: Support Package for Petrel
Page 264: Support Package for Petrel

Petrel.Template.ConstantWaterSalinity

Constant water salinity

Contents

Detail

Detail

ConstantWaterSalinity [1x?] (char) : Constant water salinity

Published with MATLAB® R2017b

Page 265: Support Package for Petrel
Page 266: Support Package for Petrel

Petrel.Template.CorrosionRate

Corrosion rate

Contents

Detail

Detail

CorrosionRate [1x?] (char) : Corrosion rate

Published with MATLAB® R2017b

Page 267: Support Package for Petrel
Page 268: Support Package for Petrel

Petrel.Template.Deepening

Deepening

Contents

Detail

Detail

Deepening [1x?] (char) : Deepening

Published with MATLAB® R2017b

Page 269: Support Package for Petrel
Page 270: Support Package for Petrel

Petrel.Template.DeltaTime

Delta time

Contents

Detail

Detail

DeltaTime [1x?] (char) : Delta time

Published with MATLAB® R2017b

Page 271: Support Package for Petrel
Page 272: Support Package for Petrel

Petrel.Template.Density

Density

Contents

Detail

Detail

Density [1x?] (char) : Density

Published with MATLAB® R2017b

Page 273: Support Package for Petrel
Page 274: Support Package for Petrel

Petrel.Template.DensityCompensatedBulk

Density, compensated bulk

Contents

Detail

Detail

DensityCompensatedBulk [1x?] (char) : Density, compensated bulk

Published with MATLAB® R2017b

Page 275: Support Package for Petrel
Page 276: Support Package for Petrel

Petrel.Template.DensityDownwardAzim

Density, azimuth downwards

Contents

Detail

Detail

DensityDownwardAzim [1x?] (char) : Density, azimuth downwards

Published with MATLAB® R2017b

Page 277: Support Package for Petrel
Page 278: Support Package for Petrel

Petrel.Template.DensityUpwardAzim

Density, azimuth upwards

Contents

Detail

Detail

DensityUpwardAzim [1x?] (char) : Density, azimuth upwards

Published with MATLAB® R2017b

Page 279: Support Package for Petrel
Page 280: Support Package for Petrel

Petrel.Template.DifferentialTemperature

Differential temperature

Contents

Detail

Detail

DifferentialTemperature [1x?] (char) : Differential temperature

Published with MATLAB® R2017b

Page 281: Support Package for Petrel
Page 282: Support Package for Petrel

Petrel.Template.Diffusivity

Diffusivity

Contents

Detail

Detail

Diffusivity [1x?] (char) : Diffusivity

Published with MATLAB® R2017b

Page 283: Support Package for Petrel
Page 284: Support Package for Petrel

Petrel.Template.DipAngle

Dip angle

Contents

Detail

Detail

DipAngle [1x?] (char) : Dip angle

Published with MATLAB® R2017b

Page 285: Support Package for Petrel
Page 286: Support Package for Petrel

Petrel.Template.DipAzimuth

Dip azimuth

Contents

Detail

Detail

DipAzimuth [1x?] (char) : Dip azimuth

Published with MATLAB® R2017b

Page 287: Support Package for Petrel
Page 288: Support Package for Petrel

Petrel.Template.DipClassification

Dip classification

Contents

Detail

Detail

DipClassification [1x?] (char) : Dip classification

Published with MATLAB® R2017b

Page 289: Support Package for Petrel
Page 290: Support Package for Petrel

Petrel.Template.DipQuality

Dip quality

Contents

Detail

Detail

DipQuality [1x?] (char) : Dip quality

Published with MATLAB® R2017b

Page 291: Support Package for Petrel
Page 292: Support Package for Petrel

Petrel.Template.Displacement

Displacement

Contents

Detail

Detail

Displacement [1x?] (char) : Displacement

Published with MATLAB® R2017b

Page 293: Support Package for Petrel
Page 294: Support Package for Petrel

Petrel.Template.Distance

Distance

Contents

Detail

Detail

Distance [1x?] (char) : Distance

Published with MATLAB® R2017b

Page 295: Support Package for Petrel
Page 296: Support Package for Petrel

Petrel.Template.DistributionFreq

Distribution frequency

Contents

Detail

Detail

DistributionFreq [1x?] (char) : Distribution frequency

Published with MATLAB® R2017b

Page 297: Support Package for Petrel
Page 298: Support Package for Petrel

Petrel.Template.Dls

Dogleg severity

Contents

Detail

Detail

Dls [1x?] (char) : Dogleg severity

Published with MATLAB® R2017b

Page 299: Support Package for Petrel
Page 300: Support Package for Petrel

Petrel.Template.DownholeTorque

Downhole torque

Contents

Detail

Detail

DownholeTorque [1x?] (char) : Downhole torque

Published with MATLAB® R2017b

Page 301: Support Package for Petrel
Page 302: Support Package for Petrel

Petrel.Template.Drho

Bulk density correction

Contents

Detail

Detail

Drho [1x?] (char) : Bulk density correction

Published with MATLAB® R2017b

Page 303: Support Package for Petrel
Page 304: Support Package for Petrel

Petrel.Template.DrillingAzimuth

Drilling azimuth

Contents

Detail

Detail

DrillingAzimuth [1x?] (char) : Drilling azimuth

Published with MATLAB® R2017b

Page 305: Support Package for Petrel
Page 306: Support Package for Petrel

Petrel.Template.DrillingTemperature

Temperature

Contents

Detail

Detail

DrillingTemperature [1x?] (char) : Temperature

Published with MATLAB® R2017b

Page 307: Support Package for Petrel
Page 308: Support Package for Petrel

Petrel.Template.DrillpipeRpm

Angular velocity

Contents

Detail

Detail

DrillpipeRpm [1x?] (char) : Angular velocity

Published with MATLAB® R2017b

Page 309: Support Package for Petrel
Page 310: Support Package for Petrel

Petrel.Template.Duration

Duration

Contents

Detail

Detail

Duration [1x?] (char) : Duration

Published with MATLAB® R2017b

Page 311: Support Package for Petrel
Page 312: Support Package for Petrel

Petrel.Template.EffectiveStress

Effective stress

Contents

Detail

Detail

EffectiveStress [1x?] (char) : Effective stress

Published with MATLAB® R2017b

Page 313: Support Package for Petrel
Page 314: Support Package for Petrel

Petrel.Template.ElevationDepth

Elevation depth

Contents

Detail

Detail

ElevationDepth [1x?] (char) : Elevation depth

Published with MATLAB® R2017b

Page 315: Support Package for Petrel
Page 316: Support Package for Petrel

Petrel.Template.ElevationProperty

Elevation general

Contents

Detail

Detail

ElevationProperty [1x?] (char) : Elevation general

Published with MATLAB® R2017b

Page 317: Support Package for Petrel
Page 318: Support Package for Petrel

Petrel.Template.ElevationTime

Elevation time

Contents

Detail

Detail

ElevationTime [1x?] (char) : Elevation time

Published with MATLAB® R2017b

Page 319: Support Package for Petrel
Page 320: Support Package for Petrel

Petrel.Template.Energy

Energy

Contents

Detail

Detail

Energy [1x?] (char) : Energy

Published with MATLAB® R2017b

Page 321: Support Package for Petrel
Page 322: Support Package for Petrel

Petrel.Template.EnergyDensity

Reservoir energy density

Contents

Detail

Detail

EnergyDensity [1x?] (char) : Reservoir energy density

Published with MATLAB® R2017b

Page 323: Support Package for Petrel
Page 324: Support Package for Petrel

Petrel.Template.EnergyRate

Energy flow rate

Contents

Detail

Detail

EnergyRate [1x?] (char) : Energy flow rate

Published with MATLAB® R2017b

Page 325: Support Package for Petrel
Page 326: Support Package for Petrel

Petrel.Template.EnthalpyRate

Enthalpy flow rate

Contents

Detail

Detail

EnthalpyRate [1x?] (char) : Enthalpy flow rate

Published with MATLAB® R2017b

Page 327: Support Package for Petrel
Page 328: Support Package for Petrel

Petrel.Template.EquivalentCirculatingDensity

Equiv. circulating density

Contents

Detail

Detail

EquivalentCirculatingDensity [1x?] (char) : Equiv. circulating density

Published with MATLAB® R2017b

Page 329: Support Package for Petrel
Page 330: Support Package for Petrel

Petrel.Template.ErosionRate

Erosion rate

Contents

Detail

Detail

ErosionRate [1x?] (char) : Erosion rate

Published with MATLAB® R2017b

Page 331: Support Package for Petrel
Page 332: Support Package for Petrel

Petrel.Template.ErosionalVelocity

Erosional velocity

Contents

Detail

Detail

ErosionalVelocity [1x?] (char) : Erosional velocity

Published with MATLAB® R2017b

Page 333: Support Package for Petrel
Page 334: Support Package for Petrel

Petrel.Template.ExtendedElasticImpedance

Extended elastic impedance

Contents

Detail

Detail

ExtendedElasticImpedance [1x?] (char) : Extended elastic impedance

Published with MATLAB® R2017b

Page 335: Support Package for Petrel
Page 336: Support Package for Petrel

Petrel.Template.Facies

Facies

Contents

Detail

Detail

Facies [1x?] (char) : Facies

Published with MATLAB® R2017b

Page 337: Support Package for Petrel
Page 338: Support Package for Petrel

Petrel.Template.FaultDisplacement

Fault displacement

Contents

Detail

Detail

FaultDisplacement [1x?] (char) : Fault displacement

Published with MATLAB® R2017b

Page 339: Support Package for Petrel
Page 340: Support Package for Petrel

Petrel.Template.FaultPermeability

Fault permeability

Contents

Detail

Detail

FaultPermeability [1x?] (char) : Fault permeability

Published with MATLAB® R2017b

Page 341: Support Package for Petrel
Page 342: Support Package for Petrel

Petrel.Template.FaultThickness

Fault thickness

Contents

Detail

Detail

FaultThickness [1x?] (char) : Fault thickness

Published with MATLAB® R2017b

Page 343: Support Package for Petrel
Page 344: Support Package for Petrel

Petrel.Template.Faults

Faults

Contents

Detail

Detail

Faults [1x?] (char) : Faults

Published with MATLAB® R2017b

Page 345: Support Package for Petrel
Page 346: Support Package for Petrel

Petrel.Template.FluidInPlaceGas

Gas fluid-in-place

Contents

Detail

Detail

FluidInPlaceGas [1x?] (char) : Gas fluid-in-place

Published with MATLAB® R2017b

Page 347: Support Package for Petrel
Page 348: Support Package for Petrel

Petrel.Template.FluidInPlaceOil

Oil fluid-in-place

Contents

Detail

Detail

FluidInPlaceOil [1x?] (char) : Oil fluid-in-place

Published with MATLAB® R2017b

Page 349: Support Package for Petrel
Page 350: Support Package for Petrel

Petrel.Template.FluidInPlaceWater

Water fluid-in-place

Contents

Detail

Detail

FluidInPlaceWater [1x?] (char) : Water fluid-in-place

Published with MATLAB® R2017b

Page 351: Support Package for Petrel
Page 352: Support Package for Petrel

Petrel.Template.Fluids

Fluids

Contents

Detail

Detail

Fluids [1x?] (char) : Fluids

Published with MATLAB® R2017b

Page 353: Support Package for Petrel
Page 354: Support Package for Petrel

Petrel.Template.Fluvial

Fluvial facies

Contents

Detail

Detail

Fluvial [1x?] (char) : Fluvial facies

Published with MATLAB® R2017b

Page 355: Support Package for Petrel
Page 356: Support Package for Petrel

Petrel.Template.Fraction

Fraction

Contents

Detail

Detail

Fraction [1x?] (char) : Fraction

Published with MATLAB® R2017b

Page 357: Support Package for Petrel
Page 358: Support Package for Petrel

Petrel.Template.FractionalFlow

Fractional flow

Contents

Detail

Detail

FractionalFlow [1x?] (char) : Fractional flow

Published with MATLAB® R2017b

Page 359: Support Package for Petrel
Page 360: Support Package for Petrel

Petrel.Template.FractureAperture

Fracture aperture

Contents

Detail

Detail

FractureAperture [1x?] (char) : Fracture aperture

Published with MATLAB® R2017b

Page 361: Support Package for Petrel
Page 362: Support Package for Petrel

Petrel.Template.FractureCompressibility

Fracture compressibility

Contents

Detail

Detail

FractureCompressibility [1x?] (char) : Fracture compressibility

Published with MATLAB® R2017b

Page 363: Support Package for Petrel
Page 364: Support Package for Petrel

Petrel.Template.FracturePermeability

Fracture permeability

Contents

Detail

Detail

FracturePermeability [1x?] (char) : Fracture permeability

Published with MATLAB® R2017b

Page 365: Support Package for Petrel
Page 366: Support Package for Petrel

Petrel.Template.FracturingJobTime

Fracturing job time

Contents

Detail

Detail

FracturingJobTime [1x?] (char) : Fracturing job time

Published with MATLAB® R2017b

Page 367: Support Package for Petrel
Page 368: Support Package for Petrel

Petrel.Template.FrictionAngle

Friction angle

Contents

Detail

Detail

FrictionAngle [1x?] (char) : Friction angle

Published with MATLAB® R2017b

Page 369: Support Package for Petrel
Page 370: Support Package for Petrel

Petrel.Template.FromFacies

From facies

Contents

Detail

Detail

FromFacies [1x?] (char) : From facies

Published with MATLAB® R2017b

Page 371: Support Package for Petrel
Page 372: Support Package for Petrel

Petrel.Template.GammaRay

Gamma ray

Contents

Detail

Detail

GammaRay [1x?] (char) : Gamma ray

Published with MATLAB® R2017b

Page 373: Support Package for Petrel
Page 374: Support Package for Petrel

Petrel.Template.GammaRayPotassium

Gamma ray, potassium

Contents

Detail

Detail

GammaRayPotassium [1x?] (char) : Gamma ray, potassium

Published with MATLAB® R2017b

Page 375: Support Package for Petrel
Page 376: Support Package for Petrel

Petrel.Template.GammaRayThorium

Gamma ray, thorium

Contents

Detail

Detail

GammaRayThorium [1x?] (char) : Gamma ray, thorium

Published with MATLAB® R2017b

Page 377: Support Package for Petrel
Page 378: Support Package for Petrel

Petrel.Template.GammaRayUranium

Gamma ray, uranium

Contents

Detail

Detail

GammaRayUranium [1x?] (char) : Gamma ray, uranium

Published with MATLAB® R2017b

Page 379: Support Package for Petrel
Page 380: Support Package for Petrel

Petrel.Template.GasFlowRate

Gas flow rate

Contents

Detail

Detail

GasFlowRate [1x?] (char) : Gas flow rate

Published with MATLAB® R2017b

Page 381: Support Package for Petrel
Page 382: Support Package for Petrel

Petrel.Template.GasGeneration

Gas generation

Contents

Detail

Detail

GasGeneration [1x?] (char) : Gas generation

Published with MATLAB® R2017b

Page 383: Support Package for Petrel
Page 384: Support Package for Petrel

Petrel.Template.GasHeatCapacity

Gas heat capacity

Contents

Detail

Detail

GasHeatCapacity [1x?] (char) : Gas heat capacity

Published with MATLAB® R2017b

Page 385: Support Package for Petrel
Page 386: Support Package for Petrel

Petrel.Template.GasOilContact

Gas-oil contact

Contents

Detail

Detail

GasOilContact [1x?] (char) : Gas-oil contact

Published with MATLAB® R2017b

Page 387: Support Package for Petrel
Page 388: Support Package for Petrel

Petrel.Template.GasOilRatio

Gas-oil ratio

Contents

Detail

Detail

GasOilRatio [1x?] (char) : Gas-oil ratio

Published with MATLAB® R2017b

Page 389: Support Package for Petrel
Page 390: Support Package for Petrel

Petrel.Template.GasViscosity

Gas viscosity

Contents

Detail

Detail

GasViscosity [1x?] (char) : Gas viscosity

Published with MATLAB® R2017b

Page 391: Support Package for Petrel
Page 392: Support Package for Petrel

Petrel.Template.GasWaterContact

Gas-water contact

Contents

Detail

Detail

GasWaterContact [1x?] (char) : Gas-water contact

Published with MATLAB® R2017b

Page 393: Support Package for Petrel
Page 394: Support Package for Petrel

Petrel.Template.GelConcentration

Gel concentration

Contents

Detail

Detail

GelConcentration [1x?] (char) : Gel concentration

Published with MATLAB® R2017b

Page 395: Support Package for Petrel
Page 396: Support Package for Petrel

Petrel.Template.GeneralContinuous

General

Contents

Detail

Detail

GeneralContinuous [1x?] (char) : General

Published with MATLAB® R2017b

Page 397: Support Package for Petrel
Page 398: Support Package for Petrel

Petrel.Template.GeneralDerivative

General derivative

Contents

Detail

Detail

GeneralDerivative [1x?] (char) : General derivative

Published with MATLAB® R2017b

Page 399: Support Package for Petrel
Page 400: Support Package for Petrel

Petrel.Template.GeneralDiscrete

General discrete

Contents

Detail

Detail

GeneralDiscrete [1x?] (char) : General discrete

Published with MATLAB® R2017b

Page 401: Support Package for Petrel
Page 402: Support Package for Petrel

Petrel.Template.GeneralInteger

General integer

Contents

Detail

Detail

GeneralInteger [1x?] (char) : General integer

Published with MATLAB® R2017b

Page 403: Support Package for Petrel
Page 404: Support Package for Petrel

Petrel.Template.GeneralProduction

General production

Contents

Detail

Detail

GeneralProduction [1x?] (char) : General production

Published with MATLAB® R2017b

Page 405: Support Package for Petrel
Page 406: Support Package for Petrel

Petrel.Template.GeneralTime

General time

Contents

Detail

Detail

GeneralTime [1x?] (char) : General time

Published with MATLAB® R2017b

Page 407: Support Package for Petrel
Page 408: Support Package for Petrel

Petrel.Template.GeologicalTimescale

Geological time scale

Contents

Detail

Detail

GeologicalTimescale [1x?] (char) : Geological time scale

Published with MATLAB® R2017b

Page 409: Support Package for Petrel
Page 410: Support Package for Petrel

Petrel.Template.Giip

GIIP

Contents

Detail

Detail

Giip [1x?] (char) : GIIP

Published with MATLAB® R2017b

Page 411: Support Package for Petrel
Page 412: Support Package for Petrel

Petrel.Template.GiipMap

GIIP (map)

Contents

Detail

Detail

GiipMap [1x?] (char) : GIIP (map)

Published with MATLAB® R2017b

Page 413: Support Package for Petrel
Page 414: Support Package for Petrel

Petrel.Template.HcpvGas

HCPV gas

Contents

Detail

Detail

HcpvGas [1x?] (char) : HCPV gas

Published with MATLAB® R2017b

Page 415: Support Package for Petrel
Page 416: Support Package for Petrel

Petrel.Template.HcpvGasMap

HCPV gas (map)

Contents

Detail

Detail

HcpvGasMap [1x?] (char) : HCPV gas (map)

Published with MATLAB® R2017b

Page 417: Support Package for Petrel
Page 418: Support Package for Petrel

Petrel.Template.HcpvOil

HCPV oil

Contents

Detail

Detail

HcpvOil [1x?] (char) : HCPV oil

Published with MATLAB® R2017b

Page 419: Support Package for Petrel
Page 420: Support Package for Petrel

Petrel.Template.HcpvOilMap

HCPV oil (map)

Contents

Detail

Detail

HcpvOilMap [1x?] (char) : HCPV oil (map)

Published with MATLAB® R2017b

Page 421: Support Package for Petrel
Page 422: Support Package for Petrel

Petrel.Template.HeatFlow

Heat flow

Contents

Detail

Detail

HeatFlow [1x?] (char) : Heat flow

Published with MATLAB® R2017b

Page 423: Support Package for Petrel
Page 424: Support Package for Petrel

Petrel.Template.HeatTransferCoefficient

Heat transfer coefficient

Contents

Detail

Detail

HeatTransferCoefficient [1x?] (char) : Heat transfer coefficient

Published with MATLAB® R2017b

Page 425: Support Package for Petrel
Page 426: Support Package for Petrel

Petrel.Template.HeatTransmissibility

Heat transmissibility

Contents

Detail

Detail

HeatTransmissibility [1x?] (char) : Heat transmissibility

Published with MATLAB® R2017b

Page 427: Support Package for Petrel
Page 428: Support Package for Petrel

Petrel.Template.HeatTransmissibilityI

Heat transmissibility I

Contents

Detail

Detail

HeatTransmissibilityI [1x?] (char) : Heat transmissibility I

Published with MATLAB® R2017b

Page 429: Support Package for Petrel
Page 430: Support Package for Petrel

Petrel.Template.HeatTransmissibilityJ

Heat transmissibility J

Contents

Detail

Detail

HeatTransmissibilityJ [1x?] (char) : Heat transmissibility J

Published with MATLAB® R2017b

Page 431: Support Package for Petrel
Page 432: Support Package for Petrel

Petrel.Template.HeatTransmissibilityK

Heat transmissibility K

Contents

Detail

Detail

HeatTransmissibilityK [1x?] (char) : Heat transmissibility K

Published with MATLAB® R2017b

Page 433: Support Package for Petrel
Page 434: Support Package for Petrel

Petrel.Template.HistoryMatchQualitativeCoarse

History match qualitative coarse

Contents

Detail

Detail

HistoryMatchQualitativeCoarse [1x?] (char) : History match qualitative coarse

Published with MATLAB® R2017b

Page 435: Support Package for Petrel
Page 436: Support Package for Petrel

Petrel.Template.HistoryMatchQualitativeFine

History match qualitative fine

Contents

Detail

Detail

HistoryMatchQualitativeFine [1x?] (char) : History match qualitative fine

Published with MATLAB® R2017b

Page 437: Support Package for Petrel
Page 438: Support Package for Petrel

Petrel.Template.HistoryMatchQuantitative

History match quantitative

Contents

Detail

Detail

HistoryMatchQuantitative [1x?] (char) : History match quantitative

Published with MATLAB® R2017b

Page 439: Support Package for Petrel
Page 440: Support Package for Petrel

Petrel.Template.HmatchConstant

History match constant quantity

Contents

Detail

Detail

HmatchConstant [1x?] (char) : History match constant quantity

Published with MATLAB® R2017b

Page 441: Support Package for Petrel
Page 442: Support Package for Petrel

Petrel.Template.HmatchPolyline

History match polyline quantity

Contents

Detail

Detail

HmatchPolyline [1x?] (char) : History match polyline quantity

Published with MATLAB® R2017b

Page 443: Support Package for Petrel
Page 444: Support Package for Petrel

Petrel.Template.HmatchStepwise

History match stepwise quantity

Contents

Detail

Detail

HmatchStepwise [1x?] (char) : History match stepwise quantity

Published with MATLAB® R2017b

Page 445: Support Package for Petrel
Page 446: Support Package for Petrel

Petrel.Template.Holdup

Holdup (volume %)

Contents

Detail

Detail

Holdup [1x?] (char) : Holdup (volume %)

Published with MATLAB® R2017b

Page 447: Support Package for Petrel
Page 448: Support Package for Petrel

Petrel.Template.HoleClassification

Hole classification for polygons

Contents

Detail

Detail

HoleClassification [1x?] (char) : Hole classification for polygons

Published with MATLAB® R2017b

Page 449: Support Package for Petrel
Page 450: Support Package for Petrel

Petrel.Template.HookLoad

Hook load

Contents

Detail

Detail

HookLoad [1x?] (char) : Hook load

Published with MATLAB® R2017b

Page 451: Support Package for Petrel
Page 452: Support Package for Petrel

Petrel.Template.HorizonFilterAttribute

Horizon filter attribute

Contents

Detail

Detail

HorizonFilterAttribute [1x?] (char) : Horizon filter attribute

Published with MATLAB® R2017b

Page 453: Support Package for Petrel
Page 454: Support Package for Petrel

Petrel.Template.Horizons

Horizons

Contents

Detail

Detail

Horizons [1x?] (char) : Horizons

Published with MATLAB® R2017b

Page 455: Support Package for Petrel
Page 456: Support Package for Petrel

Petrel.Template.HydrogenIndex

Hydrogen index

Contents

Detail

Detail

HydrogenIndex [1x?] (char) : Hydrogen index

Published with MATLAB® R2017b

Page 457: Support Package for Petrel
Page 458: Support Package for Petrel

Petrel.Template.ICDStrength

ICD strength

Contents

Detail

Detail

ICDStrength [1x?] (char) : ICD strength

Published with MATLAB® R2017b

Page 459: Support Package for Petrel
Page 460: Support Package for Petrel

Petrel.Template.ImpedanceAcoustic

Acoustic impedance

Contents

Detail

Detail

ImpedanceAcoustic [1x?] (char) : Acoustic impedance

Published with MATLAB® R2017b

Page 461: Support Package for Petrel
Page 462: Support Package for Petrel

Petrel.Template.ImpedanceElasticPP

PP elastic-impedance

Contents

Detail

Detail

ImpedanceElasticPP [1x?] (char) : PP elastic-impedance

Published with MATLAB® R2017b

Page 463: Support Package for Petrel
Page 464: Support Package for Petrel

Petrel.Template.ImpedanceElasticPS

PS elastic-impedance

Contents

Detail

Detail

ImpedanceElasticPS [1x?] (char) : PS elastic-impedance

Published with MATLAB® R2017b

Page 465: Support Package for Petrel
Page 466: Support Package for Petrel

Petrel.Template.ImpedanceP

P-impedance

Contents

Detail

Detail

ImpedanceP [1x?] (char) : P-impedance

Published with MATLAB® R2017b

Page 467: Support Package for Petrel
Page 468: Support Package for Petrel

Petrel.Template.ImpedanceS

S-impedance

Contents

Detail

Detail

ImpedanceS [1x?] (char) : S-impedance

Published with MATLAB® R2017b

Page 469: Support Package for Petrel
Page 470: Support Package for Petrel

Petrel.Template.Inclination

Inclination

Contents

Detail

Detail

Inclination [1x?] (char) : Inclination

Published with MATLAB® R2017b

Page 471: Support Package for Petrel
Page 472: Support Package for Petrel

Petrel.Template.InjectionRateGas

Gas injection rate

Contents

Detail

Detail

InjectionRateGas [1x?] (char) : Gas injection rate

Published with MATLAB® R2017b

Page 473: Support Package for Petrel
Page 474: Support Package for Petrel

Petrel.Template.InjectionRateOil

Oil injection rate

Contents

Detail

Detail

InjectionRateOil [1x?] (char) : Oil injection rate

Published with MATLAB® R2017b

Page 475: Support Package for Petrel
Page 476: Support Package for Petrel

Petrel.Template.InjectionRateResvol

Reservoir injection rate

Contents

Detail

Detail

InjectionRateResvol [1x?] (char) : Reservoir injection rate

Published with MATLAB® R2017b

Page 477: Support Package for Petrel
Page 478: Support Package for Petrel

Petrel.Template.InjectionRateWater

Water injection rate

Contents

Detail

Detail

InjectionRateWater [1x?] (char) : Water injection rate

Published with MATLAB® R2017b

Page 479: Support Package for Petrel
Page 480: Support Package for Petrel

Petrel.Template.InsideDiameter

Inside diameter

Contents

Detail

Detail

InsideDiameter [1x?] (char) : Inside diameter

Published with MATLAB® R2017b

Page 481: Support Package for Petrel
Page 482: Support Package for Petrel

Petrel.Template.Intensity

Intensity

Contents

Detail

Detail

Intensity [1x?] (char) : Intensity

Published with MATLAB® R2017b

Page 483: Support Package for Petrel
Page 484: Support Package for Petrel

Petrel.Template.InverseFormationVolumeFactorGas

Inverse water formation volume factor, also known as InverseBwFactor

Contents

Detail

Detail

InverseFormationVolumeFactorGas [1x?] (char) : Inverse water formation volume factor, also known as InverseBwFactor

Published with MATLAB® R2017b

Page 485: Support Package for Petrel
Page 486: Support Package for Petrel

Petrel.Template.InverseFormationVolumeFactorOil

Inverse gas formation volume factor, also known as InverseBgFactor

Contents

Detail

Detail

InverseFormationVolumeFactorOil [1x?] (char) : Inverse gas formation volume factor, also known as InverseBgFactor

Published with MATLAB® R2017b

Page 487: Support Package for Petrel
Page 488: Support Package for Petrel

Petrel.Template.InverseFormationVolumeFactorWater

Inverse oil formation volume factor, also known as InverseBoFactor

Contents

Detail

Detail

InverseFormationVolumeFactorWater [1x?] (char) : Inverse oil formation volume factor, also known as InverseBoFactor

Published with MATLAB® R2017b

Page 489: Support Package for Petrel
Page 490: Support Package for Petrel

Petrel.Template.InversePenetrationRate

Inverse penetration rate

Contents

Detail

Detail

InversePenetrationRate [1x?] (char) : Inverse penetration rate

Published with MATLAB® R2017b

Page 491: Support Package for Petrel
Page 492: Support Package for Petrel

Petrel.Template.InverseTemperature

Inverse temperature

Contents

Detail

Detail

InverseTemperature [1x?] (char) : Inverse temperature

Published with MATLAB® R2017b

Page 493: Support Package for Petrel
Page 494: Support Package for Petrel

Petrel.Template.InverseTemperatureSquared

Inverse temperature squared

Contents

Detail

Detail

InverseTemperatureSquared [1x?] (char) : Inverse temperature squared

Published with MATLAB® R2017b

Page 495: Support Package for Petrel
Page 496: Support Package for Petrel

Petrel.Template.KFactorInTime

K factor (time)

Contents

Detail

Detail

KFactorInTime [1x?] (char) : K factor (time)

Published with MATLAB® R2017b

Page 497: Support Package for Petrel
Page 498: Support Package for Petrel

Petrel.Template.Kfactor

K factor (depth)

Contents

Detail

Detail

Kfactor [1x?] (char) : K factor (depth)

Published with MATLAB® R2017b

Page 499: Support Package for Petrel
Page 500: Support Package for Petrel

Petrel.Template.Lambda

Lambda

Contents

Detail

Detail

Lambda [1x?] (char) : Lambda

Published with MATLAB® R2017b

Page 501: Support Package for Petrel
Page 502: Support Package for Petrel

Petrel.Template.LambdaTimesRho

Lambda*Rho

Contents

Detail

Detail

LambdaTimesRho [1x?] (char) : Lambda*Rho

Published with MATLAB® R2017b

Page 503: Support Package for Petrel
Page 504: Support Package for Petrel

Petrel.Template.LiquidConcentration

Liquid concentration

Contents

Detail

Detail

LiquidConcentration [1x?] (char) : Liquid concentration

Published with MATLAB® R2017b

Page 505: Support Package for Petrel
Page 506: Support Package for Petrel

Petrel.Template.LiquidDensity

Liquid density

Contents

Detail

Detail

LiquidDensity [1x?] (char) : Liquid density

Published with MATLAB® R2017b

Page 507: Support Package for Petrel
Page 508: Support Package for Petrel

Petrel.Template.Lithologies

Lithologies

Contents

Detail

Detail

Lithologies [1x?] (char) : Lithologies

Published with MATLAB® R2017b

Page 509: Support Package for Petrel
Page 510: Support Package for Petrel

Petrel.Template.LithologyFrac

Lithology fraction

Contents

Detail

Detail

LithologyFrac [1x?] (char) : Lithology fraction

Published with MATLAB® R2017b

Page 511: Support Package for Petrel
Page 512: Support Package for Petrel

Petrel.Template.MFThermalCoupling

Matrix-fracture thermal coupling

Contents

Detail

Detail

MFThermalCoupling [1x?] (char) : Matrix-fracture thermal coupling

Published with MATLAB® R2017b

Page 513: Support Package for Petrel
Page 514: Support Package for Petrel

Petrel.Template.Mass

Mass

Contents

Detail

Detail

Mass [1x?] (char) : Mass

Published with MATLAB® R2017b

Page 515: Support Package for Petrel
Page 516: Support Package for Petrel

Petrel.Template.MassConcentration

Concentration

Contents

Detail

Detail

MassConcentration [1x?] (char) : Concentration

Published with MATLAB® R2017b

Page 517: Support Package for Petrel
Page 518: Support Package for Petrel

Petrel.Template.MassFlowRate

Mass flow rate

Contents

Detail

Detail

MassFlowRate [1x?] (char) : Mass flow rate

Published with MATLAB® R2017b

Page 519: Support Package for Petrel
Page 520: Support Package for Petrel

Petrel.Template.MatrixFractureCoupling

Matrix-fracture coupling

Contents

Detail

Detail

MatrixFractureCoupling [1x?] (char) : Matrix-fracture coupling

Published with MATLAB® R2017b

Page 521: Support Package for Petrel
Page 522: Support Package for Petrel

Petrel.Template.MeasuredDepth

Measured depth

Contents

Detail

Detail

MeasuredDepth [1x?] (char) : Measured depth

Published with MATLAB® R2017b

Page 523: Support Package for Petrel
Page 524: Support Package for Petrel

Petrel.Template.Mobility

Mobility

Contents

Detail

Detail

Mobility [1x?] (char) : Mobility

Published with MATLAB® R2017b

Page 525: Support Package for Petrel
Page 526: Support Package for Petrel

Petrel.Template.MolarDensity

Molar density

Contents

Detail

Detail

MolarDensity [1x?] (char) : Molar density

Published with MATLAB® R2017b

Page 527: Support Package for Petrel
Page 528: Support Package for Petrel

Petrel.Template.MolarEnthalpy

Molar enthalpy

Contents

Detail

Detail

MolarEnthalpy [1x?] (char) : Molar enthalpy

Published with MATLAB® R2017b

Page 529: Support Package for Petrel
Page 530: Support Package for Petrel

Petrel.Template.MolarMass

Molar mass

Contents

Detail

Detail

MolarMass [1x?] (char) : Molar mass

Published with MATLAB® R2017b

Page 531: Support Package for Petrel
Page 532: Support Package for Petrel

Petrel.Template.MolarRate

Molar rate

Contents

Detail

Detail

MolarRate [1x?] (char) : Molar rate

Published with MATLAB® R2017b

Page 533: Support Package for Petrel
Page 534: Support Package for Petrel

Petrel.Template.MolarVolume

Molar volume

Contents

Detail

Detail

MolarVolume [1x?] (char) : Molar volume

Published with MATLAB® R2017b

Page 535: Support Package for Petrel
Page 536: Support Package for Petrel

Petrel.Template.Money

Money

Contents

Detail

Detail

Money [1x?] (char) : Money

Published with MATLAB® R2017b

Page 537: Support Package for Petrel
Page 538: Support Package for Petrel

Petrel.Template.MotorSpeed

Motor speed

Contents

Detail

Detail

MotorSpeed [1x?] (char) : Motor speed

Published with MATLAB® R2017b

Page 539: Support Package for Petrel
Page 540: Support Package for Petrel

Petrel.Template.Mu

Mu

Contents

Detail

Detail

Mu [1x?] (char) : Mu

Published with MATLAB® R2017b

Page 541: Support Package for Petrel
Page 542: Support Package for Petrel

Petrel.Template.MuTimesRho

Mu*Rho

Contents

Detail

Detail

MuTimesRho [1x?] (char) : Mu*Rho

Published with MATLAB® R2017b

Page 543: Support Package for Petrel
Page 544: Support Package for Petrel

Petrel.Template.MudDensity

Mud density

Contents

Detail

Detail

MudDensity [1x?] (char) : Mud density

Published with MATLAB® R2017b

Page 545: Support Package for Petrel
Page 546: Support Package for Petrel

Petrel.Template.MudFlowrate

Mud flow rate

Contents

Detail

Detail

MudFlowrate [1x?] (char) : Mud flow rate

Published with MATLAB® R2017b

Page 547: Support Package for Petrel
Page 548: Support Package for Petrel

Petrel.Template.NetGross

Net/Gross

Contents

Detail

Detail

NetGross [1x?] (char) : Net/Gross

Published with MATLAB® R2017b

Page 549: Support Package for Petrel
Page 550: Support Package for Petrel

Petrel.Template.NetPay

Net pay

Contents

Detail

Detail

NetPay [1x?] (char) : Net pay

Published with MATLAB® R2017b

Page 551: Support Package for Petrel
Page 552: Support Package for Petrel

Petrel.Template.Neutron

Neutron

Contents

Detail

Detail

Neutron [1x?] (char) : Neutron

Published with MATLAB® R2017b

Page 553: Support Package for Petrel
Page 554: Support Package for Petrel

Petrel.Template.NitrogenRate

Nitrogen rate

Contents

Detail

Detail

NitrogenRate [1x?] (char) : Nitrogen rate

Published with MATLAB® R2017b

Page 555: Support Package for Petrel
Page 556: Support Package for Petrel

Petrel.Template.OilFlowRate

Oil flow rate

Contents

Detail

Detail

OilFlowRate [1x?] (char) : Oil flow rate

Published with MATLAB® R2017b

Page 557: Support Package for Petrel
Page 558: Support Package for Petrel

Petrel.Template.OilGasRatio

Oil-gas ratio

Contents

Detail

Detail

OilGasRatio [1x?] (char) : Oil-gas ratio

Published with MATLAB® R2017b

Page 559: Support Package for Petrel
Page 560: Support Package for Petrel

Petrel.Template.OilGeneration

Oil generation

Contents

Detail

Detail

OilGeneration [1x?] (char) : Oil generation

Published with MATLAB® R2017b

Page 561: Support Package for Petrel
Page 562: Support Package for Petrel

Petrel.Template.OilHeatCapacity

Oil heat capacity

Contents

Detail

Detail

OilHeatCapacity [1x?] (char) : Oil heat capacity

Published with MATLAB® R2017b

Page 563: Support Package for Petrel
Page 564: Support Package for Petrel

Petrel.Template.OilViscosity

Oil viscosity

Contents

Detail

Detail

OilViscosity [1x?] (char) : Oil viscosity

Published with MATLAB® R2017b

Page 565: Support Package for Petrel
Page 566: Support Package for Petrel

Petrel.Template.OilWaterContact

Oil-water contact

Contents

Detail

Detail

OilWaterContact [1x?] (char) : Oil-water contact

Published with MATLAB® R2017b

Page 567: Support Package for Petrel
Page 568: Support Package for Petrel

Petrel.Template.OpenHole

Open hole

Contents

Detail

Detail

OpenHole [1x?] (char) : Open hole

Published with MATLAB® R2017b

Page 569: Support Package for Petrel
Page 570: Support Package for Petrel

Petrel.Template.OpticalDensity

Optical density

Contents

Detail

Detail

OpticalDensity [1x?] (char) : Optical density

Published with MATLAB® R2017b

Page 571: Support Package for Petrel
Page 572: Support Package for Petrel

Petrel.Template.Owt

One-way time

Contents

Detail

Detail

Owt [1x?] (char) : One-way time

Published with MATLAB® R2017b

Page 573: Support Package for Petrel
Page 574: Support Package for Petrel

Petrel.Template.PatchSet

Fracture set

Contents

Detail

Detail

PatchSet [1x?] (char) : Fracture set

Published with MATLAB® R2017b

Page 575: Support Package for Petrel
Page 576: Support Package for Petrel

Petrel.Template.Pef

Photoelectric factor

Contents

Detail

Detail

Pef [1x?] (char) : Photoelectric factor

Published with MATLAB® R2017b

Page 577: Support Package for Petrel
Page 578: Support Package for Petrel

Petrel.Template.PenetrationRate

Penetration rate

Contents

Detail

Detail

PenetrationRate [1x?] (char) : Penetration rate

Published with MATLAB® R2017b

Page 579: Support Package for Petrel
Page 580: Support Package for Petrel

Petrel.Template.PenetrationRateAvg

Average penetration rate

Contents

Detail

Detail

PenetrationRateAvg [1x?] (char) : Average penetration rate

Published with MATLAB® R2017b

Page 581: Support Package for Petrel
Page 582: Support Package for Petrel

Petrel.Template.Percent

Percent

Contents

Detail

Detail

Percent [1x?] (char) : Percent

Published with MATLAB® R2017b

Page 583: Support Package for Petrel
Page 584: Support Package for Petrel

Petrel.Template.Perforation

Perforation

Contents

Detail

Detail

Perforation [1x?] (char) : Perforation

Published with MATLAB® R2017b

Page 585: Support Package for Petrel
Page 586: Support Package for Petrel

Petrel.Template.PerforationConnectivity

Perforation connectivity

Contents

Detail

Detail

PerforationConnectivity [1x?] (char) : Perforation connectivity

Published with MATLAB® R2017b

Page 587: Support Package for Petrel
Page 588: Support Package for Petrel

Petrel.Template.Perm

Permeability

Contents

Detail

Detail

Perm [1x?] (char) : Permeability

Published with MATLAB® R2017b

Page 589: Support Package for Petrel
Page 590: Support Package for Petrel

Petrel.Template.PermI

Permeability I

Contents

Detail

Detail

PermI [1x?] (char) : Permeability I

Published with MATLAB® R2017b

Page 591: Support Package for Petrel
Page 592: Support Package for Petrel

Petrel.Template.PermIJ

Permeability IJ

Contents

Detail

Detail

PermIJ [1x?] (char) : Permeability IJ

Published with MATLAB® R2017b

Page 593: Support Package for Petrel
Page 594: Support Package for Petrel

Petrel.Template.PermIK

Permeability IK

Contents

Detail

Detail

PermIK [1x?] (char) : Permeability IK

Published with MATLAB® R2017b

Page 595: Support Package for Petrel
Page 596: Support Package for Petrel

Petrel.Template.PermJ

Permeability J

Contents

Detail

Detail

PermJ [1x?] (char) : Permeability J

Published with MATLAB® R2017b

Page 597: Support Package for Petrel
Page 598: Support Package for Petrel

Petrel.Template.PermJK

Permeability JK

Contents

Detail

Detail

PermJK [1x?] (char) : Permeability JK

Published with MATLAB® R2017b

Page 599: Support Package for Petrel
Page 600: Support Package for Petrel

Petrel.Template.PermK

Permeability K

Contents

Detail

Detail

PermK [1x?] (char) : Permeability K

Published with MATLAB® R2017b

Page 601: Support Package for Petrel
Page 602: Support Package for Petrel

Petrel.Template.PermKR

Relative permeability

Contents

Detail

Detail

PermKR [1x?] (char) : Relative permeability

Published with MATLAB® R2017b

Page 603: Support Package for Petrel
Page 604: Support Package for Petrel

Petrel.Template.PermMF

Permeability matrix-fracture

Contents

Detail

Detail

PermMF [1x?] (char) : Permeability matrix-fracture

Published with MATLAB® R2017b

Page 605: Support Package for Petrel
Page 606: Support Package for Petrel

Petrel.Template.PermX

Permeability X

Contents

Detail

Detail

PermX [1x?] (char) : Permeability X

Published with MATLAB® R2017b

Page 607: Support Package for Petrel
Page 608: Support Package for Petrel

Petrel.Template.PermXY

Permeability XY

Contents

Detail

Detail

PermXY [1x?] (char) : Permeability XY

Published with MATLAB® R2017b

Page 609: Support Package for Petrel
Page 610: Support Package for Petrel

Petrel.Template.PermXZ

Permeability XZ

Contents

Detail

Detail

PermXZ [1x?] (char) : Permeability XZ

Published with MATLAB® R2017b

Page 611: Support Package for Petrel
Page 612: Support Package for Petrel

Petrel.Template.PermY

Permeability Y

Contents

Detail

Detail

PermY [1x?] (char) : Permeability Y

Published with MATLAB® R2017b

Page 613: Support Package for Petrel
Page 614: Support Package for Petrel

Petrel.Template.PermYZ

Permeability YZ

Contents

Detail

Detail

PermYZ [1x?] (char) : Permeability YZ

Published with MATLAB® R2017b

Page 615: Support Package for Petrel
Page 616: Support Package for Petrel

Petrel.Template.PermZ

Permeability Z

Contents

Detail

Detail

PermZ [1x?] (char) : Permeability Z

Published with MATLAB® R2017b

Page 617: Support Package for Petrel
Page 618: Support Package for Petrel

Petrel.Template.PoissonRatio

Poissons ratio

Contents

Detail

Detail

PoissonRatio [1x?] (char) : Poissons ratio

Published with MATLAB® R2017b

Page 619: Support Package for Petrel
Page 620: Support Package for Petrel

Petrel.Template.PoreVolumeMultiplier

Pore volume multiplier

Contents

Detail

Detail

PoreVolumeMultiplier [1x?] (char) : Pore volume multiplier

Published with MATLAB® R2017b

Page 621: Support Package for Petrel
Page 622: Support Package for Petrel

Petrel.Template.Porosity

Porosity

Contents

Detail

Detail

Porosity [1x?] (char) : Porosity

Published with MATLAB® R2017b

Page 623: Support Package for Petrel
Page 624: Support Package for Petrel

Petrel.Template.PorosityEffective

Porosity - effective

Contents

Detail

Detail

PorosityEffective [1x?] (char) : Porosity - effective

Published with MATLAB® R2017b

Page 625: Support Package for Petrel
Page 626: Support Package for Petrel

Petrel.Template.PorosityTotal

Porosity - total

Contents

Detail

Detail

PorosityTotal [1x?] (char) : Porosity - total

Published with MATLAB® R2017b

Page 627: Support Package for Petrel
Page 628: Support Package for Petrel

Petrel.Template.Pressure

Pressure

Contents

Detail

Detail

Pressure [1x?] (char) : Pressure

Published with MATLAB® R2017b

Page 629: Support Package for Petrel
Page 630: Support Package for Petrel

Petrel.Template.PressureGradient

Pressure gradient

Contents

Detail

Detail

PressureGradient [1x?] (char) : Pressure gradient

Published with MATLAB® R2017b

Page 631: Support Package for Petrel
Page 632: Support Package for Petrel

Petrel.Template.PrincipalComponent

Principal component

Contents

Detail

Detail

PrincipalComponent [1x?] (char) : Principal component

Published with MATLAB® R2017b

Page 633: Support Package for Petrel
Page 634: Support Package for Petrel

Petrel.Template.PrincipalStress

Principal stress

Contents

Detail

Detail

PrincipalStress [1x?] (char) : Principal stress

Published with MATLAB® R2017b

Page 635: Support Package for Petrel
Page 636: Support Package for Petrel

Petrel.Template.Probability

Probability

Contents

Detail

Detail

Probability [1x?] (char) : Probability

Published with MATLAB® R2017b

Page 637: Support Package for Petrel
Page 638: Support Package for Petrel

Petrel.Template.ProductionGas

Gas production

Contents

Detail

Detail

ProductionGas [1x?] (char) : Gas production

Published with MATLAB® R2017b

Page 639: Support Package for Petrel
Page 640: Support Package for Petrel

Petrel.Template.ProductionLiquid

Liquid production

Contents

Detail

Detail

ProductionLiquid [1x?] (char) : Liquid production

Published with MATLAB® R2017b

Page 641: Support Package for Petrel
Page 642: Support Package for Petrel

Petrel.Template.ProductionMassGas

Gas mass production

Contents

Detail

Detail

ProductionMassGas [1x?] (char) : Gas mass production

Published with MATLAB® R2017b

Page 643: Support Package for Petrel
Page 644: Support Package for Petrel

Petrel.Template.ProductionMassOil

Oil mass production

Contents

Detail

Detail

ProductionMassOil [1x?] (char) : Oil mass production

Published with MATLAB® R2017b

Page 645: Support Package for Petrel
Page 646: Support Package for Petrel

Petrel.Template.ProductionMassRateGas

Gas mass production rate

Contents

Detail

Detail

ProductionMassRateGas [1x?] (char) : Gas mass production rate

Published with MATLAB® R2017b

Page 647: Support Package for Petrel
Page 648: Support Package for Petrel

Petrel.Template.ProductionMassRateOil

Oil mass production rate

Contents

Detail

Detail

ProductionMassRateOil [1x?] (char) : Oil mass production rate

Published with MATLAB® R2017b

Page 649: Support Package for Petrel
Page 650: Support Package for Petrel

Petrel.Template.ProductionMassRateWater

Water mass production rate

Contents

Detail

Detail

ProductionMassRateWater [1x?] (char) : Water mass production rate

Published with MATLAB® R2017b

Page 651: Support Package for Petrel
Page 652: Support Package for Petrel

Petrel.Template.ProductionMassWater

Water mass production

Contents

Detail

Detail

ProductionMassWater [1x?] (char) : Water mass production

Published with MATLAB® R2017b

Page 653: Support Package for Petrel
Page 654: Support Package for Petrel

Petrel.Template.ProductionOil

Oil production

Contents

Detail

Detail

ProductionOil [1x?] (char) : Oil production

Published with MATLAB® R2017b

Page 655: Support Package for Petrel
Page 656: Support Package for Petrel

Petrel.Template.ProductionRateGas

Gas production rate

Contents

Detail

Detail

ProductionRateGas [1x?] (char) : Gas production rate

Published with MATLAB® R2017b

Page 657: Support Package for Petrel
Page 658: Support Package for Petrel

Petrel.Template.ProductionRateLiquid

Liquid production rate

Contents

Detail

Detail

ProductionRateLiquid [1x?] (char) : Liquid production rate

Published with MATLAB® R2017b

Page 659: Support Package for Petrel
Page 660: Support Package for Petrel

Petrel.Template.ProductionRateOil

Oil production rate

Contents

Detail

Detail

ProductionRateOil [1x?] (char) : Oil production rate

Published with MATLAB® R2017b

Page 661: Support Package for Petrel
Page 662: Support Package for Petrel

Petrel.Template.ProductionRateResvol

Reservoir production rate

Contents

Detail

Detail

ProductionRateResvol [1x?] (char) : Reservoir production rate

Published with MATLAB® R2017b

Page 663: Support Package for Petrel
Page 664: Support Package for Petrel

Petrel.Template.ProductionRateWater

Water production rate

Contents

Detail

Detail

ProductionRateWater [1x?] (char) : Water production rate

Published with MATLAB® R2017b

Page 665: Support Package for Petrel
Page 666: Support Package for Petrel

Petrel.Template.ProductionResvol

Reservoir production volume

Contents

Detail

Detail

ProductionResvol [1x?] (char) : Reservoir production volume

Published with MATLAB® R2017b

Page 667: Support Package for Petrel
Page 668: Support Package for Petrel

Petrel.Template.ProductionStatus

Producer status

Contents

Detail

Detail

ProductionStatus [1x?] (char) : Producer status

Published with MATLAB® R2017b

Page 669: Support Package for Petrel
Page 670: Support Package for Petrel

Petrel.Template.ProductionWater

Water production

Contents

Detail

Detail

ProductionWater [1x?] (char) : Water production

Published with MATLAB® R2017b

Page 671: Support Package for Petrel
Page 672: Support Package for Petrel

Petrel.Template.Proppant

Proppant

Contents

Detail

Detail

Proppant [1x?] (char) : Proppant

Published with MATLAB® R2017b

Page 673: Support Package for Petrel
Page 674: Support Package for Petrel

Petrel.Template.ProppantConcentration

Proppant concentration

Contents

Detail

Detail

ProppantConcentration [1x?] (char) : Proppant concentration

Published with MATLAB® R2017b

Page 675: Support Package for Petrel
Page 676: Support Package for Petrel

Petrel.Template.Psonic

P-sonic

Contents

Detail

Detail

Psonic [1x?] (char) : P-sonic

Published with MATLAB® R2017b

Page 677: Support Package for Petrel
Page 678: Support Package for Petrel

Petrel.Template.Quality

Quality

Contents

Detail

Detail

Quality [1x?] (char) : Quality

Published with MATLAB® R2017b

Page 679: Support Package for Petrel
Page 680: Support Package for Petrel

Petrel.Template.RSFactor

Solution gas-oil ratio

Contents

Detail

Detail

RSFactor [1x?] (char) : Solution gas-oil ratio

Published with MATLAB® R2017b

Page 681: Support Package for Petrel
Page 682: Support Package for Petrel

Petrel.Template.RVFactor

Vapourized oil-gas ratio

Contents

Detail

Detail

RVFactor [1x?] (char) : Vapourized oil-gas ratio

Published with MATLAB® R2017b

Page 683: Support Package for Petrel
Page 684: Support Package for Petrel

Petrel.Template.RecoverableGas

Recoverable gas

Contents

Detail

Detail

RecoverableGas [1x?] (char) : Recoverable gas

Published with MATLAB® R2017b

Page 685: Support Package for Petrel
Page 686: Support Package for Petrel

Petrel.Template.RecoverableGasMap

Recoverable gas (map)

Contents

Detail

Detail

RecoverableGasMap [1x?] (char) : Recoverable gas (map)

Published with MATLAB® R2017b

Page 687: Support Package for Petrel
Page 688: Support Package for Petrel

Petrel.Template.RecoverableOil

Recoverable oil

Contents

Detail

Detail

RecoverableOil [1x?] (char) : Recoverable oil

Published with MATLAB® R2017b

Page 689: Support Package for Petrel
Page 690: Support Package for Petrel

Petrel.Template.RecoverableOilMap

Recoverable oil (map)

Contents

Detail

Detail

RecoverableOilMap [1x?] (char) : Recoverable oil (map)

Published with MATLAB® R2017b

Page 691: Support Package for Petrel
Page 692: Support Package for Petrel

Petrel.Template.RecoveryFactor

Recovery factor

Contents

Detail

Detail

RecoveryFactor [1x?] (char) : Recovery factor

Published with MATLAB® R2017b

Page 693: Support Package for Petrel
Page 694: Support Package for Petrel

Petrel.Template.ReflectionCoeff

Reflection coefficients

Contents

Detail

Detail

ReflectionCoeff [1x?] (char) : Reflection coefficients

Published with MATLAB® R2017b

Page 695: Support Package for Petrel
Page 696: Support Package for Petrel

Petrel.Template.RegionId

Region

Contents

Detail

Detail

RegionId [1x?] (char) : Region

Published with MATLAB® R2017b

Page 697: Support Package for Petrel
Page 698: Support Package for Petrel

Petrel.Template.RelativeTemperature

Relative temperature

Contents

Detail

Detail

RelativeTemperature [1x?] (char) : Relative temperature

Published with MATLAB® R2017b

Page 699: Support Package for Petrel
Page 700: Support Package for Petrel

Petrel.Template.ReservoirMassDensity

Reservoir mass density

Contents

Detail

Detail

ReservoirMassDensity [1x?] (char) : Reservoir mass density

Published with MATLAB® R2017b

Page 701: Support Package for Petrel
Page 702: Support Package for Petrel

Petrel.Template.Residual

Residual

Contents

Detail

Detail

Residual [1x?] (char) : Residual

Published with MATLAB® R2017b

Page 703: Support Package for Petrel
Page 704: Support Package for Petrel

Petrel.Template.Resistivity

Resistivity

Contents

Detail

Detail

Resistivity [1x?] (char) : Resistivity

Published with MATLAB® R2017b

Page 705: Support Package for Petrel
Page 706: Support Package for Petrel

Petrel.Template.ResistivityDeep

Resistivity, deep

Contents

Detail

Detail

ResistivityDeep [1x?] (char) : Resistivity, deep

Published with MATLAB® R2017b

Page 707: Support Package for Petrel
Page 708: Support Package for Petrel

Petrel.Template.ResistivityMedium

Resistivity, medium

Contents

Detail

Detail

ResistivityMedium [1x?] (char) : Resistivity, medium

Published with MATLAB® R2017b

Page 709: Support Package for Petrel
Page 710: Support Package for Petrel

Petrel.Template.ResistivityMicro

Micro resistivity

Contents

Detail

Detail

ResistivityMicro [1x?] (char) : Micro resistivity

Published with MATLAB® R2017b

Page 711: Support Package for Petrel
Page 712: Support Package for Petrel

Petrel.Template.ResistivityShallow

Resistivity, shallow

Contents

Detail

Detail

ResistivityShallow [1x?] (char) : Resistivity, shallow

Published with MATLAB® R2017b

Page 713: Support Package for Petrel
Page 714: Support Package for Petrel

Petrel.Template.RockCompressibility

Rock compressibility

Contents

Detail

Detail

RockCompressibility [1x?] (char) : Rock compressibility

Published with MATLAB® R2017b

Page 715: Support Package for Petrel
Page 716: Support Package for Petrel

Petrel.Template.RockDensity

Rock density

Contents

Detail

Detail

RockDensity [1x?] (char) : Rock density

Published with MATLAB® R2017b

Page 717: Support Package for Petrel
Page 718: Support Package for Petrel

Petrel.Template.RockDisplacement

Rock displacement

Contents

Detail

Detail

RockDisplacement [1x?] (char) : Rock displacement

Published with MATLAB® R2017b

Page 719: Support Package for Petrel
Page 720: Support Package for Petrel

Petrel.Template.RockHeatCapacity

Rock heat capacity

Contents

Detail

Detail

RockHeatCapacity [1x?] (char) : Rock heat capacity

Published with MATLAB® R2017b

Page 721: Support Package for Petrel
Page 722: Support Package for Petrel

Petrel.Template.RockHeatCapacityTempCoefficient

Rock heat capacity temp. coefficient

Contents

Detail

Detail

RockHeatCapacityTempCoefficient [1x?] (char) : Rock heat capacity temp. coefficient

Published with MATLAB® R2017b

Page 723: Support Package for Petrel
Page 724: Support Package for Petrel

Petrel.Template.RockVolume

Rock volume

Contents

Detail

Detail

RockVolume [1x?] (char) : Rock volume

Published with MATLAB® R2017b

Page 725: Support Package for Petrel
Page 726: Support Package for Petrel

Petrel.Template.SatGas

Gas saturation

Contents

Detail

Detail

SatGas [1x?] (char) : Gas saturation

Published with MATLAB® R2017b

Page 727: Support Package for Petrel
Page 728: Support Package for Petrel

Petrel.Template.SatGasCritical

Critical gas saturation

Contents

Detail

Detail

SatGasCritical [1x?] (char) : Critical gas saturation

Published with MATLAB® R2017b

Page 729: Support Package for Petrel
Page 730: Support Package for Petrel

Petrel.Template.SatHydrocarbons

Saturation hydrocarbons

Contents

Detail

Detail

SatHydrocarbons [1x?] (char) : Saturation hydrocarbons

Published with MATLAB® R2017b

Page 731: Support Package for Petrel
Page 732: Support Package for Petrel

Petrel.Template.SatOil

Oil saturation

Contents

Detail

Detail

SatOil [1x?] (char) : Oil saturation

Published with MATLAB® R2017b

Page 733: Support Package for Petrel
Page 734: Support Package for Petrel

Petrel.Template.SatPressure

Saturation pressure

Contents

Detail

Detail

SatPressure [1x?] (char) : Saturation pressure

Published with MATLAB® R2017b

Page 735: Support Package for Petrel
Page 736: Support Package for Petrel

Petrel.Template.SatSgr

Irr. gas saturation

Contents

Detail

Detail

SatSgr [1x?] (char) : Irr. gas saturation

Published with MATLAB® R2017b

Page 737: Support Package for Petrel
Page 738: Support Package for Petrel

Petrel.Template.SatSgro

Gas saturation, residual oil

Contents

Detail

Detail

SatSgro [1x?] (char) : Gas saturation, residual oil

Published with MATLAB® R2017b

Page 739: Support Package for Petrel
Page 740: Support Package for Petrel

Petrel.Template.SatSwr

Irr. water saturation

Contents

Detail

Detail

SatSwr [1x?] (char) : Irr. water saturation

Published with MATLAB® R2017b

Page 741: Support Package for Petrel
Page 742: Support Package for Petrel

Petrel.Template.SatSwro

Water saturation, residual oil

Contents

Detail

Detail

SatSwro [1x?] (char) : Water saturation, residual oil

Published with MATLAB® R2017b

Page 743: Support Package for Petrel
Page 744: Support Package for Petrel

Petrel.Template.SatWater

Water saturation

Contents

Detail

Detail

SatWater [1x?] (char) : Water saturation

Published with MATLAB® R2017b

Page 745: Support Package for Petrel
Page 746: Support Package for Petrel

Petrel.Template.SatWaterCritical

Critical water saturation

Contents

Detail

Detail

SatWaterCritical [1x?] (char) : Critical water saturation

Published with MATLAB® R2017b

Page 747: Support Package for Petrel
Page 748: Support Package for Petrel

Petrel.Template.Segments

Segments

Contents

Detail

Detail

Segments [1x?] (char) : Segments

Published with MATLAB® R2017b

Page 749: Support Package for Petrel
Page 750: Support Package for Petrel

Petrel.Template.SeismicAnttrack

Seismic - Ant tracking

Contents

Detail

Detail

SeismicAnttrack [1x?] (char) : Seismic - Ant tracking

Published with MATLAB® R2017b

Page 751: Support Package for Petrel
Page 752: Support Package for Petrel

Petrel.Template.SeismicAttenuation

Seismic - Attenuation

Contents

Detail

Detail

SeismicAttenuation [1x?] (char) : Seismic - Attenuation

Published with MATLAB® R2017b

Page 753: Support Package for Petrel
Page 754: Support Package for Petrel

Petrel.Template.SeismicConsistentCurvature

Seismic - Consistent curvature

Contents

Detail

Detail

SeismicConsistentCurvature [1x?] (char) : Seismic - Consistent curvature

Published with MATLAB® R2017b

Page 755: Support Package for Petrel
Page 756: Support Package for Petrel

Petrel.Template.SeismicContrast

Seismic - Contrast

Contents

Detail

Detail

SeismicContrast [1x?] (char) : Seismic - Contrast

Published with MATLAB® R2017b

Page 757: Support Package for Petrel
Page 758: Support Package for Petrel

Petrel.Template.SeismicCorrelationCoefficient

Seismic - Correlation coefficient

Contents

Detail

Detail

SeismicCorrelationCoefficient [1x?] (char) : Seismic - Correlation coefficient

Published with MATLAB® R2017b

Page 759: Support Package for Petrel
Page 760: Support Package for Petrel

Petrel.Template.SeismicCosineOfPhase

Seismic - Cosine of phase

Contents

Detail

Detail

SeismicCosineOfPhase [1x?] (char) : Seismic - Cosine of phase

Published with MATLAB® R2017b

Page 761: Support Package for Petrel
Page 762: Support Package for Petrel

Petrel.Template.SeismicDefault

Seismic (default)

Contents

Detail

Detail

SeismicDefault [1x?] (char) : Seismic (default)

Published with MATLAB® R2017b

Page 763: Support Package for Petrel
Page 764: Support Package for Petrel

Petrel.Template.SeismicDipAngle

Seismic - Dip (angle)

Contents

Detail

Detail

SeismicDipAngle [1x?] (char) : Seismic - Dip (angle)

Published with MATLAB® R2017b

Page 765: Support Package for Petrel
Page 766: Support Package for Petrel

Petrel.Template.SeismicDipAzimuth

Seismic - Dip azimuth

Contents

Detail

Detail

SeismicDipAzimuth [1x?] (char) : Seismic - Dip azimuth

Published with MATLAB® R2017b

Page 767: Support Package for Petrel
Page 768: Support Package for Petrel

Petrel.Template.SeismicDipError

Seismic - Dip error

Contents

Detail

Detail

SeismicDipError [1x?] (char) : Seismic - Dip error

Published with MATLAB® R2017b

Page 769: Support Package for Petrel
Page 770: Support Package for Petrel

Petrel.Template.SeismicDipRatio

Seismic - Dip (ratio)

Contents

Detail

Detail

SeismicDipRatio [1x?] (char) : Seismic - Dip (ratio)

Published with MATLAB® R2017b

Page 771: Support Package for Petrel
Page 772: Support Package for Petrel

Petrel.Template.SeismicEdge

Seismic - Edge

Contents

Detail

Detail

SeismicEdge [1x?] (char) : Seismic - Edge

Published with MATLAB® R2017b

Page 773: Support Package for Petrel
Page 774: Support Package for Petrel

Petrel.Template.SeismicFrequency

Seismic - Frequency

Contents

Detail

Detail

SeismicFrequency [1x?] (char) : Seismic - Frequency

Published with MATLAB® R2017b

Page 775: Support Package for Petrel
Page 776: Support Package for Petrel

Petrel.Template.SeismicGradient

Seismic - Gradient

Contents

Detail

Detail

SeismicGradient [1x?] (char) : Seismic - Gradient

Published with MATLAB® R2017b

Page 777: Support Package for Petrel
Page 778: Support Package for Petrel

Petrel.Template.SeismicLocalFlatness

Seismic - Local flatness

Contents

Detail

Detail

SeismicLocalFlatness [1x?] (char) : Seismic - Local flatness

Published with MATLAB® R2017b

Page 779: Support Package for Petrel
Page 780: Support Package for Petrel

Petrel.Template.SeismicPhase

Seismic - Phase

Contents

Detail

Detail

SeismicPhase [1x?] (char) : Seismic - Phase

Published with MATLAB® R2017b

Page 781: Support Package for Petrel
Page 782: Support Package for Petrel

Petrel.Template.SeismicPolarity

Seismic - Polarity

Contents

Detail

Detail

SeismicPolarity [1x?] (char) : Seismic - Polarity

Published with MATLAB® R2017b

Page 783: Support Package for Petrel
Page 784: Support Package for Petrel

Petrel.Template.SeismicShapeIndex

Seismic - Shape index

Contents

Detail

Detail

SeismicShapeIndex [1x?] (char) : Seismic - Shape index

Published with MATLAB® R2017b

Page 785: Support Package for Petrel
Page 786: Support Package for Petrel

Petrel.Template.SeismicVariance

Seismic - Variance

Contents

Detail

Detail

SeismicVariance [1x?] (char) : Seismic - Variance

Published with MATLAB® R2017b

Page 787: Support Package for Petrel
Page 788: Support Package for Petrel

Petrel.Template.ShaleGougeRatio

Shale gouge ratio

Contents

Detail

Detail

ShaleGougeRatio [1x?] (char) : Shale gouge ratio

Published with MATLAB® R2017b

Page 789: Support Package for Petrel
Page 790: Support Package for Petrel

Petrel.Template.ShearModulus

Shear modulus

Contents

Detail

Detail

ShearModulus [1x?] (char) : Shear modulus

Published with MATLAB® R2017b

Page 791: Support Package for Petrel
Page 792: Support Package for Petrel

Petrel.Template.SimulationTime

Simulation time

Contents

Detail

Detail

SimulationTime [1x?] (char) : Simulation time

Published with MATLAB® R2017b

Page 793: Support Package for Petrel
Page 794: Support Package for Petrel

Petrel.Template.SlidingSleevePositions

Sliding sleeve positions

Contents

Detail

Detail

SlidingSleevePositions [1x?] (char) : Sliding sleeve positions

Published with MATLAB® R2017b

Page 795: Support Package for Petrel
Page 796: Support Package for Petrel

Petrel.Template.Slurry

Slurry

Contents

Detail

Detail

Slurry [1x?] (char) : Slurry

Published with MATLAB® R2017b

Page 797: Support Package for Petrel
Page 798: Support Package for Petrel

Petrel.Template.SlurryDensity

Slurry density

Contents

Detail

Detail

SlurryDensity [1x?] (char) : Slurry density

Published with MATLAB® R2017b

Page 799: Support Package for Petrel
Page 800: Support Package for Petrel

Petrel.Template.SlurryRate

Slurry rate

Contents

Detail

Detail

SlurryRate [1x?] (char) : Slurry rate

Published with MATLAB® R2017b

Page 801: Support Package for Petrel
Page 802: Support Package for Petrel

Petrel.Template.Sonic

Sonic

Contents

Detail

Detail

Sonic [1x?] (char) : Sonic

Published with MATLAB® R2017b

Page 803: Support Package for Petrel
Page 804: Support Package for Petrel

Petrel.Template.SpecificHeatCapacityPerTemp

Specific heat capacity per temperature

Contents

Detail

Detail

SpecificHeatCapacityPerTemp [1x?] (char) : Specific heat capacity per temperature

Published with MATLAB® R2017b

Page 805: Support Package for Petrel
Page 806: Support Package for Petrel

Petrel.Template.SpecificHeatCapacityPerTempSquared

Specific heat capacity per temperature squared

Contents

Detail

Detail

SpecificHeatCapacityPerTempSquared [1x?] (char) : Specific heat capacity per temperature squared

Published with MATLAB® R2017b

Page 807: Support Package for Petrel
Page 808: Support Package for Petrel

Petrel.Template.SpontaneousPotential

Spontaneous potential

Contents

Detail

Detail

SpontaneousPotential [1x?] (char) : Spontaneous potential

Published with MATLAB® R2017b

Page 809: Support Package for Petrel
Page 810: Support Package for Petrel

Petrel.Template.Ssonic

S-sonic

Contents

Detail

Detail

Ssonic [1x?] (char) : S-sonic

Published with MATLAB® R2017b

Page 811: Support Package for Petrel
Page 812: Support Package for Petrel

Petrel.Template.StairstepLayers

IJK layers

Contents

Detail

Detail

StairstepLayers [1x?] (char) : IJK layers

Published with MATLAB® R2017b

Page 813: Support Package for Petrel
Page 814: Support Package for Petrel

Petrel.Template.StairstepSegments

IJK Segments

Contents

Detail

Detail

StairstepSegments [1x?] (char) : IJK Segments

Published with MATLAB® R2017b

Page 815: Support Package for Petrel
Page 816: Support Package for Petrel

Petrel.Template.StandpipePressure

Standpipe pressure

Contents

Detail

Detail

StandpipePressure [1x?] (char) : Standpipe pressure

Published with MATLAB® R2017b

Page 817: Support Package for Petrel
Page 818: Support Package for Petrel

Petrel.Template.Status

Status

Contents

Detail

Detail

Status [1x?] (char) : Status

Published with MATLAB® R2017b

Page 819: Support Package for Petrel
Page 820: Support Package for Petrel

Petrel.Template.Stooip

STOIIP

Contents

Detail

Detail

Stooip [1x?] (char) : STOIIP

Published with MATLAB® R2017b

Page 821: Support Package for Petrel
Page 822: Support Package for Petrel

Petrel.Template.StooipMap

STOIIP (map)

Contents

Detail

Detail

StooipMap [1x?] (char) : STOIIP (map)

Published with MATLAB® R2017b

Page 823: Support Package for Petrel
Page 824: Support Package for Petrel

Petrel.Template.Strain

Strain

Contents

Detail

Detail

Strain [1x?] (char) : Strain

Published with MATLAB® R2017b

Page 825: Support Package for Petrel
Page 826: Support Package for Petrel

Petrel.Template.Strength

Rock strength

Contents

Detail

Detail

Strength [1x?] (char) : Rock strength

Published with MATLAB® R2017b

Page 827: Support Package for Petrel
Page 828: Support Package for Petrel

Petrel.Template.Strings

Strings

Contents

Detail

Detail

Strings [1x?] (char) : Strings

Published with MATLAB® R2017b

Page 829: Support Package for Petrel
Page 830: Support Package for Petrel

Petrel.Template.SummaryData

Summary data

Contents

Detail

Detail

SummaryData [1x?] (char) : Summary data

Published with MATLAB® R2017b

Page 831: Support Package for Petrel
Page 832: Support Package for Petrel

Petrel.Template.SurfaceAttribute

Surface attribute

Contents

Detail

Detail

SurfaceAttribute [1x?] (char) : Surface attribute

Published with MATLAB® R2017b

Page 833: Support Package for Petrel
Page 834: Support Package for Petrel

Petrel.Template.SurfaceTension

Surface tension

Contents

Detail

Detail

SurfaceTension [1x?] (char) : Surface tension

Published with MATLAB® R2017b

Page 835: Support Package for Petrel
Page 836: Support Package for Petrel

Petrel.Template.SurfaceWeightOnBit

Weight on bit

Contents

Detail

Detail

SurfaceWeightOnBit [1x?] (char) : Weight on bit

Published with MATLAB® R2017b

Page 837: Support Package for Petrel
Page 838: Support Package for Petrel

Petrel.Template.T2Distribution

T2 distribution

Contents

Detail

Detail

T2Distribution [1x?] (char) : T2 distribution

Published with MATLAB® R2017b

Page 839: Support Package for Petrel
Page 840: Support Package for Petrel

Petrel.Template.Temperature

Absolute temperature

Contents

Detail

Detail

Temperature [1x?] (char) : Absolute temperature

Published with MATLAB® R2017b

Page 841: Support Package for Petrel
Page 842: Support Package for Petrel

Petrel.Template.ThermalConductivityCombined

Thermal conductivity of rock and fluids

Contents

Detail

Detail

ThermalConductivityCombined [1x?] (char) : Thermal conductivity of rock and fluids

Published with MATLAB® R2017b

Page 843: Support Package for Petrel
Page 844: Support Package for Petrel

Petrel.Template.ThermalConductivityGas

Gas phase thermal conductivity

Contents

Detail

Detail

ThermalConductivityGas [1x?] (char) : Gas phase thermal conductivity

Published with MATLAB® R2017b

Page 845: Support Package for Petrel
Page 846: Support Package for Petrel

Petrel.Template.ThermalConductivityMF

Thermal conductivity matrix-fracture

Contents

Detail

Detail

ThermalConductivityMF [1x?] (char) : Thermal conductivity matrix-fracture

Published with MATLAB® R2017b

Page 847: Support Package for Petrel
Page 848: Support Package for Petrel

Petrel.Template.ThermalConductivityOil

Oil phase thermal conductivity

Contents

Detail

Detail

ThermalConductivityOil [1x?] (char) : Oil phase thermal conductivity

Published with MATLAB® R2017b

Page 849: Support Package for Petrel
Page 850: Support Package for Petrel

Petrel.Template.ThermalConductivityRock

Thermal conductivity of rock

Contents

Detail

Detail

ThermalConductivityRock [1x?] (char) : Thermal conductivity of rock

Published with MATLAB® R2017b

Page 851: Support Package for Petrel
Page 852: Support Package for Petrel

Petrel.Template.ThermalConductivitySolid

Solid phase thermal conductivity

Contents

Detail

Detail

ThermalConductivitySolid [1x?] (char) : Solid phase thermal conductivity

Published with MATLAB® R2017b

Page 853: Support Package for Petrel
Page 854: Support Package for Petrel

Petrel.Template.ThermalConductivityWater

Water phase thermal conductivity

Contents

Detail

Detail

ThermalConductivityWater [1x?] (char) : Water phase thermal conductivity

Published with MATLAB® R2017b

Page 855: Support Package for Petrel
Page 856: Support Package for Petrel

Petrel.Template.ThermalGradient

Thermal gradient

Contents

Detail

Detail

ThermalGradient [1x?] (char) : Thermal gradient

Published with MATLAB® R2017b

Page 857: Support Package for Petrel
Page 858: Support Package for Petrel

Petrel.Template.ThermalResistance

Thermal resistance

Contents

Detail

Detail

ThermalResistance [1x?] (char) : Thermal resistance

Published with MATLAB® R2017b

Page 859: Support Package for Petrel
Page 860: Support Package for Petrel

Petrel.Template.ThicknessDepth

Thickness depth

Contents

Detail

Detail

ThicknessDepth [1x?] (char) : Thickness depth

Published with MATLAB® R2017b

Page 861: Support Package for Petrel
Page 862: Support Package for Petrel

Petrel.Template.ThicknessProperty

Thickness general

Contents

Detail

Detail

ThicknessProperty [1x?] (char) : Thickness general

Published with MATLAB® R2017b

Page 863: Support Package for Petrel
Page 864: Support Package for Petrel

Petrel.Template.ThicknessTime

Thickness time

Contents

Detail

Detail

ThicknessTime [1x?] (char) : Thickness time

Published with MATLAB® R2017b

Page 865: Support Package for Petrel
Page 866: Support Package for Petrel

Petrel.Template.TimeStratigraphy

Time stratigraphy

Contents

Detail

Detail

TimeStratigraphy [1x?] (char) : Time stratigraphy

Published with MATLAB® R2017b

Page 867: Support Package for Petrel
Page 868: Support Package for Petrel

Petrel.Template.Torque

Torque

Contents

Detail

Detail

Torque [1x?] (char) : Torque

Published with MATLAB® R2017b

Page 869: Support Package for Petrel
Page 870: Support Package for Petrel

Petrel.Template.TotalStress

Total stress

Contents

Detail

Detail

TotalStress [1x?] (char) : Total stress

Published with MATLAB® R2017b

Page 871: Support Package for Petrel
Page 872: Support Package for Petrel

Petrel.Template.TransMult

Transmissibility multiplier

Contents

Detail

Detail

TransMult [1x?] (char) : Transmissibility multiplier

Published with MATLAB® R2017b

Page 873: Support Package for Petrel
Page 874: Support Package for Petrel

Petrel.Template.TransX

Transmissibility I direction

Contents

Detail

Detail

TransX [1x?] (char) : Transmissibility I direction

Published with MATLAB® R2017b

Page 875: Support Package for Petrel
Page 876: Support Package for Petrel

Petrel.Template.TransY

Transmissibility J direction

Contents

Detail

Detail

TransY [1x?] (char) : Transmissibility J direction

Published with MATLAB® R2017b

Page 877: Support Package for Petrel
Page 878: Support Package for Petrel

Petrel.Template.TransZ

Transmissibility K direction

Contents

Detail

Detail

TransZ [1x?] (char) : Transmissibility K direction

Published with MATLAB® R2017b

Page 879: Support Package for Petrel
Page 880: Support Package for Petrel

Petrel.Template.TransformationRatio

Transformation ratio

Contents

Detail

Detail

TransformationRatio [1x?] (char) : Transformation ratio

Published with MATLAB® R2017b

Page 881: Support Package for Petrel
Page 882: Support Package for Petrel

Petrel.Template.TreatingPressure

Treating pressure

Contents

Detail

Detail

TreatingPressure [1x?] (char) : Treating pressure

Published with MATLAB® R2017b

Page 883: Support Package for Petrel
Page 884: Support Package for Petrel

Petrel.Template.Tst

True stratigraphic thickness

Contents

Detail

Detail

Tst [1x?] (char) : True stratigraphic thickness

Published with MATLAB® R2017b

Page 885: Support Package for Petrel
Page 886: Support Package for Petrel

Petrel.Template.Tvt

True vertical thickness

Contents

Detail

Detail

Tvt [1x?] (char) : True vertical thickness

Published with MATLAB® R2017b

Page 887: Support Package for Petrel
Page 888: Support Package for Petrel

Petrel.Template.Twt

Two-way time

Contents

Detail

Detail

Twt [1x?] (char) : Two-way time

Published with MATLAB® R2017b

Page 889: Support Package for Petrel
Page 890: Support Package for Petrel

Petrel.Template.Uncertainty

Uncertainty

Contents

Detail

Detail

Uncertainty [1x?] (char) : Uncertainty

Published with MATLAB® R2017b

Page 891: Support Package for Petrel
Page 892: Support Package for Petrel

Petrel.Template.UptimeFraction

Uptime fraction

Contents

Detail

Detail

UptimeFraction [1x?] (char) : Uptime fraction

Published with MATLAB® R2017b

Page 893: Support Package for Petrel
Page 894: Support Package for Petrel

Petrel.Template.UserCont2

Happy day

Contents

Detail

Detail

UserCont2 [1x?] (char) : Happy day

Published with MATLAB® R2017b

Page 895: Support Package for Petrel
Page 896: Support Package for Petrel

Petrel.Template.V0Factor

V0 factor

Contents

Detail

Detail

V0Factor [1x?] (char) : V0 factor

Published with MATLAB® R2017b

Page 897: Support Package for Petrel
Page 898: Support Package for Petrel

Petrel.Template.VaporizationHeat

Vaporization heat

Contents

Detail

Detail

VaporizationHeat [1x?] (char) : Vaporization heat

Published with MATLAB® R2017b

Page 899: Support Package for Petrel
Page 900: Support Package for Petrel

Petrel.Template.Variance

Variance

Contents

Detail

Detail

Variance [1x?] (char) : Variance

Published with MATLAB® R2017b

Page 901: Support Package for Petrel
Page 902: Support Package for Petrel

Petrel.Template.Velocity

Velocity

Contents

Detail

Detail

Velocity [1x?] (char) : Velocity

Published with MATLAB® R2017b

Page 903: Support Package for Petrel
Page 904: Support Package for Petrel

Petrel.Template.VelocityAverage

Average velocity

Contents

Detail

Detail

VelocityAverage [1x?] (char) : Average velocity

Published with MATLAB® R2017b

Page 905: Support Package for Petrel
Page 906: Support Package for Petrel

Petrel.Template.VelocityInterval

Interval velocity

Contents

Detail

Detail

VelocityInterval [1x?] (char) : Interval velocity

Published with MATLAB® R2017b

Page 907: Support Package for Petrel
Page 908: Support Package for Petrel

Petrel.Template.VelocityP

P-velocity

Contents

Detail

Detail

VelocityP [1x?] (char) : P-velocity

Published with MATLAB® R2017b

Page 909: Support Package for Petrel
Page 910: Support Package for Petrel

Petrel.Template.VelocityRatio

P/S velocity ratio

Contents

Detail

Detail

VelocityRatio [1x?] (char) : P/S velocity ratio

Published with MATLAB® R2017b

Page 911: Support Package for Petrel
Page 912: Support Package for Petrel

Petrel.Template.VelocityS

S-velocity

Contents

Detail

Detail

VelocityS [1x?] (char) : S-velocity

Published with MATLAB® R2017b

Page 913: Support Package for Petrel
Page 914: Support Package for Petrel

Petrel.Template.VelocityStack

Stacking velocity

Contents

Detail

Detail

VelocityStack [1x?] (char) : Stacking velocity

Published with MATLAB® R2017b

Page 915: Support Package for Petrel
Page 916: Support Package for Petrel

Petrel.Template.VerticalSection

Vertical section

Contents

Detail

Detail

VerticalSection [1x?] (char) : Vertical section

Published with MATLAB® R2017b

Page 917: Support Package for Petrel
Page 918: Support Package for Petrel

Petrel.Template.VitriniteReflectance

Vitrinite reflectance

Contents

Detail

Detail

VitriniteReflectance [1x?] (char) : Vitrinite reflectance

Published with MATLAB® R2017b

Page 919: Support Package for Petrel
Page 920: Support Package for Petrel

Petrel.Template.VolumeBulkMap

Bulk volume (map)

Contents

Detail

Detail

VolumeBulkMap [1x?] (char) : Bulk volume (map)

Published with MATLAB® R2017b

Page 921: Support Package for Petrel
Page 922: Support Package for Petrel

Petrel.Template.VolumeNet

Net volume

Contents

Detail

Detail

VolumeNet [1x?] (char) : Net volume

Published with MATLAB® R2017b

Page 923: Support Package for Petrel
Page 924: Support Package for Petrel

Petrel.Template.VolumeNetMap

Net volume (map)

Contents

Detail

Detail

VolumeNetMap [1x?] (char) : Net volume (map)

Published with MATLAB® R2017b

Page 925: Support Package for Petrel
Page 926: Support Package for Petrel

Petrel.Template.VolumePore

Pore volume

Contents

Detail

Detail

VolumePore [1x?] (char) : Pore volume

Published with MATLAB® R2017b

Page 927: Support Package for Petrel
Page 928: Support Package for Petrel

Petrel.Template.VolumePoreMap

Pore volume (map)

Contents

Detail

Detail

VolumePoreMap [1x?] (char) : Pore volume (map)

Published with MATLAB® R2017b

Page 929: Support Package for Petrel
Page 930: Support Package for Petrel

Petrel.Template.Vshale

VShale

Contents

Detail

Detail

Vshale [1x?] (char) : VShale

Published with MATLAB® R2017b

Page 931: Support Package for Petrel
Page 932: Support Package for Petrel

Petrel.Template.WaterCompressibility

Water compressibility

Contents

Detail

Detail

WaterCompressibility [1x?] (char) : Water compressibility

Published with MATLAB® R2017b

Page 933: Support Package for Petrel
Page 934: Support Package for Petrel

Petrel.Template.WaterCut

Water cut

Contents

Detail

Detail

WaterCut [1x?] (char) : Water cut

Published with MATLAB® R2017b

Page 935: Support Package for Petrel
Page 936: Support Package for Petrel

Petrel.Template.WaterFlowRate

Water flow rate

Contents

Detail

Detail

WaterFlowRate [1x?] (char) : Water flow rate

Published with MATLAB® R2017b

Page 937: Support Package for Petrel
Page 938: Support Package for Petrel

Petrel.Template.WaterGasRatio

Water-gas ratio

Contents

Detail

Detail

WaterGasRatio [1x?] (char) : Water-gas ratio

Published with MATLAB® R2017b

Page 939: Support Package for Petrel
Page 940: Support Package for Petrel

Petrel.Template.WaterHeatCapacity

Water heat capacity

Contents

Detail

Detail

WaterHeatCapacity [1x?] (char) : Water heat capacity

Published with MATLAB® R2017b

Page 941: Support Package for Petrel
Page 942: Support Package for Petrel

Petrel.Template.WaterViscosibility

Water viscosibility

Contents

Detail

Detail

WaterViscosibility [1x?] (char) : Water viscosibility

Published with MATLAB® R2017b

Page 943: Support Package for Petrel
Page 944: Support Package for Petrel

Petrel.Template.WaterViscosity

Water viscosity

Contents

Detail

Detail

WaterViscosity [1x?] (char) : Water viscosity

Published with MATLAB® R2017b

Page 945: Support Package for Petrel
Page 946: Support Package for Petrel

Petrel.Template.Wavelet

Wavelet

Contents

Detail

Detail

Wavelet [1x?] (char) : Wavelet

Published with MATLAB® R2017b

Page 947: Support Package for Petrel
Page 948: Support Package for Petrel

Petrel.Template.WellBoreRadius

Well bore radius

Contents

Detail

Detail

WellBoreRadius [1x?] (char) : Well bore radius

Published with MATLAB® R2017b

Page 949: Support Package for Petrel
Page 950: Support Package for Petrel

Petrel.Template.WellIndex

Well Index

Contents

Detail

Detail

WellIndex [1x?] (char) : Well Index

Published with MATLAB® R2017b

Page 951: Support Package for Petrel
Page 952: Support Package for Petrel

Petrel.Template.YoungsModulus

Young''s modulus

Contents

Detail

Detail

YoungsModulus [1x?] (char) : Young''s modulus

Published with MATLAB® R2017b

Page 953: Support Package for Petrel
Page 954: Support Package for Petrel

Petrel.Template.ZFactor

Z factor

Contents

Detail

Detail

ZFactor [1x?] (char) : Z factor

Published with MATLAB® R2017b

Page 955: Support Package for Petrel
Page 956: Support Package for Petrel

Petrel.Template.ZoneLog

Zone log from ''Well Tops''

Contents

Detail

Detail

ZoneLog [1x?] (char) : Zone log from ''Well Tops''

Published with MATLAB® R2017b

Page 957: Support Package for Petrel
Page 958: Support Package for Petrel

Petrel.Template.ZonesAllK

Layers

Contents

Detail

Detail

ZonesAllK [1x?] (char) : Layers

Published with MATLAB® R2017b

Page 959: Support Package for Petrel
Page 960: Support Package for Petrel

Petrel.Template.ZonesMain

Main zones

Contents

Detail

Detail

ZonesMain [1x?] (char) : Main zones

Published with MATLAB® R2017b

Page 961: Support Package for Petrel
Page 962: Support Package for Petrel

Petrel.Template.ZonesSub

Zones

Contents

Detail

Detail

ZonesSub [1x?] (char) : Zones

Published with MATLAB® R2017b

Page 963: Support Package for Petrel
Page 964: Support Package for Petrel

Petrel.Template.ZonesSubHierarchy

Zones (hierarchy)

Contents

Detail

Detail

ZonesSubHierarchy [1x?] (char) : Zones (hierarchy)

Published with MATLAB® R2017b

Page 965: Support Package for Petrel
Page 966: Support Package for Petrel

Petrel.Type.CheckShot

CheckShot type

Contents

Detail

Detail

CheckShot [1x?] (char) : Check shot type

Published with MATLAB® R2017b

Page 967: Support Package for Petrel
Page 968: Support Package for Petrel

Petrel.Type.Function

Function type

Contents

Detail

Detail

Function [1x?] (char) : Function type

Published with MATLAB® R2017b

Page 969: Support Package for Petrel
Page 970: Support Package for Petrel

Petrel.Type.Grid

Grid type

Contents

Detail

Detail

Grid [1x?] (char) : Grid type

Published with MATLAB® R2017b

Page 971: Support Package for Petrel
Page 972: Support Package for Petrel

Petrel.Type.GridPropertyContinuous

Continuous grid property type

Contents

Detail

Detail

GridPropertyContinuous [1x?] (char) : Continuous grid property type

Published with MATLAB® R2017b

Page 973: Support Package for Petrel
Page 974: Support Package for Petrel

Petrel.Type.GridPropertyDiscrete

Discrete grid property type

Contents

Detail

Detail

GridPropertyDiscrete [1x?] (char) : Discrete grid property type

Published with MATLAB® R2017b

Page 975: Support Package for Petrel
Page 976: Support Package for Petrel

Petrel.Type.PointSet

Point set type

Contents

Detail

Detail

PointSet [1x?] (char) : Point set type

Published with MATLAB® R2017b

Page 977: Support Package for Petrel
Page 978: Support Package for Petrel

Petrel.Type.PointSetPropertyContinuous

Continuous point set property type

Contents

Detail

Detail

PointSetPropertyContinuous [1x?] (char) : Continuous point set property

Published with MATLAB® R2017b

Page 979: Support Package for Petrel
Page 980: Support Package for Petrel

Petrel.Type.PointSetPropertyDiscrete

Discrete point set property type

Contents

Detail

Detail

PointSetPropertyDiscrete [1x?] (char) : Discrete point set property type

Published with MATLAB® R2017b

Page 981: Support Package for Petrel
Page 982: Support Package for Petrel

Petrel.Type.PolylineSet

Polyline set type

Contents

Detail

Detail

PolylineSet [1x?] (char) : Polyline set type

Published with MATLAB® R2017b

Page 983: Support Package for Petrel
Page 984: Support Package for Petrel

Petrel.Type.PolylineSetPropertyContinuous

Continuous polyline set property type

Contents

Detail

Detail

PolylineSetPropertyContinuous [1x?] (char) : Continuous polyline set property type

Published with MATLAB® R2017b

Page 985: Support Package for Petrel
Page 986: Support Package for Petrel

Petrel.Type.PolylineSetPropertyDiscrete

Discrete polyline set property type

Contents

Detail

Detail

PolylineSetPropertyDiscrete [1x?] (char) : Discrete polyline set property type

Published with MATLAB® R2017b

Page 987: Support Package for Petrel
Page 988: Support Package for Petrel

Petrel.Type.SeismicCube

Seismic cube type

Contents

Detail

Detail

SeismicCube [1x?] (char) : Seismic cube type

Published with MATLAB® R2017b

Page 989: Support Package for Petrel
Page 990: Support Package for Petrel

Petrel.Type.SeismicHorizon

Seismic horizon type

Contents

Detail

Detail

SeismicHorizon [1x?] (char) : Seismic horizon type

Published with MATLAB® R2017b

Page 991: Support Package for Petrel
Page 992: Support Package for Petrel

Petrel.Type.Surface

Surface type

Contents

Detail

Detail

Surface [1x?] (char) : Surface type

Published with MATLAB® R2017b

Page 993: Support Package for Petrel
Page 994: Support Package for Petrel

Petrel.Type.SurfacePropertyContinuous

Continuous surface property type

Contents

Detail

Detail

SurfacePropertyContinuous [1x?] (char) : Continuous surface property type

Published with MATLAB® R2017b

Page 995: Support Package for Petrel
Page 996: Support Package for Petrel

Petrel.Type.SurfacePropertyDiscrete

Discrete surface property type

Contents

Detail

Detail

SurfacePropertyDiscrete [1x?] (char) : Discrete surface property type

Published with MATLAB® R2017b

Page 997: Support Package for Petrel
Page 998: Support Package for Petrel

Petrel.Type.Well

Well type

Contents

Detail

Detail

Well [1x?] (char) : Well type

Published with MATLAB® R2017b

Page 999: Support Package for Petrel
Page 1000: Support Package for Petrel

Petrel.Type.WellLog

Well log type

Contents

Detail

Detail

WellLog [1x?] (char) : Well log type

Published with MATLAB® R2017b

Page 1001: Support Package for Petrel
Page 1002: Support Package for Petrel

Petrel.Type.Workflow

Workflow type

Contents

Detail

Detail

Workflow [1x?] (char) : Workflow type

Published with MATLAB® R2017b

Page 1003: Support Package for Petrel
Page 1004: Support Package for Petrel

Petrel.Window.Function

Function window

Contents

Detail

Detail

Function [1x?] (char) : Function window

Published with MATLAB® R2017b

Page 1005: Support Package for Petrel
Page 1006: Support Package for Petrel

Petrel.Window.Interpretation

Interpretation window

Contents

Detail

Detail

Interpretation [1x?] (char) : Interpretation window

Published with MATLAB® R2017b

Page 1007: Support Package for Petrel
Page 1008: Support Package for Petrel

Petrel.Window.Intersection

Intersection window

Contents

Detail

Detail

Intersection [1x?] (char) : Intersection window

Published with MATLAB® R2017b

Page 1009: Support Package for Petrel
Page 1010: Support Package for Petrel

Petrel.Window.Map

Map window

Contents

Detail

Detail

Map [1x?] (char) : Map window

Published with MATLAB® R2017b

Page 1011: Support Package for Petrel
Page 1012: Support Package for Petrel

Petrel.Window.Window2D

2D window

Contents

Detail

Detail

Window2D [1x?] (char) : 2D window

Published with MATLAB® R2017b

Page 1013: Support Package for Petrel
Page 1014: Support Package for Petrel

Petrel.Window.Window3D

3D window

Contents

Detail

Detail

Window3D [1x?] (char) : 3D window

Published with MATLAB® R2017b

Page 1015: Support Package for Petrel
Page 1016: Support Package for Petrel

Petrel.addFolder

Add folder to Petrel project

Contents

Detail

Detail

Syntax:

Path = Petrel.addFolder(Path,Name,Type)

Inputs:

Path [1x?] (char) : Path of the parent node in Petrel.Name [1x?] (char) : Name of the folder to add.Type [1x?] (char) : Type of the folder to add (optional).

Outputs:

Path [1x?] (char) : Path of the added folder in Petrel.

Examples:

Petrel.addFolder('/Input','My Point Sets');

Petrel.addFolder('/Input/Seismic','My Interpretations',Petrel.Folder.SeismicInterpretation);

See also Petrel.addNode.

Published with MATLAB® R2017b

Page 1017: Support Package for Petrel
Page 1018: Support Package for Petrel

Petrel.addNode

Add node to Petrel project

Contents

Detail

Detail

Syntax:

Path = Petrel.addNode(Path,Name,Node)

Inputs:

Path [1x?] (char) : Path of the parent node in Petrel.Name [1x?] (char) : Name of the child node to add.Node [1x1] (struct):- Structure defining the node to add.

Outputs:

Path [1x?] (char) : Path of the added node in Petrel.

Examples:

X = 1:3;Y = 1:3;Z = 1:3;

Node = Petrel.makePointSet(X,Y,Z);

Petrel.addNode('/Input/My Point Sets','My Point Set 1',Node);

See also Petrel.getNode, Petrel.setNode, Petrel.makePointSet.

Published with MATLAB® R2017b

Page 1019: Support Package for Petrel
Page 1020: Support Package for Petrel

Petrel.addWindow

Add window to Petrel UI

Contents

Detail

Detail

Syntax:

Path = Petrel.addWindow(Type)

Inputs:

Type [1x?] (char) : Type of the window to add.

Outputs:

Path [1x?] (char) : Path of the added window in Petrel.

Examples:

Path = Petrel.addWindow(Petrel.Window.Window3D);

See also Petrel.showWindow, Petrel.showNode.

Published with MATLAB® R2017b

Page 1021: Support Package for Petrel
Page 1022: Support Package for Petrel

Petrel.findNode

Find node in Petrel project

Contents

Detail

Detail

Syntax:

[Path,Name,Type] = Petrel.findNode(Path,Name,Type)

Inputs:

Path [1x?] (char) : Path of the node to find (optional).Name [1x?] (char) : Name of the node to find (optional).Type [1x?] (char) : Type of the node to find (optional).

Outputs:

Path [1x?] (char) : Path of the node.Name [1x?] (char) : Name of the node.Type [1x?] (char) : Type of the node.

Or

Path {?x1} (char) : Path of multiple nodes.Name {?x1} (char) : Name of multiple nodes.Type {?x1} (char) : Type of multiple nodes.

Examples:

Path = Petrel.findNode('/Input/Wells/*','A10',Petrel.Type.WellLog);

[Path,Name,Type] = Petrel.findNode('*','*','*');

See also Petrel.getNode, Petrel.setNode, Petrel.addNode

Published with MATLAB® R2017b

Page 1023: Support Package for Petrel
Page 1024: Support Package for Petrel

Petrel.getCamera

Get camera from Petrel UI

Contents

Detail

Detail

Syntax:

[CameraPosition,CameraTarget,CameraUpVector,CameraViewAngle,DataAspectRatio] = Petrel.getCamera(Path)

Inputs:

Path [1x?] (char) : Path of the window in Petrel.

Outputs:

CameraPosition [1x3] (double) : Camera position.CameraTarget [1x3] (double) : Camera target.CameraUpVector [1x3] (double) : Camera up vector.CameraViewAngle [1x1] (double) : Camera viewing angle (deg).DataAspectRatio [1x3] (double) : Data aspect ratio.

Examples:

[CameraPosition,CameraTarget,CameraUpVector,CameraViewAngle,DataAspectRatio] = Petrel.getCamera('/Window/3D window 1');

See also Petrel.setCamera, Petrel.linkCamera, camtarget, campos, camup, camva, daspect.

Published with MATLAB® R2017b

Page 1025: Support Package for Petrel
Page 1026: Support Package for Petrel

Petrel.getNode

Get node from Petrel project

Contents

Detail

Detail

Syntax:

Node = Petrel.getNode(Path)

Inputs:

Path [1x?] (char) : Path of the node in Petrel.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Node = Petrel.getNode('/Input/My Point Sets/My Point Set 1');

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1027: Support Package for Petrel
Page 1028: Support Package for Petrel

Petrel.getPlugin

Get Petrel plugin

Contents

Detail

Detail

Syntax:

Release = Petrel.getPlugin()

Outputs:

Release [1x?] (char) : Petrel release to which plugin is registered.

Examples:

Release = Petrel.getPlugin();

Published with MATLAB® R2017b

Page 1029: Support Package for Petrel
Page 1030: Support Package for Petrel

Petrel.hasNode

Check Petrel project for node

Contents

Detail

Detail

Syntax:

HasNode = Petrel.hasNode(Path)

Inputs:

Path [1x?] (char) : Path of the node in Petrel.

Outputs:

HasNode [1x1] (logical) : True if Petrel has the node.

Examples:

if(~Petrel.hasNode('/Input/My Folder')) Petrel.addFolder('/Input/My Folder');end

See also Petrel.addFolder, Petrel.addNode.

Published with MATLAB® R2017b

Page 1031: Support Package for Petrel
Page 1032: Support Package for Petrel

Petrel.linkCamera

Link MATLAB camera to Petrel UI

Contents

Detail

Detail

Syntax:

Petrel.linkCamera(Path,Axes)

Inputs:

Path [1x?] (char) : Path of the window in Petrel.Axes [1x1] (axes) : MATLAB axes.

Examples:

Petrel.linkCamera('/Window/3D window 1',gca);

See also Petrel.getCamera, Petrel.setCamera, camtarget, campos, camup, camva, daspect.

Published with MATLAB® R2017b

Page 1033: Support Package for Petrel
Page 1034: Support Package for Petrel

Petrel.loadNode

Load node from file

Contents

Detail

Detail

Syntax:

Node = Petrel.loadNode(File)

Inputs:

File [1x?] (char) : MAT-file exported by Petrel.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Node = Petrel.loadNode('PointSet.mat');

See also Petrel.saveNode.

Published with MATLAB® R2017b

Page 1035: Support Package for Petrel
Page 1036: Support Package for Petrel

Petrel.makeCheckShot

Make Petrel check shot for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeCheckShot(Depth,Value,Template)

Inputs:

Depth [Mx1] (double) : Check shot depth.Value [Mx1] (double) : Check shot value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Depth = (1:3)';

Value = rand(3,1);

Template = Petrel.Template.Twt;

Node = Petrel.makeCheckShot(Depth,Value,Template);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1037: Support Package for Petrel
Page 1038: Support Package for Petrel

Petrel.makeFunction

Make Petrel function node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeFunction(X,Y,UseSpline,TemplateX,TemplateY)

Inputs:

X [Mx1] (double) : Point X coordinate.Y [Mx1] (double) : Point Y coordinate.UseSpline [1x1] (logical) : Use spline.TemplateX [1x?] (char) : X Template.TemplateY [1x?] (char) : Y Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

X = 1:3;Y = 1:3;UseSpline = true;

Node = Petrel.makeFunction(X,Y,UseSpline,Petrel.Template.GeneralContinuous,Petrel.Template.GeneralContinuous);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1039: Support Package for Petrel
Page 1040: Support Package for Petrel

Petrel.makeGrid

Make Petrel grid node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeGrid(X,Y,Z,Fault,Horizon,Zone,Domain)

Inputs:

X [MxNxPx4] (double) : Grid X coordinate.Y [MxNxPx4] (double) : Grid Y coordinate.Z [MxNxPx4] (double) : Grid Z coordinate.Fault [?x1] (struct) : Grid faultsHorizon [?x1] (struct) : Grid horizonsZone [?x1] (struct) : Grid zonesDomain [1x?] (char) : Domain.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

[X,Y,Z] = meshgrid(1:3,1:4,1:5);

X = repmat(X,[1 1 1 4]); % Replicate to make an unfaulted pillarY = repmat(Y,[1 1 1 4]);Z = repmat(Z,[1 1 1 4]);

Fault = Petrel.makeGridFault(); % No faults

TopK = 1;BaseK = size(Z,3);

Horizon = Petrel.makeGridHorizon(... 'Top' ,Petrel.Horizon.Conformable,TopK,... 'Base',Petrel.Horizon.Conformable,BaseK);

Zone = Petrel.makeGridZone('Top - Base',false,[TopK BaseK]);

Domain = Petrel.Domain.ElevationDepth;

Node = Petrel.makeGrid(X,Y,Z,Fault,Horizon,Zone,Domain);

See also Petrel.setNode, Petrel.addNode.

Page 1041: Support Package for Petrel

Published with MATLAB® R2017b

Page 1042: Support Package for Petrel

Petrel.makeGridFault

Make Petrel grid fault

Contents

Detail

Detail

Syntax:

Fault = Petrel.makeGridFault(Name,I,J,...)

Inputs:

Name [1x?] (char) : Fault name.I [Mx1] (double) : Fault I.J [Mx1] (double) : Fault J.

Outputs:

Fault [1x1] (struct) : Structure defining the fault.

Examples:

I = 1:31;J = repmat(16,1,10);

Fault = Petrel.makeGridFault('North - South',I,J);

See also Petrel.makeGrid.

Published with MATLAB® R2017b

Page 1043: Support Package for Petrel
Page 1044: Support Package for Petrel

Petrel.makeGridHorizon

Make Petrel grid horizon

Contents

Detail

Detail

Syntax:

Horizon = Petrel.makeGridHorizon(Name,Type,K,...)

Inputs:

Name [1x?] (char) : Horizon name.Type [1x?] (char) : Horizon type.K [1x1] (double) : Horizon index.

Outputs:

Horizon [1x1] (struct) : Structure defining the horizon.

Examples:

Horizon = Petrel.makeGridHorizon('Top',Petrel.Horizon.Conformable,1);

See also Petrel.makeGrid.

Published with MATLAB® R2017b

Page 1045: Support Package for Petrel
Page 1046: Support Package for Petrel

Petrel.makeGridPropertyContinuous

Make Petrel continuous grid property

Contents

Detail

Detail

Syntax:

Node = Petrel.makeGridPropertyContinuous(Value,Template)

Inputs:

Value [MxNxP] (double) : Grid property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Value = rand(3,2,4);

Node = Petrel.makeGridPropertyContinuous(Value,Petrel.Template.GeneralContinuous);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1047: Support Package for Petrel
Page 1048: Support Package for Petrel

Petrel.makeGridPropertyDiscrete

Make Petrel discrete grid property

Contents

Detail

Detail

Syntax:

Node = Petrel.makeGridPropertyDiscrete(Value,Template)

Inputs:

Value [MxNxP] (double) : Grid property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Value = randi([1 10],3,2,4);

Node = Petrel.makeGridPropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1049: Support Package for Petrel
Page 1050: Support Package for Petrel

Petrel.makeGridZone

Make Petrel grid zone

Contents

Detail

Detail

Syntax:

Zone = Petrel.makeGridZone(Name,IsHierarchical,K,...)

Inputs:

Name [1x?] (char) : Zone name.IsHierarchical [1x1] (logical) : Is hierarchical.K [2x1] (double) : Zone index.

Outputs:

Zone [1x1] (struct) : Structure defining the zone.

Examples:

Zone = Petrel.makeGridZone('Top - Base',false,[1 2]);

See also Petrel.makeGrid.

Published with MATLAB® R2017b

Page 1051: Support Package for Petrel
Page 1052: Support Package for Petrel

Petrel.makePointSet

Make Petrel point set node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makePointSet(X,Y,Z,Template)

Inputs:

X [Mx1] (double) : Point X coordinate.Y [Mx1] (double) : Point Y coordinate.Z [Mx1] (double) : Point Z coordinate.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

X = 1:3;Y = 1:3;Z = 1:3;

Node = Petrel.makePointSet(X,Y,Z,Petrel.Template.ElevationDepth);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1053: Support Package for Petrel
Page 1054: Support Package for Petrel

Petrel.makePointSetPropertyContinuous

Make Petrel continuous point set property node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makePointSetPropertyContinuous(Value,Template)

Inputs:

Value [Mx1] (double) : Point property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Value = rand(3,1);

Node = Petrel.makePointSetPropertyContinuous(Value,Petrel.Template.GeneralContinuous);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1055: Support Package for Petrel
Page 1056: Support Package for Petrel

Petrel.makePointSetPropertyDiscrete

Make Petrel discrete point set property node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makePointSetPropertyDiscrete(Value,Template)

Inputs:

Value [Mx1] (double) : Point property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) - Structure defining the node.

Examples:

Value = randi([1 10],3,1);

Node = Petrel.makePointSetPropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1057: Support Package for Petrel
Page 1058: Support Package for Petrel

Petrel.makePolylineSet

Make Petrel polyline set node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makePolylineSet(X,Y,Z,Template)

Inputs:

X [Mx1] or {Lx1} (double) : Polyline X coordinate.Y [Mx1] or {Lx1} (double) : Polyline Y coordinate.Z [Mx1] or {Lx1} (double) : Polyline Z coordinate.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

X = 1:3;Y = 1:3;Z = 1:3;

Node = Petrel.makePolylineSet(X,Y,Z,Petrel.Template.GeneralDiscrete);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1059: Support Package for Petrel
Page 1060: Support Package for Petrel

Petrel.makePolylineSetPropertyContinuous

Make Petrel continuous polyline set property node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makePolylineSetPropertyContinuous(Value,Template)

Inputs:

Value [Mx1] (double) : Polyline property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Value = rand(3,1);

Node = Petrel.makePolylineSetPropertyContinuous(Value,Petrel.Template.GeneralContinuous);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1061: Support Package for Petrel
Page 1062: Support Package for Petrel

Petrel.makePolylineSetPropertyDiscrete

Make Petrel discrete polyline set property node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makePolylineSetPropertyDiscrete(Value,Template)

Inputs:

Value [Mx1] (double) : Polyline property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Value = randi([1 10],3,1);

Node = Petrel.makePolylineSetPropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1063: Support Package for Petrel
Page 1064: Support Package for Petrel

Petrel.makeSeismicCube

Make Petrel seismic cube node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeSeismicCube(X,Y,Z,Value,Template,Domain)

Inputs:

X [MxN] (double) : Seismic cube X coordinate.Y [MxN] (double) : Seismic cube Y coordinate.Z [1x1xP] (double) : Seismic cube Z coordinate.Value [MxNxP] (double) : Seismic cube value.Template [1x?] (char) : Template.Domain [1x?] (char) : Domain.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

[X,Y] = meshgrid(1:3,1:4);

Z = 1:5;

Value = randn(4,3,5);

Template = Petrel.Template.SeismicDefault;

Domain = Petrel.Domain.ElevationTime;

Node = Petrel.makeSeismicCube(X,Y,Z,Value,Template,Domain);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1065: Support Package for Petrel
Page 1066: Support Package for Petrel

Petrel.makeSurface

Make Petrel surface node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeSurface(X,Y,Z,Template)

Inputs:

X [MxN] (double) : Surface X coordinate.Y [MxN] (double) : Surface Y coordinate.Z [MxN] (double) : Surface Z coordinate.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

[X,Y] = meshgrid(1:3,1:4);

Z = rand(4,3);

Node = Petrel.makeSurface(X,Y,Z,Petrel.Template.ElevationDepth);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1067: Support Package for Petrel
Page 1068: Support Package for Petrel

Petrel.makeSurfacePropertyContinuous

Make Petrel continuous surface property node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeSurfacePropertyContinuous(Value,Template)

Inputs:

Value [MxN] (double) : Surface property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Value = rand(4,3);

Node = Petrel.makeSurfacePropertyContinuous(Value,Petrel.Template.GeneralContinuous);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1069: Support Package for Petrel
Page 1070: Support Package for Petrel

Petrel.makeSurfacePropertyDiscrete

Make Petrel discrete surface property node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeSurfacePropertyDiscrete(Value,Template)

Inputs:

Value [MxN] (double) : Surface property value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Value = randi([1 10],4,3);

Node = Petrel.makeSurfacePropertyDiscrete(Value,Petrel.Template.GeneralDiscrete);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1071: Support Package for Petrel
Page 1072: Support Package for Petrel

Petrel.makeWell

Make Petrel well node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeWell(X,Y,Z,Offset)

Inputs:

X [Mx1] (double) : Well X coordinate.Y [Mx1] (double) : Well Y coordinate.Z [Mx1] (double) : Well Z coordinate.Offset [1x1] (double) : Well reference level offset.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

X = 1:3;Y = 1:3;Z = 1:3;

Offset = 0;

Node = Petrel.makeWell(X,Y,Z,Offset);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1073: Support Package for Petrel
Page 1074: Support Package for Petrel

Petrel.makeWellLog

Make Petrel well log node for export

Contents

Detail

Detail

Syntax:

Node = Petrel.makeWellLog(Depth,Value,Template)

Inputs:

Depth [Mx1] (double) : Well log depth.Value [Mx1] (double) : Well log value.Template [1x?] (char) : Template.

Outputs:

Node [1x1] (struct) : Structure defining the node.

Examples:

Depth = (1:3)';

Value = rand(3,1);

Template = Petrel.Template.Porosity;

Node = Petrel.makeWellLog(Depth,Value,Template);

See also Petrel.setNode, Petrel.addNode.

Published with MATLAB® R2017b

Page 1075: Support Package for Petrel
Page 1076: Support Package for Petrel

Petrel.registerPlugin

Register MATLAB plugin with Petrel

Contents

Detail

Detail

Syntax:

Petrel.registerPlugin()

Examples:

Petrel.registerPlugin();

Published with MATLAB® R2017b

Page 1077: Support Package for Petrel
Page 1078: Support Package for Petrel

Petrel.removeNode

Remove node from Petrel project

Contents

Detail

Detail

Syntax:

Petrel.removeNode(Path)

Inputs:

Path [1x?] or {1x?} (char) : Path of the node in Petrel.

Examples:

Petrel.removeNode('/Input/My Point Sets/My Point Set 1');

See also Petrel.renameNode.

Published with MATLAB® R2017b

Page 1079: Support Package for Petrel
Page 1080: Support Package for Petrel

Petrel.renameNode

Rename node in Petrel project

Contents

Detail

Detail

Syntax:

Path = Petrel.renameNode(Path,Name)

Inputs:

Path [1x?] (char) : Path of the node in Petrel.Name [1x?] (char) : New name of the node.

Outputs:

Path [1x?] (char) - Path of the renamed node in Petrel.

Examples:

Petrel.renameNode('/Input/My Point Sets/My Point Set 1','My Point Set 2');

See also Petrel.removeNode.

Published with MATLAB® R2017b

Page 1081: Support Package for Petrel
Page 1082: Support Package for Petrel

Petrel.runWorkflow

Run workflow in Petrel project

Contents

Detail

Detail

Syntax:

Petrel.runWorkflow(Path)

Inputs:

Path [1x?] (char) : Path of the workflow in Petrel.

Examples:

Petrel.runWorkflow('/Workflows/My Workflow');

Published with MATLAB® R2017b

Page 1083: Support Package for Petrel
Page 1084: Support Package for Petrel

Petrel.saveNode

Save node to file

Contents

Detail

Detail

Syntax:

Petrel.saveNode(Node,File)

Inputs:

Node [1x1] (struct) : Structure defining the node.File [1x?] (char) : MAT-file to be imported by Petrel.

Examples:

X = 1:3;Y = 1:3;Z = 1:3;

Node = Petrel.makePointSet(X,Y,Z);

Petrel.saveNode(Node,'PointSet.mat');

See also Petrel.loadNode.

Published with MATLAB® R2017b

Page 1085: Support Package for Petrel
Page 1086: Support Package for Petrel

Petrel.setCamera

Set camera in Petrel UI

Contents

Detail

Detail

Syntax:

Petrel.setCamera(Path,CameraPosition,CameraTarget,CameraUpVector,CameraViewAngle,DataAspectRatio)

Inputs:

Path [1x?] (char) : Path of the window in Petrel.CameraPosition [1x3] (double) : Camera position.CameraTarget [1x3] (double) : Camera target.CameraUpVector [1x3] (double) : Camera up vector.CameraViewAngle [1x1] (double) : Camera viewing angle (deg).DataAspectRatio [1x3] (double) : Data aspect ratio.

Examples:

CameraPosition = get(gca,'CameraPosition');CameraTarget = get(gca,'CameraTarget');CameraUpVector = get(gca,'CameraUpVector');CameraViewAngle = get(gca,'CameraViewAngle');DataAspectRatio = get(gca,'DataAspectRatio');

Petrel.setCamera('/Window/3D window 1',CameraPosition,CameraTarget,CameraUpVector,CameraViewAngle,DataAspectRatio);

See also Petrel.getCamera, Petrel.linkCamera, camtarget, campos, camup, camva, daspect.

Published with MATLAB® R2017b

Page 1087: Support Package for Petrel
Page 1088: Support Package for Petrel

Petrel.setNode

Set node in Petrel project

Contents

Detail

Detail

Syntax:

Petrel.setNode(Path,Node)

Inputs:

Path [1x?] (char) : Path of the node in Petrel.Node [1x1] (struct) : Structure defining the node to set.

Examples:

X = 1:3;Y = 1:3;Z = 1:3;

Node = Petrel.makePointSet(X,Y,Z);

Petrel.setNode('/Input/My Point Sets/My Point Set 1',Node);

See also Petrel.getNode, Petrel.addNode, Petrel.makePointSet.

Published with MATLAB® R2017b

Page 1089: Support Package for Petrel
Page 1090: Support Package for Petrel

Petrel.showNode

Show node in Petrel UI

Contents

Detail

Detail

Syntax:

Petrel.showNode(NodePath,WindowPath,IsVisible)

Inputs:

NodePath [1x?] (char) : Path of the node in Petrel.WindowPath [1x?] (char) : Path of the window in Petrel.IsVisible [1x1] (logical) : Is visible.

Examples:

Window = Petrel.addWindow(Petrel.Window.Window3D);

Petrel.showNode('/Input/My Point Sets/My Point Set 1',Window,true);

See also Petrel.addWindow, Petrel.showWindow.

Published with MATLAB® R2017b

Page 1091: Support Package for Petrel
Page 1092: Support Package for Petrel

Petrel.showWindow

Show window in Petrel UI

Contents

Detail

Detail

Syntax:

Petrel.showWindow(Path,IsVisible)

Inputs:

Path [1x?] (char) : Path of the window in Petrel.IsVisible [1x1] (logical) : Is visible.

Examples:

Path = Petrel.findNode('*','*',Petrel.Window.Window3D);

Petrel.showWindow(Path,true);

See also Petrel.showNode.

Published with MATLAB® R2017b

Page 1093: Support Package for Petrel