semi合集-English.pdf - 第2408页

SEMI E86-0200 © SEMI 1999 , 2000 8 6.3.3 Per sonManager Interface Interface: PersonManag er Inherited In terface: ComponentManager Description: T his is the interface betw een the Person Management Compon e nt and the re…

100%1 / 7923
SEMI E86-0200 © SEMI 1999, 20007
Property toShift; // “ToShift”, new shift
} PersonShiftChangedFilters;
typedef struct PersonShiftChangedEvent_Structure {
string eventSubject;
TimeStamp eventTimeStamp;
PersonShiftChangedFilters eventFilterData;
Properties eventNews;
Person aPerson;
} PersonShiftChangedEvent;
6.3 Person Management Component
6.3.1 This component defines factory personnel (Person interface) to a CIM system. Persons are viewed as resour-
ces in the manufacturing environment, are assigned to a factory area, and own a detailed training and medical exam-
ination history (which qualifies them to perform a skill or set of skills). For example, there may be a requirement
that an operator periodically completes specific training or medical testing. Qualifications would include verifi-
cation that required training had occurred within the specified time limit. The associated skill would identify the
process capability enabled for this person through that qualification. At any given time, a Person may be assigned to
one or more factory jobs associated with other factory resources or operations.
6.3.2 The Component Information Model for Person Management is shown in Figure 2.
NamedEntity
(from Resource AIG)
TimeStamp
(from Global Type Defs)
Resource
(from Resource AIG)
Shift
(from Global Type Defs)
ResponsibilitySequence
(from Typedefs of sequences of Interfaces)
SkillSequence
(from Typedefs of sequences of Interfaces)
QualificationDataSequence
(from Typedefs of sequences of Interfaces)
ProcessCapabilitySequence
(from Typedefs of sequences of Interfaces)
ComponentManager
(from Resource AIG)
PersonSequence
(from Typedefs of sequences of Interfaces)
JobSequence
(from Typedefs of sequences of Interfaces)
MachineSequence
(from Typedefs of sequences of Interfaces)
MESFactory
(from Factory Comp)
SkillRequirement
History
Job
(from Job Supervision AIG)
Machine
(from Machine Group)
Area
(from Factory Comp)
PersonManager
0..*
11
has a
QualificationData
0..*
0..*
0..*
0..*
records
0..*
1
0..*
1
recorded in
SupportResource
(from Machine Group)
0..*
Skill
(from Skill Mgt Comp)
1..*
1
1..*
1
is defined by
Person
0..*
0..*
0..*
0..*
assigned to
0..*
0..*
0..*
0..*
assigned to
0..*
0..*
0..*
0..*
groups
0..*
1
0..*
1
creates and manages
0..*
1
0..*
1
qualifications
recorded in
0..*
0..*
0..*
0..*
assigned to
0..*
0..*
has
0..*
0..*
Figure 2
Person Management Component Information Model
SEMI E86-0200 © SEMI 1999, 2000 8
6.3.3 PersonManager Interface
Interface: PersonManager
Inherited Interface: ComponentManager
Description: This is the interface between the Person Management Component and the rest of the CIM
environment. The PersonManager creates instances of Persons within the factory and
manages those Persons (shift, job assignment and status information). There are no
limitations to the number of PersonManagers within a factory.
Exceptions:
/* This signal is raised with attempted creation of Person through the use of a Person identifier that already exists. */
exception PersonDuplicateSignal {string identificationNumber;};
/* This signal is raised when a retrieval operation fails because the Person specified by the argument could not be
located. */
exception PersonNotFoundSignal {string identificationNumber;};
/* This signal is raised when a removal operation fails because the Person specified by the argument is not assigned
to the PersonManager. */
exception PersonNotAssigned { Person unknownPerson;};
exception PersonRemovalFailedSignal { };
Published Events:
PersonLifecycleEvent
Provided Services:
/* Create an instance of Person with a unique identifier and add to the list managed by PersonManager. */
Person createPersonWithIdentifier (in string identificationNumber)
raises (FrameworkErrorSignal, PersonDuplicateSignal);
/* Delete the Person identified by the argument from the list managed by PersonManager. */
void removePerson (in Person aPerson)
raises (FrameworkErrorSignal, PersonRemovalFailedSignal,
PersonNotAssignedSignal);
/* Return a set of Persons managed by the PersonManager. */
PersonSequence allPersons ( ) raises (FrameworkErrorSignal);
/* Search for an instance of Person using its unique identifier. Raises an exception if the Person is not found. */
Person findByIdentifier (in string identificationNumber)
raises (FrameworkErrorSignal, PersonNotFoundSignal);
/* Return a set of all Persons logged on to the specified shift. */
PersonSequence allOnShiftPersons (in shift aShift) raises (FrameworkErrorSignal);
/* Return a set of all Persons available for work. */
PersonSequence allAvailableForWorkPersons ( ) raises (FrameworkErrorSignal);
/* Return a set of all Persons not available for work. */
PersonSequence allNotAvailableForWorkPersons ( ) raises (FrameworkErrorSignal);
/***** Manage Person / Machine relationship. *****/
SEMI E86-0200 © SEMI 1999, 20009
/* Return a set of Persons qualified to operate a process or material handling machine. The Person is qualified to
operate the machine if the machine is noted in the Person's skill list or if a comparison of the person's course and
medical exam histories satisfy the requirements defined within the Skill Management Component for the noted
machine. This method does not check the availability of the person to actually perform a task. */
PersonSequence allPersonsWithSkill (in Skill aSkill) raises (FrameworkErrorSignal);
/* Return a set of Persons available (“on duty” on the current shift) to operate the specified machine. This service
assumes that a Person is qualified to operate the machine. */
PersonSequence allPersonsAvailableForMachine (in Machine aMachine)
raises (FrameworkErrorSignal);
/* Return a set of all Persons currently assigned to the specified machine. */
PersonSequence allPersonsAssignedToMachine (in Machine aMachine)
raises (FrameworkErrorSignal);
/* Return a set of all Persons currently assigned to machines. */
PersonSequence allAssignedToMachinesPersons ( ) raises (FrameworkErrorSignal);
/***** Manage Person/Job relationship. *****/
/* Return a set of Persons qualified to perform a process or material handling job. The Person is qualified for the job
if the job qualification is noted in the person’s skill list or if a comparison of the person’s course and medical exam
histories satisfy the requirements defined within the Skill Management Component for the noted job. This method
does not check the availability of the person to actually perform a task. */
PersonSequence allPersonsQualifiedForJob (in Job aJob)
raises (FrameworkErrorSignal);
/* Return a set of Persons available (“on duty” on the current shift) to perform a process or material movement job.
This service assumes that a Person is qualified to perform the job. */
PersonSequence allPersonsAvailableForJob (in Job aJob)
raises (FrameworkErrorSignal);
/* Return a set of Persons currently assigned to the specified job. */
PersonSequence allPersonsAssignedToJob (in Job aJob) raises (FrameworkErrorSignal);
/* Return a set of all Persons currently assigned to jobs. */
PersonSequence allAssignedToJobsPersons ( ) raises (FrameworkErrorSignal);
Contracted Services: None.
Dynamic Model: Same as inherited interface (Component Manager).
6.3.4 Person Interface
Interface: Person
Inherited Interface: Resource
Description: This interface represents factory personnel. As currently defined, Person refers
specifically to operating personnel within the manufacturing facility. Instances of this
interface hold the following information pertaining to these individuals: employee
information (full name, identification number, department, shift assignment); training and
medical certification; and factory operations (e.g., operate a machine, perform a process)
qualified to perform.
Exceptions: