📅  最后修改于: 2020-12-28 01:34:53             🧑  作者: Mango
AutoCAD中的计算器命令用于执行不同的操作。这些被称为CAL命令。我们可以使用CAL表达式执行算术和几何运算。
它也被称为命令提示符计算器。
在命令提示符下,输入CAL,然后输入CAL表达式。
对于进行中的命令,首先,我们需要输入'CAL命令(在CAL之前加撇号),然后需要输入表达式以计算前面的命令。
我们可以以不同的方式在命令提示符和计算器上使用CAL命令,如下所示:
我们可以使用计算器找到有效面积。
让我们考虑一个例子。下图给出了示例:
要找到上面显示的阴影区域,我们需要从矩形中减去圆的面积。
步骤如下:
该值保存在存储器中。现在,单击计算器底部的“关闭”按钮。
有两种使用CAL的方法。
1.通过执行计算。
下面列出了执行计算的步骤:
Operator | Description |
---|---|
+ | Add For example, [a, b] + [x, y] + [a + x, b + y] |
– | Subtracts |
/ | Divide |
^ | Exponentials |
* | Multiplication In combination, it also determines the scalar product. For example, a*[w, x, y]=[a*w, a*x, a*y] |
( ) | Group Expressions |
& | Vector product |
pi | The value of pi |
Sqr () | To find the square of a number. For example, sqr (4) |
Sqrt () | It signifies the square root of a number. For example, sqr (9) |
round () | It is used to round off the value to the nearest integer. |
sin (angle) | Sine of the angle. We can also specify cos, tan, etc. other than sin. |
asin() | It signifies the arcsine of a number. The value of the number inside the bracket should be between -1 and 1. |
ln log |
Natural log Base-10 log |
exp exp10 |
Natural exponent Base exponent |
r2d () | Conversion of radian to degrees |
d2r () | Conversion of degrees to radians |
注意:上表中使用的变量的值应放在方括号内。
让我们考虑一些计算。
同样,我们可以执行任何计算。
公式: pi + 3.5 ^ 2 + 8/2
输出:
公式: 3 * [6/3 + 5 * 2 +1-0.5,1,2]
输出:
2.在其他命令中使用CAL
'CAL(带撇号)写在命令行上,供其他命令使用。
让我们考虑一个例子。
我们可以在计算器中指定命令来执行不同的功能。例如,找到一条线或一个三角形的中心。
下表列出了这些命令:
Command | Description |
---|---|
(end+end)/2 Or mee |
It is used to determine the mid-point of a line or a mid-point between the two endpoints. |
(end+end+end)/3 | It is used to determine the mid-point of a triangle or between three endpoints. |
dee (dist(end, end)) | It is used to determine the distance between two endpoints. |
vee | It is used to determine the vector from two endpoints. |
vee1 | It is used to determine the unit vector from two endpoints. |
ille | It is used to determine the intersection of two points determined by four endpoints. |
nee | It is used to determine the unit vector in the XY plane and normal to the two endpoints. |
rad | It is used to determine the radius of the selected circle or the polyline arc. |
让我们考虑一个指定线中心的示例。
下面列出了指定直线中点的步骤:
不要终止线路。该线应为连续形式。
我们可以使用getvar函数来读取相应系统变量的值。
它写为:
getvar(变量名)
要获得当前视口中视图中心的点,我们可以指定以下命令:
getvar(viewctr)
要将值转换为另一个单位,请使用“ cvunit”命令。
AutoCAD中的命令写为:
cvunit(值,从_unit到_unit )
例如,要将10英寸转换为厘米,命令将写为:
cvunit(10,英寸,厘米)
输出如下图所示: