Jump to content

Nested IF Statement in SEEQ


Recommended Posts

Hi All,

I'm trying to perform Multiple IF Statement in seeq but don't have any clarity as to how should i perform.

Can anyone tell me how should i apply it.

I have gone through the Below links as well which are already available in seeq forum,it seems they're not helping either.

Link :- 

 

Regards,

Jitesh Vachheta

 

 

 

 

 

Link to comment
Share on other sites

Hi Jitesh,

I tried to develop a nested if with the following logic:

if (temp > 66)
{
    if (rh > 50)
    {
        temp = 1/temp    ;
    }
    else if (wetbulb < 75)
    {
        temp *= 2; 
    }
}

If no condition is met, the temperature should not be modified.

image.png.d685cd18f0945745c63f44eb32a176a7.png

image.thumb.png.bd2c6877085a277946acab766f29e2f5.png

However it would be great if you could provide an example of what you are trying to achieve.

Regards,

Thorsten

 

  • Like 3
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...