This documentation is out of date.

The new version of the documentation is here: https://cannylogic.com/docs

Difference between revisions of "Logical OR"

From CANNY Wiki
Jump to: navigation, search
[unchecked revision][unchecked revision]
m (minor edits)
 
(7 intermediate revisions by 3 users not shown)
Line 6: Line 6:
 
!colspan="2" style="background-color:#AFEEEE;"|Appearance
 
!colspan="2" style="background-color:#AFEEEE;"|Appearance
 
|-
 
|-
|colspan="2" align="center" style="padding:10px;"|[[Изображение:5_3_3_2.png]]
+
|colspan="2" align="center" style="padding:10px;"|[[File:5_3_3_2.png]]
 
|-
 
|-
 
!colspan="2" style="background-color:#AFEEEE;"|Symbol  
 
!colspan="2" style="background-color:#AFEEEE;"|Symbol  
Line 14: Line 14:
 
!colspan="2" style="background-color:#AFEEEE;"|Group
 
!colspan="2" style="background-color:#AFEEEE;"|Group
 
|-
 
|-
|colspan="2" align="center"|[[Built-in Function Blocks | Logical operators]]
+
|colspan="2" align="center"|[[Built-in Function Blocks#Logical operators | Logical operators]]
 
|-
 
|-
 
!colspan="2" style="background-color:#AFEEEE;"|Inputs
 
!colspan="2" style="background-color:#AFEEEE;"|Inputs
 
|-
 
|-
 
|style="padding-left:1em;"|value X:
 
|style="padding-left:1em;"|value X:
|style="padding-left:1em;"|[[Язык CFD#Данные|логический]]
+
|style="padding-left:1em;"|[[CFD Language#Data|Logical]]
 
|-
 
|-
 
|style="padding-left:1em;"|value Y:
 
|style="padding-left:1em;"|value Y:
|style="padding-left:1em;"|[[Язык CFD#Данные|логический]]
+
|style="padding-left:1em;"|[[CFD Language#Data|Logical]]
 
|-
 
|-
 
!colspan="2" style="background-color:#AFEEEE;"|Outputs
 
!colspan="2" style="background-color:#AFEEEE;"|Outputs
 
|-
 
|-
 
|style="padding-left:1em;"|Result:
 
|style="padding-left:1em;"|Result:
|style="padding-left:1em;"|[[Язык CFD#Данные|логический]]
+
|style="padding-left:1em;"|[[CFD Language#Data|Logical]]
 
|-
 
|-
 
!colspan="2" style="background-color:#AFEEEE;"|Version [[CANNY Lab]]
 
!colspan="2" style="background-color:#AFEEEE;"|Version [[CANNY Lab]]
 
|-
 
|-
|colspan="2" align="center"|с 0.6b
+
|colspan="2" align="center"|from 0.6b
 
|}
 
|}
 
</div>
 
</div>
Line 37: Line 37:
 
<div style="min-height:100%;display:block;">
 
<div style="min-height:100%;display:block;">
 
<div style="float:left;width:70px;">
 
<div style="float:left;width:70px;">
[[Изображение:5_3_3_1.png|left|Иконка]]
+
[[File:5_3_3_1.png|left|Icon]]
 
</div>
 
</div>
  
 
<div>
 
<div>
Logical addition (disjunction). Set the output as a result of logical addition of input values.
+
A function block used for logical addition (disjunction). Sets the output value to the result of logical addition of input values.
 
</div>
 
</div>
 
</div>
 
</div>
 
<br clear="left">
 
<br clear="left">
 
In other words, the output is:
 
In other words, the output is:
*"1" if and only if at any of the inputs is "1".,
+
*"1" if and only if any of the inputs is "1".,
*"0" if and only if at all the inputs is "0".
+
*"0" if and only if all the inputs are "0".
  
Thus, [//en.wikipedia.org/wiki/Truth_table Truth table] operation is as follows:
+
Thus, [//en.wikipedia.org/wiki/Truth_table Truth table] of the operation is as follows:
  
 
{|border="1" style="border-collapse:collapse;"
 
{|border="1" style="border-collapse:collapse;"
Line 76: Line 76:
 
== Features ==
 
== Features ==
  
Using blocks [[Converter 8-to-1]] and [[Converter 16-to-1]] can construct a diagram 'Logical OR' for several values from a fewer functional blocks.
+
Use function blocks [[Converter 8-to-1]] and [[Converter 16-to-1]] to construct a 'Logical OR' scheme for multiple values using fewer function blocks.
  
 
== Examples ==
 
== Examples ==
 
{|
 
{|
|[[Изображение:5_3_3_3.png|thumb|Пример 1]]
+
|[[File:5_3_3_3.png|thumb|Example 1]]
 
|
 
|
|[[Изображение:5_3_3_4.png|thumb|Пример 2]]
+
|[[File:5_3_3_4.png|thumb|Example 2]]
 
|}
 
|}
  
Line 92: Line 92:
 
[[Exclusive OR]]
 
[[Exclusive OR]]
  
[[Справочник по встроенным функциональным блокам | Встроенные функциональные блоки]]
+
[[Built-in_Function_Blocks | Built-in Function Blocks]]

Latest revision as of 17:10, 13 December 2020

Appearance
5 3 3 2.png
Symbol
X || Y
Group
Logical operators
Inputs
value X: Logical
value Y: Logical
Outputs
Result: Logical
Version CANNY Lab
from 0.6b
Icon

A function block used for logical addition (disjunction). Sets the output value to the result of logical addition of input values.


In other words, the output is:

  • "1" if and only if any of the inputs is "1".,
  • "0" if and only if all the inputs are "0".

Thus, Truth table of the operation is as follows:

value X value Y Result
0 0 0
0 1 1
1 0 1
1 1 1

Features

Use function blocks Converter 8-to-1 and Converter 16-to-1 to construct a 'Logical OR' scheme for multiple values using fewer function blocks.

Examples

Example 1
Example 2

See also

Negation

Logical AND

Exclusive OR

Built-in Function Blocks