20230122英语学习

news/2024/11/19 22:52:36/

If Flying Is Giving You More Anxiety Than Ever, Here’s How to Cope
害怕坐飞机?教你几招,克服飞行焦虑

In college, I grew a tumor that meant I hung out quite frequently in MRI machines.Though I’d never had a problem before, I found myself newly and severely claustrophobic — laying in a tiny tunnel for hours, arms raised overhead, will do that.

What I never saw coming was that phobia transferring to other small spaces, namely, airplanes.I’d developed severe anxiety around flying, stemming from that claustrophobia.Once the flight attendants closed the doors, and I was stuck there for a few hours, I was history.

It turns out I’m far from alone — up to 40% of Americans have some sort of flying anxiety, from fearing a plane crash to worries about close contact with others.Or, like me, they don’t want to be stuck.

Still, others dread navigating the airport, worrying their valuables might be lost or that they could encounter an issue with security doubting their intentions.

Flying anxiety has become such an issue that some airlines like British Airways even offer courses, such as their “Flying with Confidence” one-day class, to get you back in the air.
Here’s what experts say we can do to reduce our anxieties about airplanes.

Expose yourself to the aspects of flying (preferably with a mental health professional)
For Johnny Jet, a worldwide traveler and expert who has been to over 70 countries, his traveling fears started with a doctor’s comment.

He was headed on a 27-hour flight when his asthma doctor commented that he “might have a problem breathing on a plane because the cabin is pressurized.”

This led to a full-blown panic attack at a New York airport ahead of the flight, which he called “one of the worst days of his life,” and prompted an almost four-year-long fear of flying.

Exposure to planes and airports ended up being, ironically, part of the solution.“Speak to the flight crew, take a course, read books, go to the airport and do practice runs,” he suggested.

This type of activity ― known as exposure therapy ― can help your brain adapt to the situation over time and take some of the fear and uncertainty away from flying.It’s best to try this with a therapist who is trained in doing this.

Susan Zinn, a psychotherapist, added that medication might also be necessary for some people in tandem with preparation.She’s worked with clients who have spent several months practicing for a flight before the real trip.

Find a deep breathing method that works for you

It may be an annoying suggestion to hear, but breathing exercises are often given as a recommendation for anxiety because they work.

Zinn said she often suggests her patients practice intentional breathing exercises, like five-finger breathing, where you take deep inhales and exhales as you trace the outline of your hand.

Doing this can help calm the panic that arises before it turns into a full panic attack, Zinn said.

Pack some sour candy in your carry on

Zinn also suggested eating some sour candy to force your brain back into reality.The candy’s tartness can help you better focus on the moment rather than the fear or “what if?” during flying.It’s another way to practice mindfulness.

Learn the “why” behind air bumps

Adam Banks, a retired pilot based in New York, said the turbulence is one of the most concerning parts of flying for anxious passengers.Understanding what it is might help you see it as more normal and less of a sign of impending doom.

“Turbulence is just shifting winds.If you fly into a puffy cloud, the airplane is going to get a bump,” he said.

“Airplanes are designed to handle these bumps.If you’re sitting over the wing, you can see the wings flex as they absorb turbulence.Turbulence might feel like the airplane is moving around thousands of feet, the reality is the airplane is probably only being jostled a few feet.”

Ground yourself in facts

Zinn said that dealing with both physical anxiety and our mind’s perception of danger plays a role in calming down, so statistics might help.

For example, the annual risk of dying in a plane crash is only one in 11 million.You are much more likely to die from sunstroke, a bee sting, consuming a hot substance or even being attacked by a dog.


http://www.ppmy.cn/news/18813.html

相关文章

【React】组件的创建与事件绑定

📘前言 🚩🚩🚩 💎个人主页: 阿选不出来 💨💨💨 💎个人简介: 一名大二在校生,学习方向前端,不定时更新自己学习道路上的一些笔记. 💨💨&#x1f4a…

LeetCode_单周赛_329

2544. 交替数字和 代码1 转成字符串&#xff0c;逐个判断 class Solution {public int alternateDigitSum(int n) {char[] s ("" n).toCharArray();int t 1;int ans 0;for (int i 0; i < s.length; i) {ans (s[i] - 0) * t;t -t;}return ans;} }代码2 一…

react用高阶组件优化文件结构 帮助建立高阶组件应用思路

其实高阶组件是一个将组件写的更灵活的方式&#xff0c;他的应用场景在业务开发中会非常多样 这里 我们演示一种 主要还是解决问题的思想最重要 或者是 这个不叫解决问题 而是设计组件结构的思路 我们来模拟一个场景 在src下有一个 components 文件夹目录 在 components 下有…

C++编译之(1)-g++单/多文件/库的编译及C标准的发展历程

g编译入门 本文为您介绍g的编译用法&#xff1b;通过从最简单的单文件编译&#xff0c;到多文件编译&#xff0c;再到动态库、静态库的编译及使用&#xff1b; 例子都经过实际编译并运行&#xff0c;可谓全网最良心之作呐&#xff0c;放心拷贝粘贴学习&#xff01; 1、g的编译单…

【3-神经网络八股】北京大学TensorFlow2.0

课程地址&#xff1a;【北京大学】Tensorflow2.0_哔哩哔哩_bilibiliPython3.7和TensorFlow2.1六讲&#xff1a;神经网络计算&#xff1a;神经网络的计算过程&#xff0c;搭建第一个神经网络模型神经网络优化&#xff1a;神经网络的优化方法&#xff0c;掌握学习率、激活函数、损…

【C++】从0到1入门C++编程学习笔记 - 核心编程篇:类和对象(上)

文章目录一、封装1.1 封装的意义1.2 struct和class区别1.3 成员属性设置为私有二、对象的初始化和清理2.1 构造函数和析构函数2.2 构造函数的分类及调用2.3 拷贝构造函数调用时机2.4 构造函数调用规则2.5 深拷贝与浅拷贝2.6 初始化列表2.7 类对象作为类成员2.8 静态成员三、C对…

深入理解Mysql底层数据结构

一. 索引的本质 索引是帮助MySQL高效获取数据的排好序的数据结构。 二. 索引的数据结构 二叉树红黑树Hash表BTreeBTree mysql的索引采用的是B树的结构 mysql为什么不用二叉树&#xff0c;因为对于单边增长的数据列&#xff0c;二叉树和全表扫描差不多&#xff0c;效率没有什…

国科大-高性能计算考试

考试比较难,课程比较繁琐. 高性能计算2022加粗样式考试 1. 启动MPI程序时系统生成的是1维程序 写出一个子程序或函数生成行和列通讯子 思路&#xff1a; 首先进行参数合法性的检查&#xff0c;然后将通信子对应的进程组进行划分&#xff0c;再将通信子对应的进程组进行列划分&…