31 Pages

pchindaphorn_FinalExam

Course: COEN 120, Fall 2009
School: Santa Clara
Rating:
 
 
 
 
 

Word Count: 2886

Document Preview

(Ray) Piya Chindaphorn COEN 120 Final 6/4/2009 final Report on Configuration VxWorks Overridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: False Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 PACKAGES Default USE CASE DIAGRAMS: Parking Parking Sy stem clock ticket entry gate exit gate incoming_cars outgoing_cars Overridden Properties Subjects: General Metaclasses:...

Register Now

Unformatted Document Excerpt

Coursehero >> California >> Santa Clara >> COEN 120

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
(Ray) Piya Chindaphorn COEN 120 Final 6/4/2009 final Report on Configuration VxWorks Overridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: False Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 PACKAGES Default USE CASE DIAGRAMS: Parking Parking Sy stem clock ticket entry gate exit gate incoming_cars outgoing_cars Overridden Properties Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.6.2003::23:26:7 EVENTS: evNext evScreenBusy evScreenFree next GLOBALS: Relations: itsMyPIC Composition of myPIC, Multiplicity of 1, Uni-directional itsTicket Composition of Ticket, Multiplicity of *, Uni-directional itsExitGate Composition of exitGate, Multiplicity of 2, Uni-directional Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 itsEntryGate Composition of entryGate, Multiplicity of 2, Uni-directional itsParking Composition of Parking, Multiplicity of 1, Uni-directional itsClock Composition of Clock, Multiplicity of 1, Uni-directional itsGate Composition of Gate, Multiplicity of 1, Uni-directional Instantiated Relations: itsTicket of itsExitGate with itsTicket itsTicket of itsEntryGate with itsTicket itsTicket of itsParking with itsTicket itsParking of itsTicket with itsParking itsMyPIC of itsParking with itsMyPIC itsEntryGate of itsParking with itsEntryGate itsParking of itsEntryGate with itsParking itsExitGate of itsParking with itsExitGate itsParking of itsExitGate with itsParking itsClock of itsEntryGate with itsClock itsClock of itsExitGate with itsClock itsEntryGate of itsMyPIC with itsEntryGate itsMyPIC of itsEntryGate with itsMyPIC itsExitGate of itsMyPIC with itsExitGate itsMyPIC of itsExitGate with itsMyPIC Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 CLASSES: Clock keeps trake of time in the lowest unit of minutes. Overridden Properties Subjects: CG Metaclasses: Class Properties: Concurrency: active Operations: Clock Constructor , Public getMinutes keeps tract of minutes. Primitive-operation , Public, Return type is int Body return minutes; getTimeDifference outputs the time the car was parked for in hours and mins. Primitive-operation , Public, Return type is int Args: int ticketTime Body Attributes: minutes keeps take of minute since 00:00 Jan 1, 2003 Type of int, Private, Static, Initial Value: 0 Statechart int diff = minutes - ticketTime; cout << diff/60 << "hours " << diff%60 << " minutes." << endl; countMinutes> tm(6000) Overridden Properties Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.7.2003::0:32:12 ROOT Or-state Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Substates: countMinutes Default Transition Target: countMinutes countMinutes This keeps track of time in minutes, rolling it over at the end of the week. It is curently in fast-time mode where 1 sec in the program = 100 miliseconds in real life. Or-state EntryAction minutes; Out Transition tm(6000) Target: countMinutes Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 entryGate class with multiplicity of 2 for the entry gates. Overridden Properties Subjects: CG Metaclasses: Class Properties: Concurrency: active Relations: itsTicket Association with Ticket, Multiplicity of *, Uni-directional itsParking Association with Parking, Multiplicity of 1, Bi-directional itsClock Association with Clock, Multiplicity of 1, Uni-directional itsMyPIC Association with myPIC, Multiplicity of 1, Bi-directional Superclasses: Gate Public Statechart gatesIdle tm(300) [else] carAtGate> [itsMyPIC->keyJustPressed(7)] [itsMyPIC->keyJustPressed(1)] C carAtGate2> carAtGate> tm(2000)/cout << "Barrier Opening...Please wait" << endl; itsEntryGate[0]->barrierInClosedPosition = false; itsEntryGate[0]->carAtBarrierSensor = true; gateOpen> tm(300) tm(2000)/cout << "Barrier Opening...Please wait" << endl; itsEntryGate[1]->barrierInClosedPosition = false; itsEntryGate[1]->carAtBarrierSensor = true; gateOpen2> tm(300) [itsMyPIC->keyJustPressed(11)] [itsMyPIC->keyJustPressed(4)] carPassed2> carPassed> Overridden Properties Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.7.2003::0:56:57 ROOT Or-state Substates: carAtGate gatesIdle Default Transition Target: gatesIdle carAtGate When there is a car at one of the gates. Or-state Substates: carAtGate carAtGate2 carPassed carPassed2 gateOpen gateOpen2 EntryAction itsParking->GEN(evScreenBusy); Default Transition Target: carAtGate carAtGate A car is at the gate 1 requesting a ticket by pressing 1 on the PIC board. Or-state EntryAction cout << (char)12; cout << "Your have requested for a ticket at gate 1" << endl; addItsTicket(new Ticket(itsParking->getNewTicketNumber(),itsClock->getMinutes())); cout << "Your ticket was crated, and the number of the ticket is: " << (itsParking>getCurrentTicketNumber()) << endl; cout << "The barrier will open for you" << endl; Out Transition tm(2000)/cout << "Barrier Opening...Please wait" << endl; itsEntryGate[0]->barrierInClosedPosition = false; itsEntryGate[0]->carAtBarrierSensor = true; Target: gateOpen carAtGate2 A car is at the gate 2 requesting a ticket by pressing 1 on the PIC board. Or-state EntryAction cout << (char)12; cout << "Your have requested for a ticket at gate 2" << endl; addItsTicket(new Ticket(itsParking->getNewTicketNumber(),itsClock->getMinutes())); cout << "Your ticket was crated, and the number of the ticket is: " << (itsParking>getCurrentTicketNumber()) << endl; cout << "The barrier will open for you" << endl; Out Transition tm(2000)/cout << "Barrier Opening...Please wait" << endl; itsEntryGate[1]->barrierInClosedPosition = false; itsEntryGate[1]->carAtBarrierSensor = true; Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Target: gateOpen2 carPassed Car has already passed, and the gate is closed. Or-state EntryAction cout << (char)12; cout << "The car has passed, and the gate will now close" << endl; itsEntryGate[0]->barrierInClosedPosition = true; itsEntryGate[0]->carAtBarrierSensor = false; itsParking->GEN(evScreenFree); ExitAction carPassed2 Car has already passed, and the gate is closed. Or-state EntryAction cout << (char)12; cout << "The car has passed, and the gate will now close" << endl; itsEntryGate[1]->barrierInClosedPosition = true; itsEntryGate[1]->carAtBarrierSensor = false; ExitAction itsParking->GEN(evScreenFree); gateOpen barrier at gate 1 is open, after the driver has requested for the ticket. Or-state EntryAction cout << (char)12; cout << "Barrier is now open." << endl; cout << "When the car has passed the barrier, please press [4] on the PIC Board" << endl; Out Transition [itsMyPIC->keyJustPressed(4)] Target: carPassed Out Transition tm(300) Target: gateOpen gateOpen2 barrier at gate 2 is open, after the driver has requested for the ticket. Or-state EntryAction cout << (char)12; cout << "Barrier is now open." << endl; cout << "When the car has passed the barrier, please press [.] on the PIC Board" << endl; Out Transition tm(300) Target: gateOpen2 Out Transition [itsMyPIC->keyJustPressed(11)] Target: carPassed2 gatesIdle The switches and sensors at the gate are idle, and waiting for a car. Or-state Out Transition tm(300) Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Condition Connector Branches: [itsMyPIC->keyJustPressed(1)] Target: carAtGate [itsMyPIC->keyJustPressed(7)] Target: carAtGate2 [else] Target: gatesIdle Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 exitGate Class with multiplicity of 2 for the two exit gates. Overridden Properties Subjects: CG Metaclasses: Class Properties: Concurrency: active Relations: itsTicket Association with Ticket, Multiplicity of *, Uni-directional itsParking Association with Parking, Multiplicity of 1, Bi-directional itsClock Association with Clock, Multiplicity of 1, Uni-directional itsMyPIC Association with myPIC, Multiplicity of 1, Bi-directional Superclasses: Gate Public Operations: evNext Event next Event removeTicket Primitive-operation , Public, Return type is OMBoolean Args: int TicNum Body OMIterator <Ticket*> iTicket(itsTicket); iTicket.reset(); //point to first while(*iTicket != NULL) { if ((*iTicket)->getTicketNumber() == TicNum) { Ticket * temp = (*iTicket); removeItsTicket(temp); delete temp; } } return false; return true; Attributes: ticNum Type of int, Public, Initial Value: 0 Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Statechart gatesIdle2 tm(300) [else] carAtGate2> [itsMy PIC->key JustPressed(8)] [itsMy PIC->key JustPressed(2)] carAtGate4... carAtGate3... C tm(2000)/cout << "Barrier Opening...Please wait" << endl; tm(2000)/cout << "Barrier Opening...Please wait" << endl; gateOpen4> gateOpen3> tm(300) tm(300) [itsMy PIC->key JustPressed(2)] [itsMy PIC->key JustPressed(2)] carPassed4> carPassed3> Overridden Properties Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.7.2003::1:19:47 ROOT Or-state Substates: carAtGate2 gatesIdle2 Default Transition Target: gatesIdle2 carAtGate2 When there is a car at one of the gates. Or-state Substates: carAtGate3 carAtGate4 carPassed3 carPassed4 gateOpen3 gateOpen4 Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 EntryAction ExitAction itsParking->GEN(evScreenFree); itsParking->GEN(evScreenBusy); Default Transition Target: carAtGate3 carAtGate3 Nested Statechart Or-state Out Transition tm(2000)/cout << "Barrier Opening...Please wait" << endl; Target: gateOpen3 carAtGate4 Nested Statechart Or-state Out Transition tm(2000)/cout << "Barrier Opening...Please wait" << endl; Target: gateOpen4 carPassed3 Car has already passed, and the gate is closed. Or-state EntryAction cout << "The car has passed, and the gate will now close" << endl; itsExitGate[0]->barrierInClosedPosition = true; itsExitGate[0]->carAtBarrierSensor = false; carPassed4 Car has already passed, and the gate is closed. Or-state EntryAction cout << "The car has passed, and the gate will now close" << endl; itsExitGate[1]->barrierInClosedPosition = true; itsExitGate[1]->carAtBarrierSensor = false; gateOpen3 Or-state EntryAction itsExitGate[0]->barrierInClosedPosition = false; itsExitGate[0]->carAtBarrierSensor = true; cout << "Barrier is now open." << endl; cout << "When the car has passed the barrier, please press [4] on the PIC Board" << endl; Out Transition tm(300) Target: gateOpen3 Out Transition [itsMyPIC->keyJustPressed(2)] Target: carPassed3 gateOpen4 Or-state EntryAction itsExitGate[1]->barrierInClosedPosition = false; itsExitGate[1]->carAtBarrierSensor = true; cout << "Barrier is now open." << endl; cout << "When the car has passed the barrier, please press [.] on the PIC Board" << endl; Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Out Transition tm(300) Target: gateOpen4 Out Transition [itsMyPIC->keyJustPressed(2)] Target: carPassed4 gatesIdle2 The switches and sensors at the gate are idle, and waiting for a car. Or-state Out Transition tm(300) Condition Connector Branches: [else] Target: gatesIdle2 [itsMyPIC->keyJustPressed(8)] Target: carAtGate4 [itsMyPIC->keyJustPressed(2)] Target: carAtGate3 Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Statechart of carAtGate3 carAtGate3 askForTicketNumber> ev Next calculateTime> Overridden Properties Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.7.2003::1:6:24 ROOT Or-state Substates: carAtGate3 carAtGate3 Car wants to exit at exit gate 1. did not have time to finish this state. Or-state Substates: askForTicketNumber calculateTime Default Transition Target: askForTicketNumber askForTicketNumber Or-state EntryAction cout << (char)12; cout << "You have requested to leave from gate 1" << endl; cout << "Please enter your ticket number: " << flush; cin >> ticNum; GEN(evNext); Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Out Transition evNext Target: calculateTime calculateTime Calculate the time in the garage and outputs the cost. Or-state EntryAction OMIterator iTicket(itsTicket); <Ticket*> iTicket.reset(); //point to first while(*iTicket != NULL) { if((*iTicket)->getTicketNumber() == ticNum) { cout << "You parked for " << itsClock->getTimeDifference((*iTicket)>getTimeIn()); } ++iTicket; } Statechart of carAtGate4 carAtGate4 askForTicketNumber4> evNext calculateTime4> Overridden Properties Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.7.2003::1:15:37 ROOT Or-state Substates: carAtGate4 carAtGate4 Car wants to exit at exit gate 2. did not have time to finish this state. Or-state Substates: askForTicketNumber4 calculateTime4 Default Transition Target: askForTicketNumber4 askForTicketNumber4 Or-state EntryAction cout << (char)12; cout << "You have requested to leave from gate 1" << endl; cout << "Please enter your ticket number: " << flush; cin >> ticNum; GEN(evNext); Out Transition evNext Target: calculateTime4 calculateTime4 Calculate the time in the garage and outputs the cost. Or-state EntryAction OMIterator <Ticket*> iTicket(itsTicket); iTicket.reset(); //point to first while(*iTicket != NULL) { if((*iTicket)->getTicketNumber() == ticNum) { cout << "You parked for " << itsClock->getTimeDifference((*iTicket)>getTimeIn()); } ++iTicket; } Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Gate Common properties of the two gates; therefore, entryGate and exitGate inherits from this class. Overridden Properties Subjects: CG Metaclasses: Class Properties: Concurrency: active Subclasses: entryGate exitGate Attributes: barrierInClosedPosition true if barrier is closed. false if open. Type of OMBoolean, Public carAtBarrierSensor true if there's a car at the barrier, therefore the gate should not close the barrier. false if there's no car there. Type of OMBoolean, Public Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 myPIC A subclass of the PICserial class containing additional funtionality. Relations: itsEntryGate Association with entryGate, Multiplicity of 2, Bi-directional itsExitGate Association with exitGate, Multiplicity of 2, Bi-directional Superclasses: PICserial Public Operations: clearDisplay Clears the LCD from position start 'til position end. Primitive-operation , Public, Return type is void Args: int start int end Body int i; for (i = start; i <= end; i++) setDisplayChar(i, NULL); keyJustPressed Returns true only one time indicating that the silkkey has just been pressed. Primitive-operation , Public, Return type is OMBoolean Args: int silkkey This is the value of the silkscreened key to interegate. Body return ((getAllKeyData(keymap[silkkey])&(long)(keymap[silkkey]|(keymap[silkkey]<<16))) == ((long)(keymap[silkkey]|(keymap[silkkey]<<16)))); keyJustReleased Returns true only one time indicating that the silkkey has just been released. Primitive-operation , Public, Return type is OMBoolean Args: int silkkey This is the value of the silkscreened key to interegate. Body return ((getAllKeyData(keymap[silkkey])&(long)(keymap[silkkey]|(keymap[silkkey]<<16))) == (long)(keymap[silkkey]<<16)); keyPressed This function returns true as long as the silkkey is pressed. It does not reset the COS bits. Primitive-operation , Public, Return type is OMBoolean Args: int silkkey This is the value of the silkscreened key to interegate. Body return ((getAllKeyData(0)&keymap[silkkey]) != 0); myPIC Constructor , Public Body keymap[0] keymap[1] keymap[2] keymap[3] keymap[4] keymap[5] keymap[6] keymap[7] keymap[8] = = = = = = = = = 0x0002; 0x4000; 0x2000; 0x1000; 0x0400; 0x0200; 0x0100; 0x0040; 0x0020; keymap[9] = 0x0010; keymap[10] = 0x0800; //enter keymap[11] = 0x0004; // . keymap[12] = 0x0001; //CHS Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 scaledAnalog Returns a scaled analog value fromt the pot reading. Primitive-operation , Public, Return type is int Args: int hi = 255 Value corresponding to a 255 count reading from the sensor. int lo = 0 Value corresponding to a 0 count reading from the sensor. int n = 0 Indicates which analog pot to read. (0-2) Body return (int)((float)getAnalogValues(n)*((float)(hi-lo)/(float)255)+(float)lo); setDisplay function used to set the display on the PIC Board. Primitive-operation , Public, Return type is void Args: OMString words Body int i; for (i = 0; i < words.GetLength();i++) setDisplayChar(i, words[i]); if (i < 31) { for (i; i < 32; i++) setDisplayChar(i, ' '); } Attributes: keymap Maps the logical silkscreened key numbers into bit positions. Overridden Properties Subjects: CPP_CG Metaclasses: Attribute Properties: MutatorGenerate: False AccessorGenerate: True Type of 'unsigned int %s[13];', Public Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Statechart InitPIC LEDs> DebugPrint> tm(10) [goodread] WriteDisplayBuffer... [!goodread] DN tm(50) C ReadDataHere> Send_R> tm(25) Overridden Properties Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.6.2003::20:45:29 ROOT Or-state Inherited Substates: DebugPrint DN InitPIC LEDs ReadDataHere Send_R WriteDisplayBuffer Default Transition Inherited Target: InitPIC DebugPrint Or-state Inherited EntryAction //cout //cout //cout //cout //cout << << << << << " keys " << setbase(16) << setfill('0') << setw(8) << getAllKeyData() ; " a0 " << (int)getAnalogValues(0); " a1 " << (int)getAnalogValues(1); " a2 " << (int)getAnalogValues(2); endl; //cout << setbase(16) << setfill('0') << setw(8) << getAllKeyData() << " " << (int)getAnalogValues(0) << " " << (int)getAnalogValues(1) << " " << (int)getAnalogValues(2) << endl; //for (int i=0;i<5;i++) //{ cout << " " << setbase(16) << //cout << endl; (int) readBuffer[i]; } Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Out Transition Inherited Target: LEDs DN Or-state Inherited Out Transition Inherited tm(50) Target: Send_R InitPIC Or-state Inherited Out Transition Inherited Target: LEDs LEDs Or-state Inherited EntryAction ExitAction writeLeds(); //leds++; Out Transition Inherited tm(10) Target: WriteDisplayBuffer ReadDataHere Or-state Inherited EntryAction goodread = ReadData(); Out Transition Inherited Condition Connector Branches: [goodread] Target: DebugPrint [!goodread] Target: DN Send_R Or-state Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Inherited EntryAction ControlChar[0] = 'R'; write(fd, ControlChar, 1); //write an 'R' to the PIC board to read the buffers. Out Transition Inherited tm(25) Target: ReadDataHere WriteDisplayBuffer Nested Statechart Or-state Inherited EntryAction //for(int i=0;i<32;i++) Display[i]=leds; Out Transition Inherited Target: Send_R Statechart of WriteDisplayBuffer WriteDisplayBuffer startWrtDispSeq> firstHalf> secondHalf> tm(40) Overridden Properties Subjects: General Metaclasses: Diagram Properties: LastModifiedTime: 12.6.2003::20:45:29 ROOT Or-state Inherited Substates: WriteDisplayBuffer WriteDisplayBuffer Or-state Piya (Ray) Chindaphorn COEN 120 Final 6/4/2009 Inherited Substates: firstHalf secondHalf startWrtDispSeq state_0 Default Transition Inherited Target: startWrtDispSeq firstHalf Or-state Inherited EntryAction Out Transition Inherited tm(40) write(fd, Display, 16); //write out 16 characters. Target: secondHalf secondHalf Or-state Inherited EntryAction write...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Santa Clara - COEN - 120
Daniel Reyes Prof. Quinn COEN 120, Final ExamParkingGateSystemReport on Configuration VxWorksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: FalsePACKAGESParkingGateSystemThanks for a fun quarter,
Santa Clara - COEN - 120
Andrew ThompsonFinal_ExamReport on Configuration vxWorksPACKAGESDefault USE CASE DIAGRAMS:Final_Exam_UseCaseGate_ControllerEntry GatestimerCarticketControllerExit GatesOverridden Properties Subjects: General Metaclasses: Diagram
Santa Clara - COEN - 120
Andrew Thompson Kevin Kerns Our group project is a snowmaking machine control system. The snowmaker has a clock and several different sensors for temperature, wind, altitude, barometer, and valve sensors. On a mountain several different snowmakers ar
Santa Clara - COEN - 120
Daniel Reyes Prof. QuinnpersonalProjectReport on Configuration VxWorksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: FalsePACKAGESDefaultThis program is used as a secure login system. It consists
Santa Clara - COEN - 120
LeDatChu Virtual PetReport on Configuration vxworksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: TruePACKAGESDefaultOverridden Properties Subjects: CG Metaclasses: Package Properties: GenerateWith
Santa Clara - COEN - 120
LeDatChu Virtual PetPersonalProjectReport on Configuration DefaultConfigPACKAGESDefault USE CASE DIAGRAMS:LeDatChu_Virtual_PetVirtual_PetPetConsumerStatusOverridden Properties Subjects: General Metaclasses: Diagram Properties: LastMod
Santa Clara - COEN - 120
Peter Salas Dr. Quinn - Coen120 Personal Project 10/29/2003LeDatChu: VirtualPetReport on Configuration vxworksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: TruePeter Salas Dr. Quinn - Coen120 Pers
Santa Clara - COEN - 120
Coen120FInalReport on Configuration vxworksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: TruePACKAGESFinalYou have been assigned the task of providing efficient and responsive customer services in
Santa Clara - COEN - 120
fridgeReport on Configuration VxWorksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: FalsePACKAGESDefault USE CASE DIAGRAMS:FridgeEverybody that uses the fridge.Fridgekeeps track of items and co
Santa Clara - COEN - 120
Use of the PIC serial board in your individual and group projects.The PIC serial board supports several capabilities which you may find useful in creating robust and effective projects. Its capabilities include: 3 analog values which consist of sing
Santa Clara - COEN - 120
Qik Start PICmicro Education BoardFEMA LCD Display (P/N CG1621-SGR1) Character SetPIC and PICmicro are register trademarks of Microchip Technology Inc.283 Indian River Rd., Orange, CT 06477 TEL 203-799-7875 FAX 203-799-7892 WEB www.diversifieden
Santa Clara - COEN - 120
BTully_Car_AlarmReport on Configuration VXWorksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: True SequenceDiagram Metaclasses: General Properties: ShowArguments: TruePACKAGESDefaultOverridden Prop
Santa Clara - COEN - 120
BTully_Car_AlarmReport on Configuration VXWorksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: TruePACKAGESDefaultOverridden Properties Subjects: CG Metaclasses: Package Properties: GenerateWithAggr
Santa Clara - COEN - 120
Personal_projectReport on Configuration HelloWorld2Overridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: True1PACKAGESDefaultKevin Kerns Coen 120 Project Proposal For my project I propose to design an a
Santa Clara - COEN - 120
Personal_projectReport on Configuration HelloWorld2Overridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: TruePACKAGESDefaultKevin Kerns Coen 120 Project Proposal For my project I propose to design an acre
Santa Clara - COEN - 120
indprojKBReport on Configuration computerOverridden Properties Subjects: CPP_ReverseEngineering Metaclasses: ImplementationTrait Properties: AnalyzeIncludeFiles: AllIncludes CG Metaclasses: Relation Properties: InstanceBasedLinking: False Class Pro
Santa Clara - COEN - 120
Bike_ComputerReport on Configuration DefaultConfigPACKAGESBike_Computer GLOBALS: USE CASES:bike wheel input signalThis is the input from the sensor on the fork. Every time the magnet on the wheel passes the sensor it registers a signal. Relatio
Santa Clara - COEN - 120
psalas_final_fall20 03Report on Configuration VxWorksOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: FalsePACKAGESDefault EVENTS:deleting1deletes from gate 3.deleting2delete from gate 2.distri
Santa Clara - COEN - 120
AdaptiveHeadlightsReport on Configuration DefaultConfigPACKAGESDefault GLOBALS: CLASSES:MotorMindCarrierContains one function and no statecharts. See SetDC description. Overridden Properties Subjects: CG Metaclasses: Class Properties: Concurren
Santa Clara - COEN - 120
Piya (Ray) Chindaphorn COEN 120AdaptiveHeadlightsReport on Configuration VxWorksPiya (Ray) Chindaphorn COEN 120Project proposal: Adaptive Headlights Ever wanted your headlights to illuminate the roads that you are turning into? Ever wanted to
Santa Clara - COEN - 120
AdaptiveHeadlight sReport on Configuration DefaultConfigPACKAGESDefault GLOBALS: ACTORS:2_way_road_switchTakes in an input from a switch that the user has control of to either turn on or off the 2-way road function. Relations: itsX coordinate c
Union KY - ENCO - 461
Economic PerspectiveENCO 461/561 Summer 2006American Consumers Spend over $200 billion per year on media products and services Average household: $570 annuallyEconomics = Resources Media industries take in $300 billion each year in revenue 9
Union KY - ENCO - 461
History 1929 CBS/Columbia Broadcast System, began with 25 radio stations originating out of New York Before 1930 Vladimir Zworkin developed an all electronic system to transform visual image into an electronic system (beginnings of TV) 1930 Ph
Santa Clara - COEN - 120
Group4 ServerReport on Configuration WindowsOverridden Properties Subjects: CG Metaclasses: CGGeneral Properties: GeneratedCodeInBrowser: FalsePACKAGEStrainServer TYPESmessageBufferThis type is a 10 character array used in sending and receivin
Santa Clara - COEN - 120
ClientReport on Configuration vxworksPACKAGESTrainTicketsPackage containing all the information about the train ticket system.USE CASE DIAGRAMS:UseCaseTrainTicketsGenerate TicketRide the TrainDeduct FundsPassenger Add FundsRemov e
Santa Clara - COEN - 120
SnowMakerReport on Configuration SnowMakerPACKAGESDefault GLOBALS: CLASSES:clkThe clock simply keeps track of system time, which is in minutes and rolls over at the end of every day. Relations: itsControl_system Association with control_system,
Santa Clara - COEN - 120
Jonathan L. MontanaUse Cases Report on Microwave configurationSTEREOTYPESextendsMetaclass: Dependency Defined At: DefaultPACKAGESDefault GLOBALS: ACTORS:Microwave DisplayThe microwave display is an output screen. Relations: itsDisplay Foci
George Mason - AVT - 483
For Immediate ReleaseContact: Mattel Corporate Communications 310-252-4705 corporate.communications@mattel.comMATTEL ANNOUNCES VOLUNTARY RECALL OF SINGLE PRODUCT LIMITED TO THREE MARKETS Product in Canada, British Isles and U.S. Only EL SEGUNDO,
George Mason - AVT - 483
Fisher-Price, en coordinacin con la United States Consumer Product Safety Commission, est retirando voluntariamente del mercado una cantidad limitada de juguetes Go Diego Go! Los juguetes, que representan botes de rescate de animales, fueron pintados
George Mason - AVT - 483
Fisher-Price, en collaboration avec la Consumer Product Safety Commission des tats-Unis, procde actuellement au rappel volontaire d'un nombre restreint de canots de sauvetage d'animaux jouets Go Diego Go! qui ont t peints par un fabricant faon parti
George Mason - AVT - 483
Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Target Targe
George Mason - CSI - 703
Above is a screenshot of Name Voyager. Screenshot was obtained using GIMP (a freeware from GIMP.org)
George Mason - CSI - 703
Perceptual Accuracy Of Extraction: Position Along A Scale Is Best01 2 3 4 0 1 2 3 4 0 Increased distance Accurate decoding Decreased accuracy1 2 3 Grid lines help4The above plot was obtained by running the following script in R:Reference:
George Mason - CSI - 703
CSI 703 Assignment #3- Density Plots SP 2007 Musaddeque HosseinPage 1 of 6Density Estimate Construction .10 .05 .00 .10 .05 .00 .10 .05 .00 .10 .05 .00 .10 .05 .00 .10 .05 .00708090100110Kernel Density Estimation plot from Section 1.1
George Mason - CSI - 703
CSI 703 Assignment 7 Musaddeque HosseinSP 2007Page 1 of 4 Maps and Loess 2-D SmoothingWhite Male Colon Cancer Mortality, 1980-1989Age-Adjusted Rates Per 100,000 Population Based PercentilesMax=3980%26.960%23.540%21.620%19.2
George Mason - CSI - 703
CSI 703 Assignment 8 Musaddeque HosseinSP 2007Page 1 of 8 GlyphsMotor Trend CarsMazda RX4 Wag Mazda RX4 Datsun 710Hornet 4 Drive Hornet SportaboutValiantDuster 360Merc 240DMerc 230Merc 280Merc 280CMerc 450SEMerc 450SLMerc
George Mason - CSI - 703
CSI 703 Assignment 12 Musaddeque HosseinSP 2007Page 1 of 3 Clusters and SubspacesScaled Conditional Entropy Original DataV12 0.87 0.87 0.87 0.87 0.98 0.98 0.98 0.99 0.99 0.99 0.99 0.99 0.99 0.99 0.87 V9 0.87 0.88 0.88 0.98 0.98 0.98 0.99 0.99
George Mason - CSI - 703
Scaled Gene mRNA Data Minimal Spanning Tree Sort: Rows and Columns MatricesCorrelations Data DissimaritiesCOLOR KEY Correlation: Data: Dissimilarity: 1.00 0.68 0.00 0.60 0.42 0.54 0.20 0.16 1.09 0.20 0.10 1.63 0.60 0.37 2.18 1.00 0.63 2.72
George Mason - CSI - 703
Scaled Gene mRNA Data Minimal Spanning Tree Sort: Rows and Columns MatricesCorrelations Data DissimaritiesCOLOR KEY Correlation: Data: Dissimilarity: -1.00 -0.68 0.00 -0.71 -0.49 0.39 -0.43 -0.31 0.78 -0.14 -0.12 1.17 0.14 0.07 1.55 0.43 0.25 1.94
George Mason - CSI - 710
CSI710 Scientific Databases Group 2 Solar System Cataloging Allen Harvey Musaddeque Hossein Nishant Mehta Oscar Olmedo J. Scott Thompson The 10 Questions 1.) How many NEOs are currently identified in the JPL database? 2.) Which specific NEOs pose t
George Mason - CSI - 710
CSI 710 Scientific Databases FALL 2006 FINAL EXAM Submitted By: Musaddeque HosseinPage 1 of 18Musaddeque HosseinCSI710 FinalFall 2006Please Note: Answers to this exam were based on the in class lecture slides and the textbook for the cours
George Mason - CSI - 722
CSI 722, Spring 2006Project 1Page 1 of 2Fig 1: Density change (100 iterations)Fig 2: Pressure change (100 iterations)CSI 722, Spring 2006Project 1Page 2 of 2Fig 3: Velocity change (100 iterations)
George Mason - CSI - 722
%= % plot the results from the FCT scheme % read data from the following files: % lowflux.out - low order flux solution % fctflux.out - limited high order solution % data in the files are arranged in the following columns: % column 1: elementid - seq
George Mason - CSI - 742
csi742 project 1 program outputeigen values and eigen vectors for linear elements subject set 1 and 2 conditions (output summary of diffusion.out)eigen vectors lambda 2 lambda 3 lambda 4 lambda 5 lambda 6 lambda 7 eigen vectors eigen vectors eigen
George Mason - CSI - 721
CSI721 Fall 2005Project 1 ResultsPage 1 of 2CSI721 Fall 2005Project 1 ResultsPage 2 of 2
George Mason - CSI - 721
% = % This file plots the output of potential flow solver % for a airflow over a parabolic arc. % CSI 721 project 1, Fall 2005 % Instructor: Professor Rainald Lohner % Musaddeque Hossein % Fall 2005 % Input file is called phi.out % V infini = 500 mph
George Mason - CSI - 721
CSI 721 Fall 2005Project 2Page 1 of 4Fig 1 Mesh domain triangular elements, airfoil at centerFig 2 Velocity Vectors at element nodesCSI 721 Fall 2005Project 2Page 1 of 4Fig 3 Velocity Vectors at airfoilFig 4 Velocity Vectors at
George Mason - CSI - 701
Musaddeque Hossein Assignment 3CSI 701 Spring 205 MATLAB Plot CodePage 1 of 1clear all; phi = load('/home/musa/csi701/classNotes/hw3/c701hw3_version1/phi.out') grid_size = size(phi); n = grid_size(1,2); m = grid_size(1,1); x=linspace(0.000000,2
George Mason - CSI - 701
Matrix Resolution (8,16)Matrix Resolution (64,96)Matrix Resolution (300,450)
George Mason - CSI - 701
Air Force Academy - ERTH - 350
User Agent not allowed |ua Wget/1.11.4 (Red Hat modified)|Your client does not have permission to get the transcoded version of http:/www.wou.edu/las/physci/taylor/erth350/orprecip.xls from this server. Your user agent (Wget/1.11.4 (Red Hat modified
Air Force Academy - ERTH - 350
User Agent not allowed |ua Wget/1.11.4 (Red Hat modified)|Your client does not have permission to get the transcoded version of http:/www.wou.edu/las/physci/taylor/erth350/table1.xls from this server. Your user agent (Wget/1.11.4 (Red Hat modified)
Air Force Academy - ERTH - 350
User Agent not allowed |ua Wget/1.11.4 (Red Hat modified)|Your client does not have permission to get the transcoded version of http:/www.wou.edu/las/physci/taylor/erth350/table2.xls from this server. Your user agent (Wget/1.11.4 (Red Hat modified)
Air Force Academy - ERTH - 350
User Agent not allowed |ua Wget/1.11.4 (Red Hat modified)|Your client does not have permission to get the transcoded version of http:/www.wou.edu/las/physci/taylor/erth350/table3.xls from this server. Your user agent (Wget/1.11.4 (Red Hat modified)
Air Force Academy - ERTH - 350
User Agent not allowed |ua Wget/1.11.4 (Red Hat modified)|Your client does not have permission to get the transcoded version of http:/www.wou.edu/las/physci/taylor/erth350/table5.xls from this server. Your user agent (Wget/1.11.4 (Red Hat modified)
Air Force Academy - ERTH - 350
User Agent not allowed |ua Wget/1.11.4 (Red Hat modified)|Your client does not have permission to get the transcoded version of http:/www.wou.edu/las/physci/taylor/erth350/table6.xls from this server. Your user agent (Wget/1.11.4 (Red Hat modified)
JMU - BIOS - 295
THE SCIENTIFIC METHODI. Induction v. Deduction II. Theory III. Hypotheses IV. Operationalization V. The Scientific Method I. Induction v. Deduction *A. Induction: specific to general *My physician has an advanced degree and she makes lots of money.
JMU - BIOS - 295
THE LITERATURE REVIEWI. What is a literature review? II. How should literature reviews be done? III. Literature reviews in INTA 295 I. What is a literature review? A. Normal undergraduate term paper: GOAL: describe/analyze events or trends APPROACH:
JMU - BIOS - 295
Reliability &amp; ValidityI. Reliability II. Validity III. Potential Tradeoff between Reliability &amp; Validity I. Reliability *A. DEFINITION: *how well repeated observations yield same measurement result *B. ASSESSING RELIABILITY: *1] Test-Retest Reliabil
JMU - BIOS - 295
Research ApproachesI. Quantitative Approach II. Experimental Approach III. Qualitative Approach I. Quantitative Approach o A. LOGIC of CONTROL: include all relevant variables in the study measure all IVs and the DV examine correlation between DV and
JMU - BIOS - 295
Qualitative Secondary SourcesI. Primary v. Secondary Sources II. Facts, Ideas, and Words III. Verification of Secondary Sources I. Primary v. Secondary Sources *A. PRIMARY SOURCES *written records *oral records *works of art *&quot;relics&quot; *unpremeditate