Response Types

There are two types of responses in Adams Insight:
Scalar

Scalar Response

A scalar response is a type of response which returns a single value of interest.
Response 01 = R_01 (f1, f2, f3, ... fn)
This function could be a linear or higher order function. The following example demonstrates a quadratic response with three factors. The Adams Insight Fit utility computes the constant and coefficients as follows:
R_01 (f1, f2, f3) = a
+ (b * f1) + (c * f2) + (d * f3)
 
+ (e * f1 * f2) + (f * f1 * f3) + (g * f2 * f3)
 
+(h * f1^2) + (i * f2^2) + (j * f3^2)
where a is constant and b ... j are the coefficients.

Composite Response

A composite response consists of N number of scalar responses. When evaluated together, this group of scalar responses can produce a continuous representation of a measurement. A composite response enables you to reserve more than one column per response in the work space matrix. Traditionally you would expect one column per response in the work space matrix when responses represent a scalar value for each Trial. By altering the Columns field in the response attribute form you can reserve any number of additional columns. These Columns are then named <response abbr> (0), <response abbr> (1), <response abbr> (2), ... <response abbr> (n). Composite response member elements could be used to store polynomial representation of a curve by putting the constant and subsequent coefficients in the respective columns.
For example, the following composite response represents a cubic polynomial. A cubic polynomial consists of a constant and three coefficients; therefore, the four scalar responses. In this example, the four scalar responses are a function of three factors:
curve(m, n, o, p) = m + (n*x) + (o*x2) + (p*x3)
Response 10 (0) = R_10 (0) (f1, f2, f3) = m
Response 10 (1) = R_10 (1) (f1, f2, f3) = n
Response 10 (2) = R_10 (2) (f1, f2, f3) = o
Response 10 (3) = R_10 (3) (f1, f2, f3) = p
Now, if you vary x over a range, you can visualize the resulting curve.
This next example is a Composite Response representation of a quadratic polynomial. A quadratic polynomial consists of a constant and two coefficients; therefore, the need for three scalar responses. In this particular case, the composite response elements are dependent on six factors.
curve(m, n, o) = m + (n*x) + (o*x^2)
Response 11 (0) = R_11 (0) (f1, f2, f3, f4, f5, f6) = m
Response 11 (1) = R_11 (1) (f1, f2, f3, f4, f5, f6) = n
Response 11 (2) = R_11 (2) (f1, f2, f3, f4, f5, f6) = o