zaky Posted August 5, 2024 Posted August 5, 2024 I don't have string signal that identify my situation (run or stop) SO I tried to make simple condition like this. but the goal is to be able to distinguish which one is Run signal which one is Stop signal so on the property set I'll be having Start StDev value Or Stop StDev value need help
Thorsten Vogt Posted August 6, 2024 Posted August 6, 2024 Hi zaky, if I understood you correctly you want to have one condition that generates capsules with properties for the current mode of operation (Start / Stop) and the stddev of a signal. You can achieve this by combining the two conditions into a single condition and calculate the stddev on that condition. Before combining the conditions you can set a property containing the mode of operation. The use of removeLongerThan() is necessary as setProperty needs a condition with a maximum duration. $runMode.setProperty('Mode', 'Start') .combineWith($stop.setProperty('Mode', 'Stop')) .removeLongerThan(1mo) .setProperty('StdDev', $signal, stdDev()) Regards, Thorsten
zaky Posted August 6, 2024 Author Posted August 6, 2024 yes it worked. but I only see the properties (pH) in Filling. what if I want to add properties (Temperature) but in Reaction section only?
zaky Posted August 6, 2024 Author Posted August 6, 2024 I tried 2 ways already 1st one, is nesting on the same formula, 2nd one, is made a new formula to set property. need help thanks
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now