Sunday, February 23, 2020

Industrial Ergonomics case study Example | Topics and Well Written Essays - 500 words

Industrial Ergonomics - Case Study Example NIOSH conducted a qualitative field study. It began by asking the employees who used snowmobiles regularly—the only ones that were a part of this study-- about their jobs, their medical history and their job-related health problems. They made measurements of the seat, handle bars, and throttle control of snowmobiles to see if they could be adjusted to better fit people. They measured how much and how often workers are jolted when they ride snowmobiles on the bumpy roads. They also tested workers’ hands for nerve functions by administering a vibrotactile sensitivity test because disturbance of the vibrotactile sense can indicate early signs of vibration-induced injury. However, outside of testing workers’ hands for nerve functions and coordination, the other areas of complaints were not tested. Furthermore the researchers had only the workers’ word about their health prior to beginning to work for the National Park Service. Also, there was no control group. Admittedly, the researchers tried to approximate as best they could the scientific approach to determine how much of the employee complaints were due to travelling to the bumpy roads by attaching saver units to the snowmobiles to measure, record and store acceleration data on all three channels after being triggered by a shock or jolt that exceeded 1 g. These units could store 1346 separate events, but were filled after four hours! Secondly, some of the workers had hand tremor and decreased hand coordination related to snowmobile use. Another finding was that the grips on the handle bars were too narrow and not close enough to the rider to be safe and comfortable. Consequently, NIOSH stated that the most important feature to adjust was the steering bar, which if moved closer to the body with grips oriented to provide for neutral wrist positions would reduce grip forces and improve shoulder

Friday, February 7, 2020

Abbey Wood Playhouses Ticketing System Essay Example | Topics and Well Written Essays - 5000 words

Abbey Wood Playhouses Ticketing System - Essay Example If it's a casual booking than it can be So pseudo code for this application will be similar to below for booking. if Show date is > 7 day and day = Sunday Then Check for the seat availability If seat(s) is(are) available, Check is patron is holding any discount ( i.e. student or other discount) then ticket price = 2.5 and let the system book the ticket If it's a bulk booking ( i.e. seats > 5 and Seats then ticket price = 2.0 and let the system book the ticket Else If there is no discount then price = 3.0 and let system book the ticket. End if End if End if Pseudo code for this application will be similar to below for cancelling. if Show date is > 7 day and day = Sunday Then Ask for seat to be cancelled. If seat is in database then allow cancellation. Else Show error message that system can't cancel the ticket. End if End If. 3. Creating the Application in Visual Basic .NET. Following program has been written as per the above design. This program has been written using Visual Basic .NET. Attached is the source code of the different forms and module. Module code with ticket as an object: Option Explicit Type ticket patron_name As String * 30 patron_phone As String * 10 patron_email As String * 30 patron_seat As String * 30 seat_status As String * 2 show_date As Date price As Double ID As Integer End Type Source for designing the form1. Private Sub Command1_Click() Form4.Show Form1.Hide End Sub Private Sub Command2_Click() Form2.Show Form1.Hide End Sub Private Sub Command3_Click() Form5.Show Form1.Hide End Sub Source for designing the form2. Option Explicit Dim position As Integer Dim rec As ticket Dim fileno As... This application has now been modified so that it uses the Microsoft access database, rather than a random access file. Following is the attached Access database file which has been created when data was entered in this application.