objectType ProposalCycle
Defines collection of resources and proposals for a particular observing season
classDiagram
class ProposalCycle{
ivoa:string title
ivoa:anyURI instructions
ivoa:datetime submissionDeadline
ivoa:datetime observationSessionStart
ivoa:datetime observationSessionEnd
}
ProposalCycle --> "1" Observatory : observatory
ProposalCycle *-- "1..*" ObservingMode : observingModes
ProposalCycle *-- "1" AvailableResources : availableResources
ProposalCycle *-- "1..*" AllocationGrade : possibleGrades
ProposalCycle *-- "1" TAC : tac
ProposalCycle *-- "0..*" SubmittedProposal : submittedProposals
ProposalCycle *-- "0..*" AllocatedProposal : allocatedProposals
link Observatory "../Observatory"
link ObservingMode "../ObservingMode"
link AvailableResources "../AvailableResources"
link AllocationGrade "../AllocationGrade"
link TAC "../TAC"
link SubmittedProposal "../SubmittedProposal"
link AllocatedProposal "../AllocatedProposal"
Members
name | type | mult | description |
---|---|---|---|
observatory | Observatory | ||
title | ivoa:string | a human readable description of the cycle | |
instructions | ivoa:anyURI | optional | pointer to more detailed instructions about the cycle |
submissionDeadline | ivoa:datetime | optional | the date by which observing proposals must be submitted to be considered for this cycle |
observationSessionStart | ivoa:datetime | the start date of the observing cycle | |
observationSessionEnd | ivoa:datetime | the end date of the observing cycle | |
observingModes | ObservingMode | 1 or more | the possible observing modes offered in the cycle |
availableResources | AvailableResources | ||
possibleGrades | AllocationGrade | 1 or more | The possible grades that can be allocated for this cycle |
tac | TAC | The time allocation committee | |
submittedProposals | SubmittedProposal | 0 or more | the proposals that have been submitted in this cycle |
allocatedProposals | AllocatedProposal | 0 or more | the proposals that have been successful and allocated time |
References Detail
- Observatory is model wide.
Has contained reference(s) ObservingMode, SubmittedProposal, AllocationGrade in the containment hierarchy.