computeNormalisedPerformanceTable

Version:1.0
Provider:UTAR
SOAP service’s name:
 computeNormalisedPerformanceTable-UTAR (see SOAP requests for details)

Description

Transforms a performance table via value functions.

Contact: Boris Leistedt (boris.leistedt@gmail.com)

Inputs

(For outputs, see below)

criteria

A list of criteria. Criteria can be activated or desactivated via the <active> tag (true or false). By default (no <active> tag), criteria are considered as active.

The input value should be a valid XMCDA document whose main tag is <criteria>. It must have the following form:

<criteria>
        <criterion>
                <criterionID>[...]</criterionID>
        </criterion>
</criteria>

valueFunctions

Value (utility) functions of chosen criteria (set of points).

The input value should be a valid XMCDA document whose main tag is <criteria>. It must have the following form:

<criteria>
        <criterion>
                <criterionID>[...]</criterionID>
                <criterionFunction>
                        <points>
                                <point>
                                        <abscissa><real>[...]</real></abscissa>
                                        <ordinate><real>[...]</real></ordinate>
                                </point>
                        </points>
                </criterionFunction>
        </criterion>
</criteria>

alternatives

A list of alternatives. Alternatives can be activated or desactivated via the <active> tag (true or false). By default (no <active> tag), alternatives are considered as active.

The input value should be a valid XMCDA document whose main tag is <alternatives>. It must have the following form:

<alternatives>
        <alternative>
                <alternativeID>[...]</alternativeID>
        </alternative>
</alternatives>

performanceTable

A performance table. The evaluations should be numeric values, i.e. <real>, <integer> or <rational>.

The input value should be a valid XMCDA document whose main tag is <performanceTable>. It must have the following form:

<performanceTable>
        <alternativePerformances>
                <alternativeID>[...]</alternativeID>
                <performance>
                        <criterionID>[...]</criterionID>
                        <value>
                                <real>[...]</real>
                        </value>
                </performance>
        </alternativePerformances>
</performanceTable>

Outputs

normalizedPerformanceTable

Normalized performance table (via the value functions).

The returned value is a XMCDA document whose main tag is <performanceTable>. It has the following form:

<performanceTable>
        <alternativePerformances>
                <alternativeID>[...]</alternativeID>
                <performance>
                        <criterionID>[...]</criterionID>
                        <value>
                                <real>[...]</real>
                        </value>
                </performance>
        </alternativePerformances>
</performanceTable>

message

logMessage

The returned value is a XMCDA document whose main tag is <methodMessages>. It has the following form:

<methodMessages mcdaConcept="methodMessage">
        <logMessage>
                <text>[...]</text>
        </logMessage>
        <errorMessage>
                <text>[...]</text>
        </errorMessage>
</methodMessages>

Original xml description