CommunicationSystem.GetLinkBudgetEvaluator Method (IServiceProvider, IntendedSignalStrategy, EvaluatorGroup) |
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Evaluator<LinkBudget> GetLinkBudgetEvaluator(
IServiceProvider link,
IntendedSignalStrategy intendedSignal,
EvaluatorGroup group
)
Public Function GetLinkBudgetEvaluator (
link As IServiceProvider,
intendedSignal As IntendedSignalStrategy,
group As EvaluatorGroup
) As Evaluator(Of LinkBudget)
public:
Evaluator<LinkBudget^>^ GetLinkBudgetEvaluator(
IServiceProvider^ link,
IntendedSignalStrategy^ intendedSignal,
EvaluatorGroup^ group
)
member GetLinkBudgetEvaluator :
link : IServiceProvider *
intendedSignal : IntendedSignalStrategy *
group : EvaluatorGroup -> Evaluator<LinkBudget>
Parameters
- link
- Type: System.IServiceProvider
The service provider that implements ILinkService. - intendedSignal
- Type: AGI.Foundation.Communications.SignalProcessing.IntendedSignalStrategy
The strategy used to define the intended signal. - group
- Type: AGI.Foundation.EvaluatorGroup
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:
Evaluator<LinkBudget>An 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