- Weatherford Knowledge Base
- P#
- Additional 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
WorkspaceValue()
Returns the value of the specified workspace value name. If workspace value does not exist, error is raised.
Syntax
- WorkspaceValue(name, default)
- name: name of workspace value
- default: default value
WorkspaceValue(string settingName)
Returns numeric value of the specified workspace value name. If workspace value does not exist, null value is returned
Example
WorkspaceValue("Well Radius")
WorkspaceValue(string settingName, defaultValue)
Returns numeric value of the specified workspace value name. If workspace value does not exist, the specified default value is returned.
Example
WorkspaceValue("Well Radius", 200)
WorkspaceValue("Well Radius", Empty)
WorkspaceValue(string settingName, defaultValue, string unitName)
Returns numeric value of the specified workspace value name in specified unit. If workspace value does not exist, the specified default value is returned. When workspace value and requested unites are different, the workspace value is converted to requested unit.
Example
WorkspaceValue("Well Radius", 200, "m")