preCICE v3.1.2
Loading...
Searching...
No Matches
InvertDirectionAction.py
Go to the documentation of this file.
2# Inverts direction of target data values
3#
4def performAction(time, targetData):
5 for i in range(targetData.size):
6 targetData[i] = -targetData[i]
performAction(time, targetData)