LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

For / While loop first execution

Why don't you run the VI with debugging mode ON? Click the bulb in the toolbar and then run. There you will see, what happens.

Greets, Dave
0 Kudos
Message 11 of 21
(639 Views)

Hello cwhwfebruaryeleventh,

 

I admit, I also had my difficulties with the FB node, when it was introduced. But it depends on your intuition whether you get used to it or not. So, give it a try.

 

I made a VI which contrasts the two approaches - FB node and Shift Register:

 

FB node - Shift Register comparison (ScrSht).png

 

Run it with Light Bulb on and compare. Everything is as expected.

 

 

Greets, Dave
Message 12 of 21
(632 Views)

Of course FB nodes can to a lot more (not sure if that helps explaining them).

 

You can move it's init to higher level structures.

You can put the write in a deeper structure.

wiebeCARYA_0-1695890920822.png

You can show the 'enable' input, making it conditional.

You can program the delay.

You can choose when it initializes.

wiebeCARYA_1-1695891092282.png

 

I often prefer SR, simply because there are less strings (options) attached. They're older as well, so they have a bias for my understanding.

0 Kudos
Message 13 of 21
(619 Views)

You are right, and that's all cool stuff. But this is also possible with shift registers (to be honest, I'm not exactly sure about this, since I didn't know the "delay" feature). But I prefer wires, there is less magic and I can see, where the data goes and where it is altered.

 

This is in my opinion a question of taste and I don't want to open this discussion right here (seems off-topic for the TO's question).

So let's finish this comparison-question here.

Greets, Dave
0 Kudos
Message 14 of 21
(614 Views)

@daveTW wrote:

You are right, and that's all cool stuff. But this is also possible with shift registers (to be honest, I'm not exactly sure about this, since I didn't know the "delay" feature). 


You can't do this with just a shift register. You'd need to actually program that functionality.

 


@daveTW wrote:

 But I prefer wires, there is less magic and I can see, where the data goes and where it is altered.


I'd go for simpler and easier to understand. 9/10 that's a shift register for me (but again, I'm biased toward the old stuff).

 


@daveTW wrote:

This is in my opinion a question of taste and I don't want to open this discussion right here (seems off-topic for the TO's question).


I can't really tell what your opinion is though 😁.

 

AFAIC, the topic is answered and as long as the FBN\SR stuff is constructive, why not continue?

 

I'm not having a flame war here. I don't even really have a preference.

 

 

BTW: Yes, SR can have a delay ('extract' the left wide of the SR):

wiebeCARYA_0-1695892241911.png

You'd need to initialize all or none of the left outsize terminals. You have access to all delayed items, something a FBN doesn't have.

0 Kudos
Message 15 of 21
(609 Views)

I did see the init value but moving the init into higher level structures is confusing

I dont really get the enable but could learn more by playing with it

similarly i dont see how to delay it

also i noticed i could move the node to the upper wire instead of lower and it functioned how i expected/wanted

in my LV for everyone book, the next few pages described how similar it is the a shift register so i probably could have waited/kept reading and answered my own question but good to have it 'on the line'

 

cwhw112_1-1696290806509.png

thank you for all the feedback

0 Kudos
Message 16 of 21
(567 Views)

FB node on bottom wire

if you start with enable on everything works like normal (incrementing 9, 19, 29), turn it off and it increments once the first time then none (30,30,30,30), turn it back on and it increments as if just first opened incrementing 9, then 10, 10, 10

 

FB node on top wire

enable on

10, 20

enable off

21,21,21

enable on

30, 40

0 Kudos
Message 17 of 21
(564 Views)

@cwhw112 wrote:

I did see the init value but moving the init into higher level structures is confusing

I dont really get the enable but could learn more by playing with it

similarly i dont see how to delay it

also i noticed i could move the node to the upper wire instead of lower and it functioned how i expected/wanted


We are graphical programmers and sometime have trouble deciphering ambiguous text. You talk a lot about various "it"s. We would do better with a more graphical description.

 

The feedback delay is set in the properties.

 

altenbach_1-1696342661882.png

 

0 Kudos
Message 18 of 21
(551 Views)

Since someone referenced how you can expand down the left side of a shift register (to utilize values from previous loop iterations), I assume the FB node delay must then be number of iterations where no output comes from the FB node

0 Kudos
Message 19 of 21
(537 Views)

@cwhw112 wrote:

I assume the FB node delay must then be number of iterations where no output comes from the FB node


I recommend to avoid assumptions and look at the help!

 

There will ALWAYS be an output, but it might just be the default or initialized value. A wire cannot have "no output". (Even "empty string", zero, or NaN are "values".)

0 Kudos
Message 20 of 21
(533 Views)