- Weatherford Knowledge Base
- P#
- Neighborhood 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
AggregateIfTagged()
Returns the aggregated value according to the specified aggregation type of the specified PetroVisor signal, only when the specified tag is active at the current time step.
AggregateIfTagged(Expression, string, string)
Syntax:
Expression: Numeric expression
String: Tag Name
String: Aggregation Type
Arguments:
- Data expression (signal with units)
- Tag Name
- Aggregation type
- Min
- Max
- Sum
- Average
- First
- Last
- Count
- Median
- Standard Deviation
- Variance
- Percentile
- Option - optional, if this argument is not specified, option Always will be used
- Start: returns on aggregated value at the time point of tag range start date
- End: returns on aggregated value at the time point of tag range end date
- Always: returns the same aggregated value for every time point of tag range
- Condition: returns one aggregated value at the time step it is located - not valid for aggregation types: Sum, Average, Median, and Count
Example:
AggregateIfTagged("oil production rate" in "m3/h", "Water coning", "Average")
AggregateIfTagged("oil production rate" in "m3/h", "Sand problem", "Sum", "Start")