# Parametro aggregato

## Descrizione generale

Una raccolta di IndexParameters. Questa classe si comporta come un set. I parametri possono essere aggiunti o rimossi da esso. Il suo valore è il valore dei suoi parametri secondari aggregati utilizzando una funzione di aggregazione (ad esempio sum).[ API Riferimento](https://pywr.github.io/pywr-docs/master/api/generated/pywr.parameters.AggregatedParameter.html#pywr.parameters.AggregatedParameter)

## Attributi

<table><thead><tr><th width="154">Nome</th><th width="395">Descrizione</th><th>Richiesto</th></tr></thead><tbody><tr><td>tipo</td><td>aggregato</td><td>sì</td></tr><tr><td>parametri</td><td>I parametri da aggregare</td><td>Facoltativo</td></tr><tr><td>agg_func</td><td>La funzione di aggregazione. Deve essere una tra {«sum», «min», «max», «mean», «product»} o una funzione richiamabile che accetta un elenco di valori</td><td>Facoltativo</td></tr></tbody></table>

## Esempio

```json
{
	«type»: «Parametro aggregato»,
	«agg_func»: «prodotto»,
	«parametri»: [
		«Domanda di base»,
		«Fattore di domanda della curva di controllo»
	]
}
```

In questo caso Aggregated Parameter sta moltiplicando due parametri insieme

* [Domanda di base](https://water-strategy.gitbook.io/water-strategy/modelling-fundamentals/parameters/constant#example)
* Fattore di domanda della curva di controllo

Questo esempio mostra una domanda di base moltiplicata per un fattore che riduce la domanda in base a una curva di controllo del giacimento. È possibile fare clic su ciascuno di questi parametri per vedere come sono definiti.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://water-strategy.gitbook.io/waterstrategy/italiano/nozioni-di-base-sulla-modellazione/parameters/combining-multiple-parameters/aggregated-parameter.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
