partage
Class SpotComplexInstanceGenerator.RequestsParameters

java.lang.Object
  extended by partage.SpotComplexInstanceGenerator.RequestsParameters
Enclosing class:
SpotComplexInstanceGenerator

public static class SpotComplexInstanceGenerator.RequestsParameters
extends java.lang.Object

A static class for representing the requests parameters of the Spot instance.

Version:
July 07
Author:
Sylvain Bouveret

Field Summary
 int maxLength
          This parameter specifies the maximal length of an acquisition (default 60).
 int maxNumberOfObservationsInWideAreaImages
          This parameter specifies the maximum number of observations of which the wide area images are made.
 int maxWeight
          This parameter specifies the maximum weight of the observation requests.
 int minLength
          This parameter specifies the minimal length of an acquisition (default 10).
 int minNumberOfObservationsInWideAreaImages
          This parameter specifies the minimum number of observations of which the wide area images are made.
 int minWeight
          This parameter specifies the minimum weight of the observation requests.
 int numberOfHotAreas
          This parameter specifies the number of hot areas (areas where many requests are concentrated).
 double probabilityOfRequestsInHotAreas
          This parameter specifies the probability of a request to concern a hot area.
 double probabilityOfStereoImages
          This parameter specifies the probability of a request to be a stereo image.
 double probabilityOfWideAreaImages
          This parameter specifies the probability of a request to concern wide areas (that can be aquired only with several opportunities).
 int sizeOfHotAreas
          This parameter specifies the size (the time in seconds taken to cover it) of the hot areas.
 
Constructor Summary
SpotComplexInstanceGenerator.RequestsParameters(int _hA, int _sHA, double _pHA, double _pSI, double _pWAI, int _minNbIWAI, int _maxNbIWAI, int _minW, int _maxW)
          Instantiates the class RequestsParemeters
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

numberOfHotAreas

public int numberOfHotAreas
This parameter specifies the number of hot areas (areas where many requests are concentrated).


sizeOfHotAreas

public int sizeOfHotAreas
This parameter specifies the size (the time in seconds taken to cover it) of the hot areas. The requests concerning hot areas can be between n - size and n + size.


probabilityOfRequestsInHotAreas

public double probabilityOfRequestsInHotAreas
This parameter specifies the probability of a request to concern a hot area.


probabilityOfStereoImages

public double probabilityOfStereoImages
This parameter specifies the probability of a request to be a stereo image.


probabilityOfWideAreaImages

public double probabilityOfWideAreaImages
This parameter specifies the probability of a request to concern wide areas (that can be aquired only with several opportunities).


minNumberOfObservationsInWideAreaImages

public int minNumberOfObservationsInWideAreaImages
This parameter specifies the minimum number of observations of which the wide area images are made.


maxNumberOfObservationsInWideAreaImages

public int maxNumberOfObservationsInWideAreaImages
This parameter specifies the maximum number of observations of which the wide area images are made.


minWeight

public int minWeight
This parameter specifies the minimum weight of the observation requests.


maxWeight

public int maxWeight
This parameter specifies the maximum weight of the observation requests.


minLength

public int minLength
This parameter specifies the minimal length of an acquisition (default 10).


maxLength

public int maxLength
This parameter specifies the maximal length of an acquisition (default 60).

Constructor Detail

SpotComplexInstanceGenerator.RequestsParameters

public SpotComplexInstanceGenerator.RequestsParameters(int _hA,
                                                       int _sHA,
                                                       double _pHA,
                                                       double _pSI,
                                                       double _pWAI,
                                                       int _minNbIWAI,
                                                       int _maxNbIWAI,
                                                       int _minW,
                                                       int _maxW)
Instantiates the class RequestsParemeters

Parameters:
_hA - The number of hot areas.
_sHA - The size of the hot areas.
_pHA - The probability of requests to be in hot areas.
_pSI - The probability of requests to be stereo images.
_pWAI - The probability of requests to be wide area images.
_minNbIWAI - The min number of observations in wide area images.
_maxNbIWAI - The max number of observations in wide area images.
_minW - the minimum weight.
_maxW - the maximum weight.