Jump to content

Recommended Posts

Posted

On my client have backup battery empty and lost all settings MI's Vision V570

How to program settings in non-volatile  memory to restore "factory setting" if lost data?

PS. is nonsense nowadays use volatile memory related battery condition :(

  • MVP 2023
Posted

System bit SB 8 turns on when the battery is low.  I always put a small indicator on the screen for this.

If the settings will never change you can either check the power-up box or put them in a Data Table with the "Part of Project" checked.  You could load them when the PLC powers up.

33 minutes ago, ZebioEE said:

PS. is nonsense nowadays use volatile memory related battery condition :(

We have to deal with the cards we're dealt.  The battery is rated for 7 years and they typically last for 10 years.  Your client will have to change them from time to time.

Joe T.

  • MVP 2023
Posted

You can also save all the Operands to an SD card. You can do this from ladder and it only takes seconds for the operation to complete. You can also save a complete clone file to the SD card but that can take several minutes.

  • MVP 2023
Posted
4 hours ago, ZebioEE said:

PS. is nonsense nowadays use volatile memory related battery condition :(

Wait until your PC won't boot one morning because the bios battery is dead.  Not as uncommon as you think!

  • MVP 2023
Posted
7 hours ago, ZebioEE said:

is nonsense nowadays use volatile memory related battery condition :(

You have probably not seen how many times a dead battery leads to the failure of modern equipment. This cannot be avoided because a forgetful person has to take care of it.

The best day - "dead battery day" is the first day of the week after a long weekend... :)

 

The most important thing for the consumer is the ability to restore the application through the SD card as mentioned above.

When performing an important project, I always make an autocorrector subroutine for parameters that are critical, they are constants in the code or are pulled from the data table stored in flash.

If the battery goes down, as indicated by Joe above, when the machine is turned on and an automatic warning window appears and "Confirm" button must be used.

If the parameters have skyrocketed (at least one of them went beyond the allowed limits and the battery died SB8=1), then their automatic correction also generates a window that says that the battery has already died and the standard parameters are used. There is a warning about this in the user manual that I provide for the machine operator.

P.S. However, one user exceeded all my expectations. After the battery failed, he did not replace it, but only entered the parameters manually (in info mode) with operands printed on paper every time the machine was turned on at the beginning of the week.

This was his solution to the problem - because he was afraid to disassemble the PLC case to replace the battery.

Posted

System bit SB 8 not help because data already lost after week of PLC off.

Use dedicated SD card, an artificial solution, additional  hardware just to fix failure of PLC . Is like add to you TV disel generators.

PC won't boot one morning because the bios battery is dead - But all data safe in CD hard disk!

Data Table with the "Part of Project" checked - Please explain where can do this check.

Posted

Thank you for guidance kratmel .

Of course is an solution, just to fill this "Part of Project" table need

1. program PLC  and make justification with equipments - get operating parameters  and write its down.

2. Fill "Part of Project"  table then program PLC again.

Correct?

  • MVP 2023
Posted

You must configure machine - write needed parameters to part of project DT columns (maybe different data type column needed.  Save DT to PLC write data to DT.

Then configure 'Restore default' button on some settings display and create  rung with restore contact -|P| -  and needed DT read function. Data from DT must overwrite losted data in PLC.

 

  • MVP 2023
Posted
14 hours ago, kratmel said:

This was his solution to the problem - because he was afraid to disassemble the PLC case to replace the battery.

Yikes! Which PLC model?

  • MVP 2023
Posted
3 hours ago, ZebioEE said:

Use dedicated SD card, an artificial solution, additional  hardware just to fix failure of PLC . Is like add to you TV disel generators.

This is silly. You want flash memory to store data in the PLC? Unitronics has supplied the facility for adding flash memory to the PLC. An SD card is just additional flash memory for you to use as needed or as you see fit. Nothing artificial about it.

Posted
55 minutes ago, Gabriel Franco said:

To me, it is simpler to STORE constant values to registers in a "restore to factory" subroutine called whenever you need, rather than use DT with "part of project" which implies operations with database.

Some critical parameters  I write in power up section and reprogram PLC...

 

save.JPG

  • MVP 2023
Posted
3 minutes ago, ZebioEE said:

Some critical parameters  I write in power up section and reprogram PLC...

Any critical value that the programmer knows will not need to be changed by the user should always be set in a power-up. That should be SOP.

Posted
14 minutes ago, Flex727 said:

This is silly. You want flash memory to store data in the PLC? Unitronics has supplied the facility for adding flash memory to the PLC. An SD card is just additional flash memory for you to use as needed or as you see fit. Nothing artificial about it.

I wish  Unitronics  use non-volatile flash memory build in to forgot about this problems.

Instead babysitting with backup battery's. and get silly questions from consumers.

Posted
2 minutes ago, Flex727 said:

Any critical value that the programmer knows will not need to be changed by the user should always be set in a power-up. That should be SOP.

Some values can be set only on site when equipment set up and its not predictable values.

Posted
29 minutes ago, ZebioEE said:

Some values can be set only on site when equipment set up and its not predictable values.

At the end of project comissioning, I use those values as constants in my restore subroutine.

I agree with you about NVM, but RAM is what we have so must take action on it.

  • MVP 2023
Posted
10 hours ago, ZebioEE said:

PC won't boot one morning because the bios battery is dead - But all data safe in CD hard disk!

You've defeated your own argument here.  Your "CD hard disk" ONLY has the data in it because either the PC or you have written data to the disk.  The situation is exactly the same with the PLC.  If you need optimised data to be saved by the system, you need to record it in some way.  And then have the PLC programmed to be able to retrieve it as necessary.  Kratmel has shown you a way of doing it which is very simple and effective, but I do things a little differently.

Perhaps you have not considered the way many people would, perhaps accidentally, use NVM in a PLC.  If it was written to every scan, MTBF would be markedly lower.  Using RAM totally alleviates this issue, but it needs the battery.  I have not personally used a plc without a battery, be it super-cap, rechargeable or standard.  They may be out there, but I'm guessing it is not done much due to potential durability issues.

My systems are 24/7 and constantly create optimised amounts for various parts of the program.  These amounts are written every minute to a data table, and every 24 hours that table is written to the SD card as a new file, not FIFO.  I routinely go through those files remotely or when next on site, and if it is worth changing any power up value to one of the optimised amounts, I do.  Regardless, I have the latest best values, at most 24 hours ago in PLC run time, stored for use in a component that doesn't need a battery.  Ready to reload as necessary by a few simple button pushes.  Hmmmm......that sounds like...clicking the mouse on my computer and opening a file I have saved to be used by a program already installed on the PC, and all of it coming from the "CD hard disk!"  

  • Upvote 1
Posted
On 12/15/2023 at 11:53 PM, Ausman said:

You've defeated your own argument here.  Your "CD hard disk" ONLY has the data in it because either the PC or you have written data to the disk.  The situation is exactly the same with the PLC.  If you need optimised data to be saved by the system, you need to record it in some way.  And then have the PLC programmed to be able to retrieve it as necessary.  Kratmel has shown you a way of doing it which is very simple and effective, but I do things a little differently.

Perhaps you have not considered the way many people would, perhaps accidentally, use NVM in a PLC.  If it was written to every scan, MTBF would be markedly lower.  Using RAM totally alleviates this issue, but it needs the battery.  I have not personally used a plc without a battery, be it super-cap, rechargeable or standard.  They may be out there, but I'm guessing it is not done much due to potential durability issues.

My systems are 24/7 and constantly create optimised amounts for various parts of the program.  These amounts are written every minute to a data table, and every 24 hours that table is written to the SD card as a new file, not FIFO.  I routinely go through those files remotely or when next on site, and if it is worth changing any power up value to one of the optimised amounts, I do.  Regardless, I have the latest best values, at most 24 hours ago in PLC run time, stored for use in a component that doesn't need a battery.  Ready to reload as necessary by a few simple button pushes.  Hmmmm......that sounds like...clicking the mouse on my computer and opening a file I have saved to be used by a program already installed on the PC, and all of it coming from the "CD hard disk!"  

Thank you Ausman for advice on.

is different situations can pop up when have hundreds of consumers happy story and bad story.

Some consumers use sytem > 7 year and not  have problem but some in some countries  have always been issues with electricity cut off, also PLC are very sensible to SD card brand , some time it lost SD card, loose capacity, lost formatting etc.

Best way will be some amount of  NVM build in PLC what can be use way you described.

 

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...

Important Information

This site uses cookies. By clicking I accept, you agree to their use.