loss in weight

cetsoca

Member
Join Date
Mar 2013
Location
Manila
Posts
2
Hi,

I've been looking for a good S7 5.5 program for loss i weight system. I have two bins. They both have a rotary feeder. This bin will be used for mixing using ratio control. One of the bin has load cells giving me 4-20mA. I need to get the loss in weight to measure the flow rate of one bin. Please help
 
If a very high level of accuracy is not required then one way to calculate loss in weight would be as follows:

With the help of a cyclic Timer and "Move" instruction move the analog value obtained from the 4-20 ma input to a register every 1 second.Then use a "Subtract" instruction to subtract the value in the register from the current input value. This will give you the loss in weight since the last second. Instead of 1 second you can set it at whatever maximum time you want the loss in weight to be calculated in reference to.That is, if you want the loss in weight to be calculated with respect to the weight recorded a maximum of 5 seconds ago then set the timer at 5 seconds.​
 
Last edited:
thank you,

the question is after one minute the process value from the 4-40mA will be moved to the register. So the value on the register where i moved the value will be the same as the process value every one minute and the difference will be Zero? am I right?
I was thinking on getting the value and move it to a register so that it will become previous and subtract it to a new value after a span of time? I just dont know how to do it?

Thanks for your help, maybe i,m not getting your instructions right please help me on this
 
You have to first decide what you want to use as your reference.

If you just want total loss in weight from initial value just move the value to the register in the beginning once and then subtract the current values from that to get the updated loss in weight every I/O scan.

But my method was if you wanted the rate of loss in weight.Then for only for one scan every time period that you set, you will get the value as 0 and from the next scan itself you will get the loss since the last move execution.

But you can even avoid this 0 by using a logic similar to this:
|              T1
| M +------+
|--|/|------| TON |
| | 1sec |
| +------+
|
|
| T1 +--------+
|--| |---+--| MOV |
| | | ip to |
| | |Rgstr |
| | +--------+
| |
| | M
| +-----(S)----
|
| T2
| M +------+
|--| |------| TON |
| | 1sec |
| +------+
|
| T2 +--------+
|--| |---+--| SUB |
| | | Rgstr- |
| | | ip |
| | +--------+
| |
| | M
| +-----(R)----

The above logic updates the value of loss in weight approximately every 2 seconds. Set the time values according to the update rate needed by you.
 

Similar Topics

how can gravimetric (loss in weight) be implemented, if we have two Siwarex U modules? are these modules only for weighing? or do they have the...
Replies
1
Views
1,984
Hi all, I am building a loss in weight system for one of our 3 layer extruders. I am using a S7 CPU. I have a question about the sampling time...
Replies
8
Views
3,356
I am putting in a system that will use a feed screw, 9" 1/2 flighted screw, to feed product into a piece of equipment. The flow MUST be...
Replies
6
Views
5,105
We have a feeder that blends a dry partitioning agent into our pellets prior to packaging to prevent massing. Today we are just running a small...
Replies
1
Views
3,298
Hi, new member here. I am working on a loss-in-weight feed system, and will have a 4-20mA input indicating the weight of the feeder (a volumetric...
Replies
12
Views
6,463
Back
Top Bottom