zaky Posted August 5 Share Posted August 5 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 Link to comment Share on other sites More sharing options...
Thorsten Vogt Posted August 6 Share Posted August 6 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 Link to comment Share on other sites More sharing options...
zaky Posted August 6 Author Share Posted August 6 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? Link to comment Share on other sites More sharing options...
zaky Posted August 6 Author Share Posted August 6 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 Link to comment Share on other sites More sharing options...
zaky Posted August 6 Author Share Posted August 6 Oops. sorry Worked. ! I tried this. thanks Link to comment Share on other sites More sharing options...
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