- Weatherford Knowledge Base
- P#
- String Functions
-
Getting Started
-
Customer Training
-
Customer Success
-
Updates
-
Production Optimization
-
Artificial Lift Optimization
-
Completion Optimization
-
Environmental, Social & Governance
-
Development, Acquisition & Divestitures
-
Enhanced Oil Recovery
-
Admin
-
P#
- Getting Started with P#
- Data Cleansing
- String Functions
- Scenario Functions
- Regression Functions
- Placeholder Functions
- Mathematical Functions
- Logic Functions
- Entities Function
- Moving Window Functions
- Time and Date Functions
- Statistical Functions
- Economic Functions
- Data Handling
- Additional Functions
- Directional Functions
- Machine Learning Functions
- DCA Functions
- Neighborhood Functions
-
Packages
CurrentDataGridCell()
Returns the cell name of the specified data grid where current entity is located.
By default the function uses signals 'surface x-coordinate', 'surface y-coordinate' and coordinates unit 'm', alternatively the functions allows 3 more arguments to specify different signals/unit to be used as coordinates.
Syntax
CurrentDataGridCell(string dataGridName)
CurrentDataGridCell(string dataGridName, string coordinatesUnitName,
string signalXCoordinateName, string signalYCoordinateName)
- dataGridName: Name of Data Grid
- coordinatesUnitName: name of coordinates
- signalXCoordinateName: signal for x coordinate
- signalYCoordinateName: signal for y coordinate
Example
CurrentDataGridCell("Data grid 17")
CurrentDataGridCell("Data grid 17", "m", "alternative x - coordinate",
"alternative y - coordinate")