Skip to main content
12-Amethyst
August 17, 2022
Solved

Integer Problem

  • August 17, 2022
  • 1 reply
  • 1539 views

Hello do anyone have a work around for the following problem,

 

i am trying to multiply the terms within Tidx by Phi and b, of which i get the correct result (when undefined). when i try to define that to put into another equation it pull through an error. 

 

BG_9641770_0-1660731224422.png

 

Sheet attached

 

thank you 

Best answer by terryhendicott

Hi,

T*pi*b is a vector multiplied by two scalars it does not need to be vectorized. with the arrow over the top.

There are two ways to do the vector multiplication by the scalars.

First is to do it element by element using the idx range variable.  idx needs to appear on both side of the equation

Second is to do it just as a vector multiplication. 

The two equations in the image result in the same variable Av

Capture.JPG

1 reply

21-Topaz II
August 17, 2022

Hi,

T*pi*b is a vector multiplied by two scalars it does not need to be vectorized. with the arrow over the top.

There are two ways to do the vector multiplication by the scalars.

First is to do it element by element using the idx range variable.  idx needs to appear on both side of the equation

Second is to do it just as a vector multiplication. 

The two equations in the image result in the same variable Av

Capture.JPG

12-Amethyst
August 17, 2022

Thanks Terry