How many english-speaking operators does the hospital need

Assignment Help Computer Engineering
Reference no: EM131576453

Assignment

This assignment has three phases and I have started one phase (see below) but I only need the answer to Phase II right now. Based on the given paper (Hospital call center) I must answer the following questions and include them in a final report. I must make sure I provide justification for these answers, including screen shots of any adjustments made to the model, and the subsequent results from AMPL.

1. How many Spanish-speaking operators and how many English-speaking operators does the hospital need to staff the call center during each 2-hour shift of the day to answer all of the calls such that the total cost is minimized?

2. Most full-time workers don't want to work late into the evening. Harry can find only one qualified English-speaking operator willing to begin work at 1 P.M. Given this new constraint, how many full-time English-speaking operators, full-time Spanish-speaking operators, and part-time operators should Harry hire? How does this effect the total cost?

3. Harry now considers hiring bilingual operators. If all operators are bilingual, how many operators should he hire to cover each 2-hour shift? How does this effect the total cost if bilingual operators make 20% more than their non-bilingual counterparts?

There are three phases that I must complete and I have the first one started (see model below) but it is not complete yet.

The first phase will focus on model development. You will be given an operations research problem and asked to formulate a complete mathematical model to solve the problem. The problem definition can be found here. This phase will be graded based on the accuracy of your model. It is possible your model will need to be refined before being submitted in Phase II.

paramEngPer = 0.8;
paramSpaPer = 0.2;
paramcph = 6;
paramAvgCall := 1 35 2 90 3 65 4 100 5 90 6 25 7 10;

paramEngPer; #percent of calls in english
paramSpaPer; #percent of calls in spanish
paramcph; #calls per hour per operator
paramAvgCall{1..7}; #Average calls each shift
varE{1..7} >=0; #English speaking workers for each shift i, 7 to include part timers
varS{1..5} >=0; #Spanish speaking workers for each shift i, 5th full time shift covers to close

#paramSmin{1..N}; #min S necessary to meet demand in each shift

#***objective function(s)***
#*Note: No Span operators accountable after 5th shift since no part timers
minimize z_eng: sum{i in 1..7}40*(E[1]+E[2]+E[3])+44*(E[4]+E[5]+E[6])+48*E[7];
minimize z_spa: sum{i in 1..5}40*(S[1]+S[2]+S[3])+44*(S[4]+S[5]);
#***constraints for each shift, accoutning for overlap***
s.t. EngShift1: E[1] >= ceil( (EngPer*AvgCall[1]) / cph); #avg calls demanded / cph
s.t. EngShift2: E[2] >= ceil( (EngPer*AvgCall[2]) / cph); #avg calls demanded / cph
s.t. EngShift3: E[1] + E[3] >= ceil( (EngPer*AvgCall[3]) / cph);
s.t. EngShift4: E[2] + E[4] >= ceil( (EngPer*AvgCall[4]) / cph);
s.t. EngShift5: E[3] + E[5] + E[6] >= ceil( (EngPer*AvgCall[5]) / cph);
s.t. EngShift6: E[4] + E[6] + E[7] >= ceil( (EngPer*AvgCall[6]) / cph);
s.t. EngShift7: E[5] + E[7] >= ceil( (EngPer*AvgCall[7]) / cph);

s.t. SpaShift1: S[1] >= ceil( (SpaPer*AvgCall[1]) / cph);
s.t. SpaShift2: S[2] >= ceil( (SpaPer*AvgCall[2]) / cph);
s.t. SpaShift3: S[1] + S[3] >= ceil( (SpaPer*AvgCall[3]) / cph);
s.t. SpaShift4: S[2] + S[4] >= ceil( (SpaPer*AvgCall[4]) / cph);
s.t. SpaShift5: S[3] + S[5] >= ceil( (SpaPer*AvgCall[5]) / cph);
s.t. SpaShift6: S[4] >= ceil( (SpaPer*AvgCall[6]) / cph);
s.t. SpaShift7: S[5] >= ceil( (SpaPer*AvgCall[7]) / cph);

This is what I need answered for now just the completion of Phase I and Phase II. What I have put together is okay but I think I have left out how to account for the idle time of the workers at the call center as well.

The second phase of this project will focus on AMPL implementation of your model. Given the model developed in Phase I, you will code a .mod and a .dat file that successfully solves the problem. The model and data files should include comments to explain each file, as well as comments explaining the implementation of your model in AMPL. This phase will be graded based on the implementation of your model into AMPL format. It should compile, solve, and produce a result. The credit earned in this phase is centered around whether your model from Phase I can be implemented into AMPL, and whether it solves.

The third phase of this project will focus on writing and formulating answers to the original problem. A series of operations-based questions pertaining to the problem is posted here, and you will have to answer them based on your model and results from Phase II. This phase also includes a professional report, and will be graded based on the following sections.

• Summary of the problem
• Mathematical formulation
• Details on AMPL implementation
• Responses to questions.

Attachment:- AMPL-Project-Problem-Definition.pdf

Reference no: EM131576453

Questions Cloud

Evaluate whether or not the rebates were ethical : Use one of the theories previously discussed in chapter 4, or a previous chapter, to evaluate whether or not the rebates were ethical.
Identify the problems with the current system : You will need to identify the problems with the current system as it may not be fulfilling the client's operational objectives.
Community corrections control strategies : Community Corrections Control Strategies, discuss four general types of control strategies used in Community corrections
Nonstandard work arrangements : In your opinion, can employers expect highly engaged employees who seek to improve the performance of the firm if they continue to use nonstandard work.
How many english-speaking operators does the hospital need : How many English-speaking operators does the hospital need to staff the call center during each 2-hour shift of the day to answer all of the calls.
Find the probability that a graph with m edges : Suppose that to generate a random simple graph with n vertices we first choose a real number p with 0 = p = 1. For each of the C(n, 2) pairs of distinct.
How has the chemical imbalance theory of mental illness : MAO Inhibitors for tx-resistant depression. He calls in a panic because he forgot about his dietary restrictions and just ate a pint of cottage cheese
Evaluate a scholarly article related to reliability : evaluate a scholarly article related to reliability, validity, and scale analysis
What are a few goals you might establish for yourself : What surprised you the most as you considered the implications of Matthew 18 on your written communications?

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd