support package for petrel

Post on 24-Oct-2021

16 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Support Package for Petrel

Support Package for Petrel

Support Package for Petrel 2.1.0.66

Chad Van Fleet

Chad.VanFleet@mathworks.com

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 ||---------------------------------|-----|-----------|-----|

(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

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

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.

Step 6

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

Published with MATLAB® R2017b

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

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

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.

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

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

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

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,

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

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

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

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

Petrel.Folder.Wells Wells folder

Published with MATLAB® R2017b

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

Petrel.Horizon.Discontinous Discontinous horizon

Petrel.Horizon.Erosional Erosional horizon

Petrel.Horizon.Intermediate Intermediate horizon

Petrel.Horizon.LayerHorizon Layer horizon

Published with MATLAB® R2017b

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 ||---------------------------------|-----|-----------|-----|

(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

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

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

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);

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

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

[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.

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');

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

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

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);

Show the 'GridPropertyDiscrete' node in the window

Petrel.showNode(Path,Window,true);

Published with MATLAB® R2017b

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

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);

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);

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);

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

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

Published with MATLAB® R2017b

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');

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

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;

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

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;

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);

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;

Published with MATLAB® R2017b

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);

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);

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);

Add the SurfacePropertyDiscrete node to the Surface node

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

Published with MATLAB® R2017b

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;

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;

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);

Published with MATLAB® R2017b

Petrel.Domain.DipAngle

Dip angle

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.DipAzimuth

Dip azimuth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.Distance

Distance

Contents

Detail

Detail

Distance [1x?] (char) : Distance

Published with MATLAB® R2017b

Petrel.Domain.Dls

Dogleg severity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.ElevationDepth

Elevation depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.ElevationTime

Elevation time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.GeneralInteger

General integer

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.GeologicalTimescale

Geological time scale

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.MeasuredDepth

Measured depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.Owt

One-way time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.SimulationTime

Simulation time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.Tst

True stratigraphic thickness

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.Tvt

True vertical thickness

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Domain.Twt

Two-way time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Folder.SeismicInterpretation

Seismic interpretation folder

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Folder.SeismicSurvey

Seismic survey folder

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Folder.Wells

Wells folder

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Horizon.Base

Base horizon

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Horizon.Conformable

Conformable horizon

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Horizon.Discontinous

Discontinous horizon

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Horizon.Erosional

Erosional horizon

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Horizon.Intermediate

Intermediate horizon

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Horizon.LayerHorizon

Layer horizon

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.SeismicCube.Path

Path to seismic cube

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.SeismicCube.Value

Seismic cube value

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.SeismicCube.X

Seismic cube X coordinate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.SeismicCube.Y

Seismic cube Y coordinate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.SeismicCube.Z

Seismic cube Z coordinate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

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

Petrel.Template.AboveContact

Above contact

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Acceleration

Acceleration

Contents

Detail

Detail

Acceleration [1x?] (char) : Acceleration

Published with MATLAB® R2017b

Petrel.Template.Acidity

Acidity

Contents

Detail

Detail

Acidity [1x?] (char) : Acidity

Published with MATLAB® R2017b

Petrel.Template.ActiveCellFlag

Cell activity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ActivityCode

Activity code

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Adsorption

Adsorption

Contents

Detail

Detail

Adsorption [1x?] (char) : Adsorption

Published with MATLAB® R2017b

Petrel.Template.AmountOfSubstance

Amount of substance

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.AnnulusPressure

Annulus pressure

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Area

Area

Contents

Detail

Detail

Area [1x?] (char) : Area

Published with MATLAB® R2017b

Petrel.Template.BGFactor

Gas formation volume factor

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BOFactor

Oil formation volume factor

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BWFactor

Water formation volume factor

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BitDepth

Bit depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Bodies

Bodies

Contents

Detail

Detail

Bodies [1x?] (char) : Bodies

Published with MATLAB® R2017b

Petrel.Template.BooleanProperty

Boolean

Contents

Detail

Detail

BooleanProperty [1x?] (char) : Boolean

Published with MATLAB® R2017b

Petrel.Template.BottomHolePressure

Bottom hole pressure

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BottomHoleProppantConcentration

Bottom hole proppant concentration

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BulkModulus

Bulk modulus

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BulkVelocityGas

Gas velocity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BulkVelocityOil

Oil velocity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BulkVelocityWater

Water velocity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.BulkVolume

Bulk volume

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Caliper

Caliper

Contents

Detail

Detail

Caliper [1x?] (char) : Caliper

Published with MATLAB® R2017b

Petrel.Template.CaliperAcoustic

Caliper, acoustic stand-off

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CaliperMechanical

Caliper, mechanical

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CapillaryPressure

Capillary pressure

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CarbonDioxideRate

Carbon dioxide rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CellAngle

Cell angle

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CellDeltaX

Cell X dimension

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CellDeltaY

Cell Y dimension

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CellHeight

Cell height

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CellInsideOut

Cell inside out

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CellTopDepth

Cell top depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CleanFluid

Clean fluid

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CleanFluidRate

Clean fluid rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsArea

Completion area

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsDepth

Completion depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsDiameter

Completion diameter

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsDrainageRadius

Drainage radius

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsPermLength

Permeability-length

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsPiCompressible

PI compressible fluid

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsPiGas

PI gas

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsPiLiquid

PI liquid

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsPiMult

PI multiplier

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CmplsRoughness

Roughness

Contents

Detail

Detail

CmplsRoughness [1x?] (char) : Roughness

Published with MATLAB® R2017b

Petrel.Template.CmplsSkin

Skin

Contents

Detail

Detail

CmplsSkin [1x?] (char) : Skin

Published with MATLAB® R2017b

Petrel.Template.CmplsTransmissiblity

Connection transmissibility

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CoalGasConcentration

Coal gas concentration

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CoalGasVolumePerMass

Coal gas volume per mass

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ComplCasing

Cased

Contents

Detail

Detail

ComplCasing [1x?] (char) : Cased

Published with MATLAB® R2017b

Petrel.Template.ComplGeneral

Completion string

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ComplLiner

Lined

Contents

Detail

Detail

ComplLiner [1x?] (char) : Lined

Published with MATLAB® R2017b

Petrel.Template.ComplPlugbackTotalDepth

Plug back tot. depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ComplTotalDepth

Total depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ComplWellDatum

Well datum

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CompressionalRatio

Compressional modulus

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Conductivity

Conductivity

Contents

Detail

Detail

Conductivity [1x?] (char) : Conductivity

Published with MATLAB® R2017b

Petrel.Template.ConductivityDeep

Conductivity, deep

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ConductivityMedium

Conductivity, medium

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ConductivityShallow

Conductivity, shallow

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ConnectedVolume

Connected volumes

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ConstantMudResistivity

Constant mud resistivity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ConstantWaterResistivity

Constant water resistivity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ConstantWaterSalinity

Constant water salinity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.CorrosionRate

Corrosion rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Deepening

Deepening

Contents

Detail

Detail

Deepening [1x?] (char) : Deepening

Published with MATLAB® R2017b

Petrel.Template.DeltaTime

Delta time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Density

Density

Contents

Detail

Detail

Density [1x?] (char) : Density

Published with MATLAB® R2017b

Petrel.Template.DensityCompensatedBulk

Density, compensated bulk

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DensityDownwardAzim

Density, azimuth downwards

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DensityUpwardAzim

Density, azimuth upwards

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DifferentialTemperature

Differential temperature

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Diffusivity

Diffusivity

Contents

Detail

Detail

Diffusivity [1x?] (char) : Diffusivity

Published with MATLAB® R2017b

Petrel.Template.DipAngle

Dip angle

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DipAzimuth

Dip azimuth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DipClassification

Dip classification

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DipQuality

Dip quality

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Displacement

Displacement

Contents

Detail

Detail

Displacement [1x?] (char) : Displacement

Published with MATLAB® R2017b

Petrel.Template.Distance

Distance

Contents

Detail

Detail

Distance [1x?] (char) : Distance

Published with MATLAB® R2017b

Petrel.Template.DistributionFreq

Distribution frequency

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Dls

Dogleg severity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DownholeTorque

Downhole torque

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Drho

Bulk density correction

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DrillingAzimuth

Drilling azimuth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.DrillingTemperature

Temperature

Contents

Detail

Detail

DrillingTemperature [1x?] (char) : Temperature

Published with MATLAB® R2017b

Petrel.Template.DrillpipeRpm

Angular velocity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Duration

Duration

Contents

Detail

Detail

Duration [1x?] (char) : Duration

Published with MATLAB® R2017b

Petrel.Template.EffectiveStress

Effective stress

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ElevationDepth

Elevation depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ElevationProperty

Elevation general

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ElevationTime

Elevation time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Energy

Energy

Contents

Detail

Detail

Energy [1x?] (char) : Energy

Published with MATLAB® R2017b

Petrel.Template.EnergyDensity

Reservoir energy density

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.EnergyRate

Energy flow rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.EnthalpyRate

Enthalpy flow rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.EquivalentCirculatingDensity

Equiv. circulating density

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ErosionRate

Erosion rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ErosionalVelocity

Erosional velocity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ExtendedElasticImpedance

Extended elastic impedance

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Facies

Facies

Contents

Detail

Detail

Facies [1x?] (char) : Facies

Published with MATLAB® R2017b

Petrel.Template.FaultDisplacement

Fault displacement

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FaultPermeability

Fault permeability

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FaultThickness

Fault thickness

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Faults

Faults

Contents

Detail

Detail

Faults [1x?] (char) : Faults

Published with MATLAB® R2017b

Petrel.Template.FluidInPlaceGas

Gas fluid-in-place

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FluidInPlaceOil

Oil fluid-in-place

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FluidInPlaceWater

Water fluid-in-place

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Fluids

Fluids

Contents

Detail

Detail

Fluids [1x?] (char) : Fluids

Published with MATLAB® R2017b

Petrel.Template.Fluvial

Fluvial facies

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Fraction

Fraction

Contents

Detail

Detail

Fraction [1x?] (char) : Fraction

Published with MATLAB® R2017b

Petrel.Template.FractionalFlow

Fractional flow

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FractureAperture

Fracture aperture

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FractureCompressibility

Fracture compressibility

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FracturePermeability

Fracture permeability

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FracturingJobTime

Fracturing job time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FrictionAngle

Friction angle

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.FromFacies

From facies

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GammaRay

Gamma ray

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GammaRayPotassium

Gamma ray, potassium

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GammaRayThorium

Gamma ray, thorium

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GammaRayUranium

Gamma ray, uranium

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GasFlowRate

Gas flow rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GasGeneration

Gas generation

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GasHeatCapacity

Gas heat capacity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GasOilContact

Gas-oil contact

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GasOilRatio

Gas-oil ratio

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GasViscosity

Gas viscosity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GasWaterContact

Gas-water contact

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GelConcentration

Gel concentration

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GeneralContinuous

General

Contents

Detail

Detail

GeneralContinuous [1x?] (char) : General

Published with MATLAB® R2017b

Petrel.Template.GeneralDerivative

General derivative

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GeneralDiscrete

General discrete

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GeneralInteger

General integer

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GeneralProduction

General production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GeneralTime

General time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.GeologicalTimescale

Geological time scale

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Giip

GIIP

Contents

Detail

Detail

Giip [1x?] (char) : GIIP

Published with MATLAB® R2017b

Petrel.Template.GiipMap

GIIP (map)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HcpvGas

HCPV gas

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HcpvGasMap

HCPV gas (map)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HcpvOil

HCPV oil

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HcpvOilMap

HCPV oil (map)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HeatFlow

Heat flow

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HeatTransferCoefficient

Heat transfer coefficient

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HeatTransmissibility

Heat transmissibility

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HeatTransmissibilityI

Heat transmissibility I

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HeatTransmissibilityJ

Heat transmissibility J

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HeatTransmissibilityK

Heat transmissibility K

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HistoryMatchQualitativeCoarse

History match qualitative coarse

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HistoryMatchQualitativeFine

History match qualitative fine

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HistoryMatchQuantitative

History match quantitative

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HmatchConstant

History match constant quantity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HmatchPolyline

History match polyline quantity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HmatchStepwise

History match stepwise quantity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Holdup

Holdup (volume %)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HoleClassification

Hole classification for polygons

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HookLoad

Hook load

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.HorizonFilterAttribute

Horizon filter attribute

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Horizons

Horizons

Contents

Detail

Detail

Horizons [1x?] (char) : Horizons

Published with MATLAB® R2017b

Petrel.Template.HydrogenIndex

Hydrogen index

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ICDStrength

ICD strength

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ImpedanceAcoustic

Acoustic impedance

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ImpedanceElasticPP

PP elastic-impedance

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ImpedanceElasticPS

PS elastic-impedance

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ImpedanceP

P-impedance

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ImpedanceS

S-impedance

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Inclination

Inclination

Contents

Detail

Detail

Inclination [1x?] (char) : Inclination

Published with MATLAB® R2017b

Petrel.Template.InjectionRateGas

Gas injection rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.InjectionRateOil

Oil injection rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.InjectionRateResvol

Reservoir injection rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.InjectionRateWater

Water injection rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.InsideDiameter

Inside diameter

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Intensity

Intensity

Contents

Detail

Detail

Intensity [1x?] (char) : Intensity

Published with MATLAB® R2017b

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

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

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

Petrel.Template.InversePenetrationRate

Inverse penetration rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.InverseTemperature

Inverse temperature

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.InverseTemperatureSquared

Inverse temperature squared

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.KFactorInTime

K factor (time)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Kfactor

K factor (depth)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Lambda

Lambda

Contents

Detail

Detail

Lambda [1x?] (char) : Lambda

Published with MATLAB® R2017b

Petrel.Template.LambdaTimesRho

Lambda*Rho

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.LiquidConcentration

Liquid concentration

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.LiquidDensity

Liquid density

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Lithologies

Lithologies

Contents

Detail

Detail

Lithologies [1x?] (char) : Lithologies

Published with MATLAB® R2017b

Petrel.Template.LithologyFrac

Lithology fraction

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MFThermalCoupling

Matrix-fracture thermal coupling

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Mass

Mass

Contents

Detail

Detail

Mass [1x?] (char) : Mass

Published with MATLAB® R2017b

Petrel.Template.MassConcentration

Concentration

Contents

Detail

Detail

MassConcentration [1x?] (char) : Concentration

Published with MATLAB® R2017b

Petrel.Template.MassFlowRate

Mass flow rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MatrixFractureCoupling

Matrix-fracture coupling

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MeasuredDepth

Measured depth

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Mobility

Mobility

Contents

Detail

Detail

Mobility [1x?] (char) : Mobility

Published with MATLAB® R2017b

Petrel.Template.MolarDensity

Molar density

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MolarEnthalpy

Molar enthalpy

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MolarMass

Molar mass

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MolarRate

Molar rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MolarVolume

Molar volume

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Money

Money

Contents

Detail

Detail

Money [1x?] (char) : Money

Published with MATLAB® R2017b

Petrel.Template.MotorSpeed

Motor speed

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Mu

Mu

Contents

Detail

Detail

Mu [1x?] (char) : Mu

Published with MATLAB® R2017b

Petrel.Template.MuTimesRho

Mu*Rho

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MudDensity

Mud density

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.MudFlowrate

Mud flow rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.NetGross

Net/Gross

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.NetPay

Net pay

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Neutron

Neutron

Contents

Detail

Detail

Neutron [1x?] (char) : Neutron

Published with MATLAB® R2017b

Petrel.Template.NitrogenRate

Nitrogen rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OilFlowRate

Oil flow rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OilGasRatio

Oil-gas ratio

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OilGeneration

Oil generation

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OilHeatCapacity

Oil heat capacity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OilViscosity

Oil viscosity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OilWaterContact

Oil-water contact

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OpenHole

Open hole

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.OpticalDensity

Optical density

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Owt

One-way time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PatchSet

Fracture set

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Pef

Photoelectric factor

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PenetrationRate

Penetration rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PenetrationRateAvg

Average penetration rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Percent

Percent

Contents

Detail

Detail

Percent [1x?] (char) : Percent

Published with MATLAB® R2017b

Petrel.Template.Perforation

Perforation

Contents

Detail

Detail

Perforation [1x?] (char) : Perforation

Published with MATLAB® R2017b

Petrel.Template.PerforationConnectivity

Perforation connectivity

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Perm

Permeability

Contents

Detail

Detail

Perm [1x?] (char) : Permeability

Published with MATLAB® R2017b

Petrel.Template.PermI

Permeability I

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermIJ

Permeability IJ

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermIK

Permeability IK

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermJ

Permeability J

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermJK

Permeability JK

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermK

Permeability K

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermKR

Relative permeability

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermMF

Permeability matrix-fracture

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermX

Permeability X

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermXY

Permeability XY

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermXZ

Permeability XZ

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermY

Permeability Y

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermYZ

Permeability YZ

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PermZ

Permeability Z

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PoissonRatio

Poissons ratio

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PoreVolumeMultiplier

Pore volume multiplier

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Porosity

Porosity

Contents

Detail

Detail

Porosity [1x?] (char) : Porosity

Published with MATLAB® R2017b

Petrel.Template.PorosityEffective

Porosity - effective

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PorosityTotal

Porosity - total

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Pressure

Pressure

Contents

Detail

Detail

Pressure [1x?] (char) : Pressure

Published with MATLAB® R2017b

Petrel.Template.PressureGradient

Pressure gradient

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PrincipalComponent

Principal component

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.PrincipalStress

Principal stress

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Probability

Probability

Contents

Detail

Detail

Probability [1x?] (char) : Probability

Published with MATLAB® R2017b

Petrel.Template.ProductionGas

Gas production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionLiquid

Liquid production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionMassGas

Gas mass production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionMassOil

Oil mass production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionMassRateGas

Gas mass production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionMassRateOil

Oil mass production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionMassRateWater

Water mass production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionMassWater

Water mass production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionOil

Oil production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionRateGas

Gas production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionRateLiquid

Liquid production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionRateOil

Oil production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionRateResvol

Reservoir production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionRateWater

Water production rate

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionResvol

Reservoir production volume

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionStatus

Producer status

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ProductionWater

Water production

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Proppant

Proppant

Contents

Detail

Detail

Proppant [1x?] (char) : Proppant

Published with MATLAB® R2017b

Petrel.Template.ProppantConcentration

Proppant concentration

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Psonic

P-sonic

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Quality

Quality

Contents

Detail

Detail

Quality [1x?] (char) : Quality

Published with MATLAB® R2017b

Petrel.Template.RSFactor

Solution gas-oil ratio

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.RVFactor

Vapourized oil-gas ratio

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.RecoverableGas

Recoverable gas

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.RecoverableGasMap

Recoverable gas (map)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.RecoverableOil

Recoverable oil

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.RecoverableOilMap

Recoverable oil (map)

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.RecoveryFactor

Recovery factor

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.ReflectionCoeff

Reflection coefficients

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.RegionId

Region

Contents

Detail

Detail

RegionId [1x?] (char) : Region

Published with MATLAB® R2017b

Petrel.Template.RelativeTemperature

Relative temperature

Contents

Detail

Detail

RelativeTemperature [1x?] (char) : Relative temperature

Published with MATLAB® R2017b

Petrel.Template.ReservoirMassDensity

Reservoir mass density

Contents

Detail

Detail

ReservoirMassDensity [1x?] (char) : Reservoir mass density

Published with MATLAB® R2017b

Petrel.Template.Residual

Residual

Contents

Detail

Detail

Residual [1x?] (char) : Residual

Published with MATLAB® R2017b

Petrel.Template.Resistivity

Resistivity

Contents

Detail

Detail

Resistivity [1x?] (char) : Resistivity

Published with MATLAB® R2017b

Petrel.Template.ResistivityDeep

Resistivity, deep

Contents

Detail

Detail

ResistivityDeep [1x?] (char) : Resistivity, deep

Published with MATLAB® R2017b

Petrel.Template.ResistivityMedium

Resistivity, medium

Contents

Detail

Detail

ResistivityMedium [1x?] (char) : Resistivity, medium

Published with MATLAB® R2017b

Petrel.Template.ResistivityMicro

Micro resistivity

Contents

Detail

Detail

ResistivityMicro [1x?] (char) : Micro resistivity

Published with MATLAB® R2017b

Petrel.Template.ResistivityShallow

Resistivity, shallow

Contents

Detail

Detail

ResistivityShallow [1x?] (char) : Resistivity, shallow

Published with MATLAB® R2017b

Petrel.Template.RockCompressibility

Rock compressibility

Contents

Detail

Detail

RockCompressibility [1x?] (char) : Rock compressibility

Published with MATLAB® R2017b

Petrel.Template.RockDensity

Rock density

Contents

Detail

Detail

RockDensity [1x?] (char) : Rock density

Published with MATLAB® R2017b

Petrel.Template.RockDisplacement

Rock displacement

Contents

Detail

Detail

RockDisplacement [1x?] (char) : Rock displacement

Published with MATLAB® R2017b

Petrel.Template.RockHeatCapacity

Rock heat capacity

Contents

Detail

Detail

RockHeatCapacity [1x?] (char) : Rock heat capacity

Published with MATLAB® R2017b

Petrel.Template.RockHeatCapacityTempCoefficient

Rock heat capacity temp. coefficient

Contents

Detail

Detail

RockHeatCapacityTempCoefficient [1x?] (char) : Rock heat capacity temp. coefficient

Published with MATLAB® R2017b

Petrel.Template.RockVolume

Rock volume

Contents

Detail

Detail

RockVolume [1x?] (char) : Rock volume

Published with MATLAB® R2017b

Petrel.Template.SatGas

Gas saturation

Contents

Detail

Detail

SatGas [1x?] (char) : Gas saturation

Published with MATLAB® R2017b

Petrel.Template.SatGasCritical

Critical gas saturation

Contents

Detail

Detail

SatGasCritical [1x?] (char) : Critical gas saturation

Published with MATLAB® R2017b

Petrel.Template.SatHydrocarbons

Saturation hydrocarbons

Contents

Detail

Detail

SatHydrocarbons [1x?] (char) : Saturation hydrocarbons

Published with MATLAB® R2017b

Petrel.Template.SatOil

Oil saturation

Contents

Detail

Detail

SatOil [1x?] (char) : Oil saturation

Published with MATLAB® R2017b

Petrel.Template.SatPressure

Saturation pressure

Contents

Detail

Detail

SatPressure [1x?] (char) : Saturation pressure

Published with MATLAB® R2017b

Petrel.Template.SatSgr

Irr. gas saturation

Contents

Detail

Detail

SatSgr [1x?] (char) : Irr. gas saturation

Published with MATLAB® R2017b

Petrel.Template.SatSgro

Gas saturation, residual oil

Contents

Detail

Detail

SatSgro [1x?] (char) : Gas saturation, residual oil

Published with MATLAB® R2017b

Petrel.Template.SatSwr

Irr. water saturation

Contents

Detail

Detail

SatSwr [1x?] (char) : Irr. water saturation

Published with MATLAB® R2017b

Petrel.Template.SatSwro

Water saturation, residual oil

Contents

Detail

Detail

SatSwro [1x?] (char) : Water saturation, residual oil

Published with MATLAB® R2017b

Petrel.Template.SatWater

Water saturation

Contents

Detail

Detail

SatWater [1x?] (char) : Water saturation

Published with MATLAB® R2017b

Petrel.Template.SatWaterCritical

Critical water saturation

Contents

Detail

Detail

SatWaterCritical [1x?] (char) : Critical water saturation

Published with MATLAB® R2017b

Petrel.Template.Segments

Segments

Contents

Detail

Detail

Segments [1x?] (char) : Segments

Published with MATLAB® R2017b

Petrel.Template.SeismicAnttrack

Seismic - Ant tracking

Contents

Detail

Detail

SeismicAnttrack [1x?] (char) : Seismic - Ant tracking

Published with MATLAB® R2017b

Petrel.Template.SeismicAttenuation

Seismic - Attenuation

Contents

Detail

Detail

SeismicAttenuation [1x?] (char) : Seismic - Attenuation

Published with MATLAB® R2017b

Petrel.Template.SeismicConsistentCurvature

Seismic - Consistent curvature

Contents

Detail

Detail

SeismicConsistentCurvature [1x?] (char) : Seismic - Consistent curvature

Published with MATLAB® R2017b

Petrel.Template.SeismicContrast

Seismic - Contrast

Contents

Detail

Detail

SeismicContrast [1x?] (char) : Seismic - Contrast

Published with MATLAB® R2017b

Petrel.Template.SeismicCorrelationCoefficient

Seismic - Correlation coefficient

Contents

Detail

Detail

SeismicCorrelationCoefficient [1x?] (char) : Seismic - Correlation coefficient

Published with MATLAB® R2017b

Petrel.Template.SeismicCosineOfPhase

Seismic - Cosine of phase

Contents

Detail

Detail

SeismicCosineOfPhase [1x?] (char) : Seismic - Cosine of phase

Published with MATLAB® R2017b

Petrel.Template.SeismicDefault

Seismic (default)

Contents

Detail

Detail

SeismicDefault [1x?] (char) : Seismic (default)

Published with MATLAB® R2017b

Petrel.Template.SeismicDipAngle

Seismic - Dip (angle)

Contents

Detail

Detail

SeismicDipAngle [1x?] (char) : Seismic - Dip (angle)

Published with MATLAB® R2017b

Petrel.Template.SeismicDipAzimuth

Seismic - Dip azimuth

Contents

Detail

Detail

SeismicDipAzimuth [1x?] (char) : Seismic - Dip azimuth

Published with MATLAB® R2017b

Petrel.Template.SeismicDipError

Seismic - Dip error

Contents

Detail

Detail

SeismicDipError [1x?] (char) : Seismic - Dip error

Published with MATLAB® R2017b

Petrel.Template.SeismicDipRatio

Seismic - Dip (ratio)

Contents

Detail

Detail

SeismicDipRatio [1x?] (char) : Seismic - Dip (ratio)

Published with MATLAB® R2017b

Petrel.Template.SeismicEdge

Seismic - Edge

Contents

Detail

Detail

SeismicEdge [1x?] (char) : Seismic - Edge

Published with MATLAB® R2017b

Petrel.Template.SeismicFrequency

Seismic - Frequency

Contents

Detail

Detail

SeismicFrequency [1x?] (char) : Seismic - Frequency

Published with MATLAB® R2017b

Petrel.Template.SeismicGradient

Seismic - Gradient

Contents

Detail

Detail

SeismicGradient [1x?] (char) : Seismic - Gradient

Published with MATLAB® R2017b

Petrel.Template.SeismicLocalFlatness

Seismic - Local flatness

Contents

Detail

Detail

SeismicLocalFlatness [1x?] (char) : Seismic - Local flatness

Published with MATLAB® R2017b

Petrel.Template.SeismicPhase

Seismic - Phase

Contents

Detail

Detail

SeismicPhase [1x?] (char) : Seismic - Phase

Published with MATLAB® R2017b

Petrel.Template.SeismicPolarity

Seismic - Polarity

Contents

Detail

Detail

SeismicPolarity [1x?] (char) : Seismic - Polarity

Published with MATLAB® R2017b

Petrel.Template.SeismicShapeIndex

Seismic - Shape index

Contents

Detail

Detail

SeismicShapeIndex [1x?] (char) : Seismic - Shape index

Published with MATLAB® R2017b

Petrel.Template.SeismicVariance

Seismic - Variance

Contents

Detail

Detail

SeismicVariance [1x?] (char) : Seismic - Variance

Published with MATLAB® R2017b

Petrel.Template.ShaleGougeRatio

Shale gouge ratio

Contents

Detail

Detail

ShaleGougeRatio [1x?] (char) : Shale gouge ratio

Published with MATLAB® R2017b

Petrel.Template.ShearModulus

Shear modulus

Contents

Detail

Detail

ShearModulus [1x?] (char) : Shear modulus

Published with MATLAB® R2017b

Petrel.Template.SimulationTime

Simulation time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.SlidingSleevePositions

Sliding sleeve positions

Contents

Detail

Detail

SlidingSleevePositions [1x?] (char) : Sliding sleeve positions

Published with MATLAB® R2017b

Petrel.Template.Slurry

Slurry

Contents

Detail

Detail

Slurry [1x?] (char) : Slurry

Published with MATLAB® R2017b

Petrel.Template.SlurryDensity

Slurry density

Contents

Detail

Detail

SlurryDensity [1x?] (char) : Slurry density

Published with MATLAB® R2017b

Petrel.Template.SlurryRate

Slurry rate

Contents

Detail

Detail

SlurryRate [1x?] (char) : Slurry rate

Published with MATLAB® R2017b

Petrel.Template.Sonic

Sonic

Contents

Detail

Detail

Sonic [1x?] (char) : Sonic

Published with MATLAB® R2017b

Petrel.Template.SpecificHeatCapacityPerTemp

Specific heat capacity per temperature

Contents

Detail

Detail

SpecificHeatCapacityPerTemp [1x?] (char) : Specific heat capacity per temperature

Published with MATLAB® R2017b

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

Petrel.Template.SpontaneousPotential

Spontaneous potential

Contents

Detail

Detail

SpontaneousPotential [1x?] (char) : Spontaneous potential

Published with MATLAB® R2017b

Petrel.Template.Ssonic

S-sonic

Contents

Detail

Detail

Ssonic [1x?] (char) : S-sonic

Published with MATLAB® R2017b

Petrel.Template.StairstepLayers

IJK layers

Contents

Detail

Detail

StairstepLayers [1x?] (char) : IJK layers

Published with MATLAB® R2017b

Petrel.Template.StairstepSegments

IJK Segments

Contents

Detail

Detail

StairstepSegments [1x?] (char) : IJK Segments

Published with MATLAB® R2017b

Petrel.Template.StandpipePressure

Standpipe pressure

Contents

Detail

Detail

StandpipePressure [1x?] (char) : Standpipe pressure

Published with MATLAB® R2017b

Petrel.Template.Status

Status

Contents

Detail

Detail

Status [1x?] (char) : Status

Published with MATLAB® R2017b

Petrel.Template.Stooip

STOIIP

Contents

Detail

Detail

Stooip [1x?] (char) : STOIIP

Published with MATLAB® R2017b

Petrel.Template.StooipMap

STOIIP (map)

Contents

Detail

Detail

StooipMap [1x?] (char) : STOIIP (map)

Published with MATLAB® R2017b

Petrel.Template.Strain

Strain

Contents

Detail

Detail

Strain [1x?] (char) : Strain

Published with MATLAB® R2017b

Petrel.Template.Strength

Rock strength

Contents

Detail

Detail

Strength [1x?] (char) : Rock strength

Published with MATLAB® R2017b

Petrel.Template.Strings

Strings

Contents

Detail

Detail

Strings [1x?] (char) : Strings

Published with MATLAB® R2017b

Petrel.Template.SummaryData

Summary data

Contents

Detail

Detail

SummaryData [1x?] (char) : Summary data

Published with MATLAB® R2017b

Petrel.Template.SurfaceAttribute

Surface attribute

Contents

Detail

Detail

SurfaceAttribute [1x?] (char) : Surface attribute

Published with MATLAB® R2017b

Petrel.Template.SurfaceTension

Surface tension

Contents

Detail

Detail

SurfaceTension [1x?] (char) : Surface tension

Published with MATLAB® R2017b

Petrel.Template.SurfaceWeightOnBit

Weight on bit

Contents

Detail

Detail

SurfaceWeightOnBit [1x?] (char) : Weight on bit

Published with MATLAB® R2017b

Petrel.Template.T2Distribution

T2 distribution

Contents

Detail

Detail

T2Distribution [1x?] (char) : T2 distribution

Published with MATLAB® R2017b

Petrel.Template.Temperature

Absolute temperature

Contents

Detail

Detail

Temperature [1x?] (char) : Absolute temperature

Published with MATLAB® R2017b

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

Petrel.Template.ThermalConductivityGas

Gas phase thermal conductivity

Contents

Detail

Detail

ThermalConductivityGas [1x?] (char) : Gas phase thermal conductivity

Published with MATLAB® R2017b

Petrel.Template.ThermalConductivityMF

Thermal conductivity matrix-fracture

Contents

Detail

Detail

ThermalConductivityMF [1x?] (char) : Thermal conductivity matrix-fracture

Published with MATLAB® R2017b

Petrel.Template.ThermalConductivityOil

Oil phase thermal conductivity

Contents

Detail

Detail

ThermalConductivityOil [1x?] (char) : Oil phase thermal conductivity

Published with MATLAB® R2017b

Petrel.Template.ThermalConductivityRock

Thermal conductivity of rock

Contents

Detail

Detail

ThermalConductivityRock [1x?] (char) : Thermal conductivity of rock

Published with MATLAB® R2017b

Petrel.Template.ThermalConductivitySolid

Solid phase thermal conductivity

Contents

Detail

Detail

ThermalConductivitySolid [1x?] (char) : Solid phase thermal conductivity

Published with MATLAB® R2017b

Petrel.Template.ThermalConductivityWater

Water phase thermal conductivity

Contents

Detail

Detail

ThermalConductivityWater [1x?] (char) : Water phase thermal conductivity

Published with MATLAB® R2017b

Petrel.Template.ThermalGradient

Thermal gradient

Contents

Detail

Detail

ThermalGradient [1x?] (char) : Thermal gradient

Published with MATLAB® R2017b

Petrel.Template.ThermalResistance

Thermal resistance

Contents

Detail

Detail

ThermalResistance [1x?] (char) : Thermal resistance

Published with MATLAB® R2017b

Petrel.Template.ThicknessDepth

Thickness depth

Contents

Detail

Detail

ThicknessDepth [1x?] (char) : Thickness depth

Published with MATLAB® R2017b

Petrel.Template.ThicknessProperty

Thickness general

Contents

Detail

Detail

ThicknessProperty [1x?] (char) : Thickness general

Published with MATLAB® R2017b

Petrel.Template.ThicknessTime

Thickness time

Contents

Detail

Detail

ThicknessTime [1x?] (char) : Thickness time

Published with MATLAB® R2017b

Petrel.Template.TimeStratigraphy

Time stratigraphy

Contents

Detail

Detail

TimeStratigraphy [1x?] (char) : Time stratigraphy

Published with MATLAB® R2017b

Petrel.Template.Torque

Torque

Contents

Detail

Detail

Torque [1x?] (char) : Torque

Published with MATLAB® R2017b

Petrel.Template.TotalStress

Total stress

Contents

Detail

Detail

TotalStress [1x?] (char) : Total stress

Published with MATLAB® R2017b

Petrel.Template.TransMult

Transmissibility multiplier

Contents

Detail

Detail

TransMult [1x?] (char) : Transmissibility multiplier

Published with MATLAB® R2017b

Petrel.Template.TransX

Transmissibility I direction

Contents

Detail

Detail

TransX [1x?] (char) : Transmissibility I direction

Published with MATLAB® R2017b

Petrel.Template.TransY

Transmissibility J direction

Contents

Detail

Detail

TransY [1x?] (char) : Transmissibility J direction

Published with MATLAB® R2017b

Petrel.Template.TransZ

Transmissibility K direction

Contents

Detail

Detail

TransZ [1x?] (char) : Transmissibility K direction

Published with MATLAB® R2017b

Petrel.Template.TransformationRatio

Transformation ratio

Contents

Detail

Detail

TransformationRatio [1x?] (char) : Transformation ratio

Published with MATLAB® R2017b

Petrel.Template.TreatingPressure

Treating pressure

Contents

Detail

Detail

TreatingPressure [1x?] (char) : Treating pressure

Published with MATLAB® R2017b

Petrel.Template.Tst

True stratigraphic thickness

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Tvt

True vertical thickness

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Twt

Two-way time

Contents

Detail

Detail

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

Published with MATLAB® R2017b

Petrel.Template.Uncertainty

Uncertainty

Contents

Detail

Detail

Uncertainty [1x?] (char) : Uncertainty

Published with MATLAB® R2017b

Petrel.Template.UptimeFraction

Uptime fraction

Contents

Detail

Detail

UptimeFraction [1x?] (char) : Uptime fraction

Published with MATLAB® R2017b

Petrel.Template.UserCont2

Happy day

Contents

Detail

Detail

UserCont2 [1x?] (char) : Happy day

Published with MATLAB® R2017b

Petrel.Template.V0Factor

V0 factor

Contents

Detail

Detail

V0Factor [1x?] (char) : V0 factor

Published with MATLAB® R2017b

Petrel.Template.VaporizationHeat

Vaporization heat

Contents

Detail

Detail

VaporizationHeat [1x?] (char) : Vaporization heat

Published with MATLAB® R2017b

Petrel.Template.Variance

Variance

Contents

Detail

Detail

Variance [1x?] (char) : Variance

Published with MATLAB® R2017b

Petrel.Template.Velocity

Velocity

Contents

Detail

Detail

Velocity [1x?] (char) : Velocity

Published with MATLAB® R2017b

Petrel.Template.VelocityAverage

Average velocity

Contents

Detail

Detail

VelocityAverage [1x?] (char) : Average velocity

Published with MATLAB® R2017b

Petrel.Template.VelocityInterval

Interval velocity

Contents

Detail

Detail

VelocityInterval [1x?] (char) : Interval velocity

Published with MATLAB® R2017b

Petrel.Template.VelocityP

P-velocity

Contents

Detail

Detail

VelocityP [1x?] (char) : P-velocity

Published with MATLAB® R2017b

Petrel.Template.VelocityRatio

P/S velocity ratio

Contents

Detail

Detail

VelocityRatio [1x?] (char) : P/S velocity ratio

Published with MATLAB® R2017b

Petrel.Template.VelocityS

S-velocity

Contents

Detail

Detail

VelocityS [1x?] (char) : S-velocity

Published with MATLAB® R2017b

Petrel.Template.VelocityStack

Stacking velocity

Contents

Detail

Detail

VelocityStack [1x?] (char) : Stacking velocity

Published with MATLAB® R2017b

Petrel.Template.VerticalSection

Vertical section

Contents

Detail

Detail

VerticalSection [1x?] (char) : Vertical section

Published with MATLAB® R2017b

Petrel.Template.VitriniteReflectance

Vitrinite reflectance

Contents

Detail

Detail

VitriniteReflectance [1x?] (char) : Vitrinite reflectance

Published with MATLAB® R2017b

Petrel.Template.VolumeBulkMap

Bulk volume (map)

Contents

Detail

Detail

VolumeBulkMap [1x?] (char) : Bulk volume (map)

Published with MATLAB® R2017b

Petrel.Template.VolumeNet

Net volume

Contents

Detail

Detail

VolumeNet [1x?] (char) : Net volume

Published with MATLAB® R2017b

Petrel.Template.VolumeNetMap

Net volume (map)

Contents

Detail

Detail

VolumeNetMap [1x?] (char) : Net volume (map)

Published with MATLAB® R2017b

Petrel.Template.VolumePore

Pore volume

Contents

Detail

Detail

VolumePore [1x?] (char) : Pore volume

Published with MATLAB® R2017b

Petrel.Template.VolumePoreMap

Pore volume (map)

Contents

Detail

Detail

VolumePoreMap [1x?] (char) : Pore volume (map)

Published with MATLAB® R2017b

Petrel.Template.Vshale

VShale

Contents

Detail

Detail

Vshale [1x?] (char) : VShale

Published with MATLAB® R2017b

Petrel.Template.WaterCompressibility

Water compressibility

Contents

Detail

Detail

WaterCompressibility [1x?] (char) : Water compressibility

Published with MATLAB® R2017b

Petrel.Template.WaterCut

Water cut

Contents

Detail

Detail

WaterCut [1x?] (char) : Water cut

Published with MATLAB® R2017b

Petrel.Template.WaterFlowRate

Water flow rate

Contents

Detail

Detail

WaterFlowRate [1x?] (char) : Water flow rate

Published with MATLAB® R2017b

Petrel.Template.WaterGasRatio

Water-gas ratio

Contents

Detail

Detail

WaterGasRatio [1x?] (char) : Water-gas ratio

Published with MATLAB® R2017b

Petrel.Template.WaterHeatCapacity

Water heat capacity

Contents

Detail

Detail

WaterHeatCapacity [1x?] (char) : Water heat capacity

Published with MATLAB® R2017b

Petrel.Template.WaterViscosibility

Water viscosibility

Contents

Detail

Detail

WaterViscosibility [1x?] (char) : Water viscosibility

Published with MATLAB® R2017b

Petrel.Template.WaterViscosity

Water viscosity

Contents

Detail

Detail

WaterViscosity [1x?] (char) : Water viscosity

Published with MATLAB® R2017b

Petrel.Template.Wavelet

Wavelet

Contents

Detail

Detail

Wavelet [1x?] (char) : Wavelet

Published with MATLAB® R2017b

Petrel.Template.WellBoreRadius

Well bore radius

Contents

Detail

Detail

WellBoreRadius [1x?] (char) : Well bore radius

Published with MATLAB® R2017b

Petrel.Template.WellIndex

Well Index

Contents

Detail

Detail

WellIndex [1x?] (char) : Well Index

Published with MATLAB® R2017b

Petrel.Template.YoungsModulus

Young''s modulus

Contents

Detail

Detail

YoungsModulus [1x?] (char) : Young''s modulus

Published with MATLAB® R2017b

Petrel.Template.ZFactor

Z factor

Contents

Detail

Detail

ZFactor [1x?] (char) : Z factor

Published with MATLAB® R2017b

Petrel.Template.ZoneLog

Zone log from ''Well Tops''

Contents

Detail

Detail

ZoneLog [1x?] (char) : Zone log from ''Well Tops''

Published with MATLAB® R2017b

Petrel.Template.ZonesAllK

Layers

Contents

Detail

Detail

ZonesAllK [1x?] (char) : Layers

Published with MATLAB® R2017b

Petrel.Template.ZonesMain

Main zones

Contents

Detail

Detail

ZonesMain [1x?] (char) : Main zones

Published with MATLAB® R2017b

Petrel.Template.ZonesSub

Zones

Contents

Detail

Detail

ZonesSub [1x?] (char) : Zones

Published with MATLAB® R2017b

Petrel.Template.ZonesSubHierarchy

Zones (hierarchy)

Contents

Detail

Detail

ZonesSubHierarchy [1x?] (char) : Zones (hierarchy)

Published with MATLAB® R2017b

Petrel.Type.CheckShot

CheckShot type

Contents

Detail

Detail

CheckShot [1x?] (char) : Check shot type

Published with MATLAB® R2017b

Petrel.Type.Function

Function type

Contents

Detail

Detail

Function [1x?] (char) : Function type

Published with MATLAB® R2017b

Petrel.Type.Grid

Grid type

Contents

Detail

Detail

Grid [1x?] (char) : Grid type

Published with MATLAB® R2017b

Petrel.Type.GridPropertyContinuous

Continuous grid property type

Contents

Detail

Detail

GridPropertyContinuous [1x?] (char) : Continuous grid property type

Published with MATLAB® R2017b

Petrel.Type.GridPropertyDiscrete

Discrete grid property type

Contents

Detail

Detail

GridPropertyDiscrete [1x?] (char) : Discrete grid property type

Published with MATLAB® R2017b

Petrel.Type.PointSet

Point set type

Contents

Detail

Detail

PointSet [1x?] (char) : Point set type

Published with MATLAB® R2017b

Petrel.Type.PointSetPropertyContinuous

Continuous point set property type

Contents

Detail

Detail

PointSetPropertyContinuous [1x?] (char) : Continuous point set property

Published with MATLAB® R2017b

Petrel.Type.PointSetPropertyDiscrete

Discrete point set property type

Contents

Detail

Detail

PointSetPropertyDiscrete [1x?] (char) : Discrete point set property type

Published with MATLAB® R2017b

Petrel.Type.PolylineSet

Polyline set type

Contents

Detail

Detail

PolylineSet [1x?] (char) : Polyline set type

Published with MATLAB® R2017b

Petrel.Type.PolylineSetPropertyContinuous

Continuous polyline set property type

Contents

Detail

Detail

PolylineSetPropertyContinuous [1x?] (char) : Continuous polyline set property type

Published with MATLAB® R2017b

Petrel.Type.PolylineSetPropertyDiscrete

Discrete polyline set property type

Contents

Detail

Detail

PolylineSetPropertyDiscrete [1x?] (char) : Discrete polyline set property type

Published with MATLAB® R2017b

Petrel.Type.SeismicCube

Seismic cube type

Contents

Detail

Detail

SeismicCube [1x?] (char) : Seismic cube type

Published with MATLAB® R2017b

Petrel.Type.SeismicHorizon

Seismic horizon type

Contents

Detail

Detail

SeismicHorizon [1x?] (char) : Seismic horizon type

Published with MATLAB® R2017b

Petrel.Type.Surface

Surface type

Contents

Detail

Detail

Surface [1x?] (char) : Surface type

Published with MATLAB® R2017b

Petrel.Type.SurfacePropertyContinuous

Continuous surface property type

Contents

Detail

Detail

SurfacePropertyContinuous [1x?] (char) : Continuous surface property type

Published with MATLAB® R2017b

Petrel.Type.SurfacePropertyDiscrete

Discrete surface property type

Contents

Detail

Detail

SurfacePropertyDiscrete [1x?] (char) : Discrete surface property type

Published with MATLAB® R2017b

Petrel.Type.Well

Well type

Contents

Detail

Detail

Well [1x?] (char) : Well type

Published with MATLAB® R2017b

Petrel.Type.WellLog

Well log type

Contents

Detail

Detail

WellLog [1x?] (char) : Well log type

Published with MATLAB® R2017b

Petrel.Type.Workflow

Workflow type

Contents

Detail

Detail

Workflow [1x?] (char) : Workflow type

Published with MATLAB® R2017b

Petrel.Window.Function

Function window

Contents

Detail

Detail

Function [1x?] (char) : Function window

Published with MATLAB® R2017b

Petrel.Window.Interpretation

Interpretation window

Contents

Detail

Detail

Interpretation [1x?] (char) : Interpretation window

Published with MATLAB® R2017b

Petrel.Window.Intersection

Intersection window

Contents

Detail

Detail

Intersection [1x?] (char) : Intersection window

Published with MATLAB® R2017b

Petrel.Window.Map

Map window

Contents

Detail

Detail

Map [1x?] (char) : Map window

Published with MATLAB® R2017b

Petrel.Window.Window2D

2D window

Contents

Detail

Detail

Window2D [1x?] (char) : 2D window

Published with MATLAB® R2017b

Petrel.Window.Window3D

3D window

Contents

Detail

Detail

Window3D [1x?] (char) : 3D window

Published with MATLAB® R2017b

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

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

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

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

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

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

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

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

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

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

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

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

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.

Published with MATLAB® R2017b

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Petrel.registerPlugin

Register MATLAB plugin with Petrel

Contents

Detail

Detail

Syntax:

Petrel.registerPlugin()

Examples:

Petrel.registerPlugin();

Published with MATLAB® R2017b

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

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

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

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

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

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

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

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

top related