CommunicationSystemGetDetailedLinkBudgetEvaluator Method (IServiceProvider, IntendedSignalStrategy, EvaluatorGroup) |
Gets an evaluator for link budget data for the given link and intended signal strategy.
This evaluator includes propagation loss broken into its constituent models.
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public Evaluator<LinkBudget> GetDetailedLinkBudgetEvaluator(
IServiceProvider link,
IntendedSignalStrategy intendedSignal,
EvaluatorGroup group
)
Public Function GetDetailedLinkBudgetEvaluator (
link As IServiceProvider,
intendedSignal As IntendedSignalStrategy,
group As EvaluatorGroup
) As Evaluator(Of LinkBudget)
public:
Evaluator<LinkBudget^>^ GetDetailedLinkBudgetEvaluator(
IServiceProvider^ link,
IntendedSignalStrategy^ intendedSignal,
EvaluatorGroup^ group
)
member GetDetailedLinkBudgetEvaluator :
link : IServiceProvider *
intendedSignal : IntendedSignalStrategy *
group : EvaluatorGroup -> Evaluator<LinkBudget>
Parameters
- link
- Type: SystemIServiceProvider
The service provider that implements ILinkService and IAvailableSignalPropagationModelsService. - intendedSignal
- Type: AGI.Foundation.Communications.SignalProcessingIntendedSignalStrategy
The strategy used to define the intended signal. - group
- Type: AGI.FoundationEvaluatorGroup
The group with which to associate the new evaluator. By grouping evaluators
that are often evaluated at the same Julian dates, common computations can be performed only once
for the entire group instead of multiple times for each evaluator.
Return Value
Type:
EvaluatorLinkBudgetAn evaluator for
LinkBudget data.
Remarks
Note that when the evaluator is created,
CreatePropagationGraph will be called,
which performs operations that may throw exceptions.
See Also