Jump to content

help converting to unitronics v280 (flowmeter)


Recommended Posts

  • MVP 2023

I have to say that we're not understanding what you're confused about. Kratmel explained it well. If you only need to display the value on the HMI screen, then you don't need any additional math - just display with 1 decimal place. If you need m3 for other purposes within your program, then divide by 10.

Link to comment
Share on other sites

  • MVP 2023

This all comes down to how many impulses does your encoder send for 1000l.  From what you are saying, my understanding of all of this is that at present you get ONE impulse for ONE cubic metre.

If that is the case, you have no way of deriving 100 litres accurately.  You need a different encoding device with smaller resolution.

If your flow rate is fairly constant you could  do a guess by doing maths on time elapsed between each 1000l pulse, displaying the result on screen, and then modifying the result on each new pulse, but the result won't be a perfect match to what's actually happening.  It would be theoretical.

cheers, Aus

Link to comment
Share on other sites

  • MVP 2023

I'm at a loss. Maybe it's just the language barrier, but your posts make it look like you're having difficulty with grade school math. There are probably better resources for that than this forum.

Perhaps you're having trouble understanding how to deal with decimals when you have integer operands? If so, typically you use the number as though it didn't have a decimal and just account for it at the end, keeping track of where it should be through subsequent operations. For displaying on the HMI screen, nothing needs to be done as the HMI variable has the ability to display the decimal for you.

Link to comment
Share on other sites

1 hour ago, Pedro Borges said:

 

Thanks, I was trying to do like this.

but I can't put the value 0.1 in the DUnS# variable

I want it to increment the totalizer from 0.1 to 0.1 which is  1 impulse

função.PNG

thats because you can no use floating values unless you are using float type registers and float math funcions.

 

However, as mentioned before you may not need to use floats, places just work with integers and select the decimal position on the HMI for the visualization.

Use integers so DW10 will be using 1 increments, then you select display DW10 with the decimal point on the first digit so DW stores 1 but displays .1, if it stores 10 it will be displayed 1.0 if it stores 100 it will be displaying 10.0 and so on.

image.png.79a5d2d06732b27b8224fb2d8cecdb5e.png

 

As you should know computers doesn't like small numbers it is easy for them to just to use integers and shift the decimal point. But if you really need to work with small numbers there is the floating type

 

 

Link to comment
Share on other sites

  • MVP 2023

Pedro, if you need to learn something new on a PLC, before you try to write your own program you experiment with the unit and programming features to get a full understanding of how the new concepts you want to use work.  Once you've gained that understanding and knowledge, assembling your program is fairly easy.

Your questions are frustrating/puzzling for our volunteer  forum members because they show that you have not done the above steps.  You are asking the forum for very basic knowledge that is easily learnt from the Help files and examples.  Your question "how did you get to that part in the visiologic program?" is such a thing, because how to display numbers on the screen is one of the first things you should learn.

I also suggest that you open Visilogic and browse through all the various menus and icons, and if you find something you want to use but don't understand, it will be referenced in Help.  This will give you a much better background of how to use everything.

Link to comment
Share on other sites

  • MVP 2023

That is a feature that allows you to create an operand description for multiple consecutive operands. Be sure you have unused operands within the range you are creating, then enter the number of consecutive operands you are creating and press OK. You can also number them consecutively by clicking the Insert Number button. This can be found in the Help file under Operand Descriptions.

I strongly recommend watching some of the Unitronics YouTube videos for basic learning of VisiLogic, reviewing the Help file, and reviewing the example projects that came with your VisiLogic installation.

Link to comment
Share on other sites

  • MVP 2023

If you put a "Numeric/Number" into the HMI screen, the "dw menu" you can't find will open.  This is why I say you have not done basics.  It would appear that you haven't ever put a numeric onto the HMI, which is a fundamental reason to be using a PLC with an inbuilt HMI.

The feature you DID find is not necessary for what you want to do.  The insertion of a number onto the screen lets you adjust the decimal point location of that number, amongst many other things you can do to it.

Numeric.jpg.42918b567eed20ce0d73eb4a7d9272a4.jpg

Link to comment
Share on other sites

  • MVP 2023
1 hour ago, Pedro Borges said:

Just put the value one in the field that I made the blue rectangle in the image and 0.1 appears when it receives 1 impulse ?

Yes.

 

1 hour ago, Pedro Borges said:

thanks,  but this variable also goes to the Scada 

The SCADA should also have the ability to either divide by 10 or otherwise convert to 1 decimal place.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...