~~NOCACHE~~
====== LamaPLC: Simatic TIA Portal know-how ======
{{ :simatic:lama_head.png?120|lamaPlc.com}}
I predict that in the chapter, I will write the descriptions in my own words, as if I were trying to explain things to a friend. The description may not be professional this way, but my goal is for anyone who reads to understand what is described.
I have quite a lot of experience (more than 20 years) with Simatic systems, based on which I plan to develop this site.
If you have a specific question or request, please let me know! > [[:impressum|Impressum]]
===== Management of TIA Portals with different versions =====
{{anchor:tia_diff}}
As a development engineer, I have to work with several different versions of TIA-Portal at the same time. I test the latest (currently 20), and develop new projects in 18. And I need to be able to open the old projects somehow. In theory, several TIA versions can exist on the machine at the same time, but in the case of WinCC (especially in the case of WinCC professional) this is not true. On my machine, only the current version always runs //"directly"//, and the rest are available on a virtual machine. Apparently, the V18 running on the current machine cannot open the older V15, so when I try to connect to the CPU online, I get the following error message:
{{:simatic:tiamess1.png?600|Management of TIA Portals with different versions}}
In this case, I have two options:
1.) Delete the old V15 project from the CPU and overwrite it with the current V18 version. This solution can be implemented if:
* I'm pretty sure the version ported on PC (V15->V18) is DEFINITELY the same as the CPU version
* I have the opportunity to test the new version locally on the CPU
* I have a save from the old (V15) CPU version
2.) First connect ON-LINE with the PC to the old (V15) TIA Portal, save it and modify / repair it.
Second, if I can test the new version on the CPU, then download the ported V18 version to the CPU. In many cases, the focus is on the possibility of testing, and that's where the possibility of porting fails. "**Don't touch a working system!**" - this is usually the basic principle, so the old (V15) version remains on the CPU even after possible modifications and downloads. In this case, however, it is good to have several versions of TIA Portal on your PC that can be used simultaneously.
The use of a virtual machine is a big help in this. I use **[[https://www.vmware.com/products/workstation-pro.html|VmWare]]**, a program available at a relatively normal price, its operation is very stable. I have saved several virtual machines simultaneously from various TIA portals, I always open the one that can //"talk"// to the CPU.
{{:simatic:tiamess2.png|I have saved several virtual machines simultaneously from various TIA portals}}
I always have a current //"empty"// Windows machine (//"one"// in the picture above). I install the current TIA version on it. For example, in the case of V15, type "tia 15 download" into Google. this will give you the download path, in this case [[https://support.industry.siemens.com/cs/products?pnid=14666&search=%20%22TIA%20Portal%22%2C%20%22Trial%20Download%22&dtp=Download&mfn=ps&o=DefaultRankingDesc&lc=de-WW|this]].
On the virtual machine, look for CD/DVD (SATA) in the settings and set the path to the downloaded TIA Portal ISO file here:
{{:simatic:tiamess5.png|CD/DVD (SATA) in the settings}}
When we open the VmWare image, the DVD drive automatically opens the ISO file and we can start the installation:
{{:simatic:tiamess6.png|DVD drive open}}
//Important: If the virtual machine is not shut down properly (this often happens to me), its lock //"remains"// and does not allow you to open the machine again, for example://
{{:simatic:tiamess3.png|lock "remains"}}
In this case, the locking directory must be deleted in the directory of the given virtual machine:
{{:simatic:tiamess4.png|lock "remains" gone}}
And, tadaaam, you can open the VmWare image.
===== FC / FB description =====
==== FC: function ====
{{anchor:fc}}
FCs are programming blocks that do not require static variables, that is, they do not need internal information that would be stored from one cycle to another. It is therefore not necessary to assign data blocks, i.e. DBs, to FCs.
In the references, I denote FCs as follows: [[:simatic:tia_knowhow#fc|_FC_]]
for example: [[:simatic:tia_knowhow#fc|_FC_]] Result := **ABS** (Value);
I repeat because it is important: The internal variables of the FC are valid only within one cycle, they lose their values for the next cycle. If you need to store information, use the FB or call DB, merkel.
=== Add new FC ===
{{:simatic:add_new_fc.png|Add new FC}}
* double click to "Add new block"
* chose "Function"
* type a new name
==== FB: function blocks ====
{{anchor:fb}}
FBs are a bit more complex modules than FCs. FBs are able to define cyclical variables, these are "static" variables. These are not actually stored in the FB, but will be assigned a datablock (DB) to each FB and it will store these variables. These DBs should be called IDBs (instant datablocks) because, unlike global DBs, they are assigned to a specific FB. In addition to storing variables, IDBs are also suitable for storing embedded FBs, this will be discussed later. The IDB will be assigned to a given SC during the first call.
In the references, I denote FBs as follows: [[:simatic:tia_knowhow#fc|_FB_]]
for example: [[:simatic:tia_knowhow#fc|_FB_]]
RetVal ([[simatic:typedef#int|INT]]):= BLKMOV
(SRCBLK := source block ([[simatic:typedef#variant|VARIANT]]);
DSTBLK => destination block ([[simatic:typedef#variant|VARIANT]]);
ENO => operation enable
);
=== Add new FB ===
{{:simatic:add_new_fb.png|Add new FB}}
* double click to "Add new block"
* chose "Function block"
* type a new name
==== FC / FB variable types ====
When we open the newly created Fc or FB (FB in the example) we will see the following image:
{{:simatic:fc_fb_var_types.png|FC / FB variable types}}
Field reports:
^Name^FC / FB^description|
|**Input**| FC and FB |Variables read by modules.|
|**Output**| FC and FB |Variables write by modules.|
|**InOut**| FC and FB |Variables read and then written back by modules. Changes made to the module are reflected in the outputs.|
|**Static**| FB only |static variables: their value is retained because they are stored in the IDB assigned to the FB. If you open the IDB, you can follow the change in the value of the variables there.|
|**Temp**| FC and FB |Temporary variables: they can only be used within the given cycle, they will lose their value at the time of another call.|
|**Constant**| FC and FB |Constant values: their value must not change.|
|**Return**| FC only |the return value of the function, which is the name of the function. In the case of an external call: \\ retval: = Function_name ();|
==== Call FCs ====
Calling FCs is easier:
- the part of the program (FC, FB or OB) from which the FC is to be called must be opened.
- drag-and-drop the FC from the **"instructions"** window, or simply plug it in. For example, after indentation, "LN" FC looks like this: //LN (_real_in_)//
- you need to know, for example [[:simatic:scl_commands#ln|from here]] that the "LN" FC is calling floating-point numbers, ie REAL or LREAL.
- the return value must also be given, eg: out:= LN(in); where in and out are REAL.
==== Call FBs ====
{{anchor:call_fb}}
When calling FBs, we have two options:
- each invited sub_FB receives its own IDB
- sub_FBs are treated as an embedded function and their data area will be "taped" to the IDB of the calling FB.
{{:simatic:fb_call_1.png|Call FB 2 methods}}
Let's see this through examples, let's take one of the most commonly used methods, TON:
First method, call with separate IDBs:
|< 100% 65% 35% >|
|{{:simatic:fb_call_2.png|}}|Using two TON FBs, both calling their own IDBs|
|{{:simatic:fb_call_3.png|}}|Content of one of the IDBs|
Second method, call embedded FBs:
|< 100% 65% 35% >|
|{{:simatic:fb_call_4.png|}}|In the case of embedding, the functions must be called from the "static" block of the calling FB (just type "TON" for the "data type". FBs must be called in the program in much the same way, of course the DB call must be omitted.|
|{{:simatic:fb_call_5.png|}}|The image shows the data of the embedded FBs in the IDB of the calling FB. The great advantage of this method is that the program is easy to import / export / copy, as you only need one FB definition.|
===== Switch off "optimization" attribute of DBs =====
{{anchor:db_opt}}
{{anchor:kill_opt}}
By default, the TIA portal turns **on** the //"optimization"// attribute of DBs, which means that the order of variables in DBs is automatically optimized.
In many cases, this causes serious problems when the given variables have to remain in predefined positions, such as OPC, or typically any similar communication (Modbus, PN, ..) DB. For example, the [[:simatic:scl_commands#blkmov|BLKMOV]] command does not work with optimized DBs either.
To deactivate, right-click on the DB and select **Properties...** and then **Attributes**:
{{:simatic:opt_db_out.png|The "optimization" attribute of DBs}}
The **"optimized block access"** attribute in the menu must be turned **off**.
For generated DBs, the //{S7_Optimized_Access: = 'TRUE'}// entry should be modified as follows: **{S7_Optimized_Access: = 'FALSE'}**.
===== Import source code to the TIA portal =====
{{anchor:import}}
| 1: Double click to: "**Add new external file**" by "**External source files**" menu \\ 2: Choose files and open|{{:simatic:import_1.png|Import source code to the TIA portal}}|
| 3: right click to the file \\ 4: choose "**Generate blocks from file**" \\ 5: IF the message "**blocks can be overwriten**" comming: press OK. \\ 6: Enjoy the code!|
\\
===== Troubleshooting in the TIA Portal =====
{{anchor:error}}
This is perhaps the "favorite" pastime of programmers. Errors are divided into Systematic and Semantic errors. Systematic are consistently repeated but formally correct errors that the compiler cannot //"protect"//, the programmer must find their cause. \\
Semantic error is simpler, the compiler also //"notices"// this. It is typically displayed as follows:{{:simatic:s7_error.png|TIA error icon}}. The TIA-portal compiere also indicates warnings, as follows: {{:simatic:s7_warning.png|TIA warning icon}} These do not prevent the compilation and download of the program, they only draw attention to possible causes of errors, for example data conversions where data may be lost. A typical error report on the TIA portal looks like this:
{{ :simatic:tia_error_1.png |TIA report}}
In the event of an error, the program automatically opens the //"Compile"// status window to review the errors. The location and presumed cause of the error/errors is indicated here. In this case, a typing error is indicated, and the location of the error in the code is indicated by the compiler with a red underline. At the bottom of the list, the program also displays warnings for some conversions, but these are only warning signals, they do not hinder the translation and download.
There are cases when the compiler cannot reveal the location or cause of the error, or the program throws a "strange" error message (I will copy this here the next time I encounter it). This error mainly occurs when you switch between online and offline status several times and make changes to the program in the process. In such cases, it is easiest to recompile the entire program and perform a full download:
{{ :simatic:tia_error_2.png |TIA SW compile all}}
//Right click on the PLC -> compile -> Software (rebuild all)//. Caution, since this means a complete download, the PLC must normally be switched to STOP (and then restarted) for this operation.
\\
{{tag>simatic s7 tia_portal fc function fb function_block switch_off_db_optimization troubleshooting}}
\\
This page has been accessed for: Today: {{counter|today}}, Until now: {{counter|total}}