Skip to main content

Time Shifting Emergency Department Demand

Om Malek, posting on GigaOM, has an interesting article on a startup which time shifts power consumption of appliances attached to its smart grid system from peak hours to off-peak hours. Unused energy is sold back to a local grid operator, creating revenue, which is shared with the customer.

Managing Emergency Department volume is surprisingly similar to managing electricity demand. There are massive fluctuations in demand at different hours of the day. Both require massive amounts of infrastructure in order to manage peak demand. Both systems have a potential for life threatening consequences if peak demand is not met. Peak demand is affected by weather and day of the week (well documented in ED literature).

In addition to the obvious similarities listed above, what is most important is that total demand is determined by the sum of independent events, which are often convenience choices by consumers: "turn on dishwasher now or in an hour", "go to the ER now for my cough or wait until the morning."

The inherent complexity of managing ED patients makes managing ED volume even more challenging than managing electricity consumption. Whereas electricity use is either "on" or "off", and all the consumer needs is either more or less of one resource, each ED patient may require a multitude of different resources, some very scarce or hard or expensive to perform concurrently, such as ultrasound or CT scan.

And when dealing with complex systems, it is well documented that efficiency often declines dramatically once capacity reaches 70-80% of total maximum capacity.

Therefore, it becomes even *more* imperative for EDs to employ techniques to reduce demand during peak hours, just as power companies are learning to do the same with electricity demand. It is *not* sufficient to just "call in the on-call doctor", because ED patients require more than just a doctor; they require nurses, techs secretaries, beds, x-ray techs, etc. Unless you are calling in additional ancillary staff, your additional doctor is most likely not going to be very efficient. The concept is "don't spend money on increasing infrastructure to meet peak demand; rather, spend resources on smoothing out demand.".

Although we discharge ~80% of our patients, not all of those discharged should have their care delayed (e.g. acute fractures). However, every ED provider will attest to the vast number of patients whom we treat who could have been safely managed either several hours earlier or later.

This leads us to the obvious point: in this era of growing disruptive innovations in healthcare, it is time to develop ways to reduce peak demand on emergency departments. Companies which can assist patients in seeking non-ED based solutions for their medical care, or can safely redirect non-emergent ED patients to return during non-peak hours, will have great demand for their services.

Comments

Popular posts from this blog

Dr. Alex Mohseni invited to speak at Brault’s Healthcare Leadership Forum about the future of Emergency Medicine services and how ED groups can adapt using telemedicine.

  Dr. Mohseni presented on the topic of how Emergency Medicine groups could expand their scope of practice to the virtual space to and how to do so in a financially viable way.

From Stethoscope to Strategy: Why I Built ClinX Academy for Physicians Ready to Lead

“I love medicine—but I don’t love the hamster wheel.” That sentence kept echoing in my head during 3 a.m. shifts and budget meetings alike. If you’re a physician feeling the same tug between clinical passion and systemic frustration, this post is for you. The Problem: Brilliant Clinicians, Limited Business Training Physicians command >80 % of U.S. healthcare spend yet hold <5 % of C-suite seats. Traditional MBAs cost $150K+, 2 years, and countless missed family dinners. Weekend “crash courses” often lack depth, CME credit, or a meaningful network. Burnout rates hover around 50 % —and much of it stems from feeling powerless in operational decisions. Keywords: physician leadership gap, physician executive training, clinician burnout, healthcare MBA alternative, non-clinical career paths My A-Ha Moment in the Hospital Corridor I was serving as a National Medical Director when a perfectly capable colleague admitted, “I have no idea how capitation works—I just sign ...

How to connect openai to zapier to twilio so that you can interface with GPT3 via SMS

 I created an SMS interface to openAI's gpt3 API so that I can send an SMS prompt to openai and get an SMS response. Result looks like this: There may be better/easier ways of doing this, but this is how I figured it out. I'm assuming some degree of familiarity w/ Zapier here: 1. Buy a phone number in Twilio to use for this. This only costs $1/mo 2. In Zapier, create a new zap where the trigger is "Webhooks by Zapier" (Premium option). Choose your event as "Catch Hook". This will generate a webhook URL that is custom for this workflow. We are doing this because when you send the SMS to the Twilio phone number, you want it to **instantly** trigger the zapier workflow and not wait the 5-15 min it takes for Twilio to trigger on its own, so for that you need the webhook: 3. Copy the webhook URL from zapier and paste it into Twilio in the "A Messages Comes In" webhook section for that phone number 4. You will then need to send a test message so that Zap...