DotProductComp#

DotProductComp performs a dot product between two compatible inputs. It may be vectorized to provide the result at one or more points simultaneously.

\[ c_i = \bar{a}_i \cdot \bar{b}_i \]

DotProductComp Options#

The default vec_size is 1, providing the dot product of \(a\) and \(b\) at a single point. The lengths of \(a\) and \(b\) are provided by option length.

Other options for DotProductComp allow the user to rename the input variables \(a\) and \(b\) and the output \(c\), as well as specifying their units.

OptionDefaultAcceptable ValuesAcceptable TypesDescription
a_nameaN/A['str']The variable name for input vector a.
a_unitsN/AN/A['str']The units for vector a.
always_optFalse[True, False]['bool']If True, force nonlinear operations on this component to be included in the optimization loop even if this component is not relevant to the design variables and responses.
b_namebN/A['str']The variable name for input vector b.
b_unitsN/AN/A['str']The units for vector b.
c_namecN/A['str']The variable name for output vector c.
c_unitsN/AN/A['str']The units for vector c.
distributedFalse[True, False]['bool']If True, set all variables in this component as distributed across multiple processes
length3N/A['int']The length of vectors a and b
run_root_onlyFalse[True, False]['bool']If True, call compute, compute_partials, linearize, apply_linear, apply_nonlinear, and compute_jacvec_product only on rank 0 and broadcast the results to the other ranks.
vec_size1N/A['int']The number of points at which the dot product is computed

DotProductComp Constructor#

The call signature for the DotProductComp constructor is:

DotProductComp.__init__(**kwargs)[source]

Initialize the Dot Product component.

DotProductComp Usage#

There are often situations when numerous products need to be computed, essentially in parallel. You can reduce the number of components required by having one DotProductComp perform multiple operations. This is also convenient when the different operations have common inputs.

The add_product method is used to create additional products after instantiation.

DotProductComp.add_product(c_name, a_name='a', b_name='b', c_units=None, a_units=None, b_units=None, vec_size=1, length=3)[source]

Add a new output product to the dot product component.

Parameters:
c_namestr

The name of the vector product output.

a_namestr

The name of the first vector input.

b_namestr

The name of the second input.

c_unitsstr or None

The units of the output.

a_unitsstr or None

The units of input a.

b_unitsstr or None

The units of input b.

vec_sizeint

The number of points at which the dot vector product should be computed simultaneously. The shape of the output is (vec_size,).

lengthint

The length of the vectors a and b. Their shapes are (vec_size, length).

DotProductComp Example#

In the following example DotProductComp is used to compute instantaneous power as the dot product of force and velocity at 100 points simultaneously. Note the use of a_name, b_name, and c_name to assign names to the inputs and outputs. Units are assigned using a_units, b_units, and c_units. Note that no internal checks are performed to ensure that c_units are consistent with a_units and b_units.

import numpy as np
import openmdao.api as om

n = 24

p = om.Problem()

dp_comp = om.DotProductComp(vec_size=n, length=3, a_name='F', b_name='v', c_name='P',
                            a_units='N', b_units='m/s', c_units='W')

p.model.add_subsystem(name='dot_prod_comp', subsys=dp_comp,
                     promotes_inputs=[('F', 'force'), ('v', 'vel')])

p.setup()

p.set_val('force', np.random.rand(n, 3))
p.set_val('vel', np.random.rand(n, 3))

p.run_model()

# Verify the results against numpy.dot in a for loop.
expected = []
for i in range(n):
    a_i = p.get_val('force')[i, :]
    b_i = p.get_val('vel')[i, :]
    expected.append(np.dot(a_i, b_i))

    actual_i = p.get_val('dot_prod_comp.P')[i]
    rel_error = np.abs(expected[i] - actual_i)/actual_i
    assert rel_error < 1e-9, f"Relative error: {rel_error}"

print(p.get_val('dot_prod_comp.P', units='kW'))
[0.00059075 0.00047964 0.00113738 0.00048052 0.00076688 0.00078282
 0.00145208 0.00044694 0.00098398 0.0003992  0.00055129 0.0003834
 0.00191078 0.00125777 0.00026999 0.00077091 0.00077687 0.0007949
 0.00045658 0.00023645 0.00052574 0.00037353 0.00083838 0.00090386]

DotProductComp Example with Multiple Products#

When defining multiple products:

  • An input name in one call to add_product may not be an output name in another call, and vice-versa.

  • The units and shape of variables used across multiple products must be the same in each one.

n = 24

p = om.Problem()

dp_comp = om.DotProductComp(vec_size=n, length=3,
                            a_name='F', b_name='d', c_name='W',
                            a_units='N', b_units='m', c_units='J')

dp_comp.add_product(vec_size=n, length=3,
                    a_name='F', b_name='v', c_name='P',
                    a_units='N', b_units='m/s', c_units='W')

p.model.add_subsystem(name='dot_prod_comp', subsys=dp_comp,
                      promotes_inputs=[('F', 'force'), ('d', 'disp'), ('v', 'vel')])

p.setup()

p.set_val('force', np.random.rand(n, 3))
p.set_val('disp', np.random.rand(n, 3))
p.set_val('vel', np.random.rand(n, 3))

p.run_model()

# Verify the results against numpy.dot in a for loop.
expected_P = []
expected_W = []
for i in range(n):
    a_i = p.get_val('force')[i, :]

    b_i = p.get_val('disp')[i, :]
    expected_W.append(np.dot(a_i, b_i))

    actual_i = p.get_val('dot_prod_comp.W')[i]
    rel_error = np.abs(actual_i - expected_W[i])/actual_i
    assert rel_error < 1e-9, f"Relative error: {rel_error}"

    b_i = p.get_val('vel')[i, :]
    expected_P.append(np.dot(a_i, b_i))

    actual_i = p.get_val('dot_prod_comp.P')[i]
    rel_error = np.abs(expected_P[i] - actual_i)/actual_i
    assert rel_error < 1e-9, f"Relative error: {rel_error}"

print(p.get_val('dot_prod_comp.W', units='kJ'))
[0.00030196 0.00104392 0.00051261 0.00017029 0.00189365 0.00038775
 0.00075003 0.00093453 0.0001007  0.00150707 0.00133961 0.00130139
 0.00022605 0.00056928 0.00035626 0.00083759 0.0010749  0.00045652
 0.00169419 0.0003561  0.00133066 0.00077584 0.00114775 0.00076983]
print(p.get_val('dot_prod_comp.P', units='kW'))
[0.00076691 0.00067392 0.00067789 0.00075334 0.00059977 0.00017273
 0.00024046 0.00075098 0.00076696 0.00091002 0.00177598 0.00077056
 0.00050324 0.00040692 0.00061204 0.00100174 0.00066295 0.00051754
 0.00087384 0.00053322 0.00116126 0.00168806 0.00063709 0.00084824]