Value#
- class pyedb.grpc.database.utility.value.Value#
Bases:
float,ansys.edb.core.utility.value.ValueClass defining Edb Value properties.
Overview#
Adds two Edb Values. |
|
Return value+self. |
|
Subtracts two Edb Values. |
|
Return value-self. |
|
Multiplies two Edb Values. |
|
Return value*self. |
|
Divides two Edb Values. |
|
Return value/self. |
Import detail#
from pyedb.grpc.database.utility.value import Value
Method detail#
- Value.__add__(other)#
Adds two Edb Values.
- Value.__radd__(other)#
Return value+self.
- Value.__sub__(other)#
Subtracts two Edb Values.
- Value.__rsub__(other)#
Return value-self.
- Value.__mul__(other)#
Multiplies two Edb Values.
- Value.__rmul__(other)#
Return value*self.
- Value.__truediv__(other)#
Divides two Edb Values.
- Value.__rtruediv__(other)#
Return value/self.
- Value.sqrt()#
Square root of the value.
- Value.log10()#
Base-10 logarithm of the value.
- Value.sin()#
Sine of the value.
- Value.cos()#
Cosine of the value.
- Value.asin()#
Arcsine of the value.
- Value.acos()#
Arccosine of the value.
- Value.tan()#
Tangent of the value.
- Value.atan()#
Arctangent of the value.