From 38086572c83a3882961ef5b14e66e7a01de54ddf Mon Sep 17 00:00:00 2001 From: houlinfeng Date: Fri, 20 Sep 2024 16:02:07 +0800 Subject: [PATCH] feat: mineru web and web_api --- .gitignore | 3 +- projects/web/README.md | 2 +- projects/web/package.json | 2 + projects/web/src/pages/home.tsx | 6 +-- projects/web_api/README.md | 43 ++++++++++------- projects/web_api/mineru-web接口文档.html | 2 +- projects/web_api/requirements.txt | 13 ++++++ projects/web_api/web_api/api/__init__.py | 4 +- .../web_api/web_api/api/analysis/__init__.py | 4 +- .../web_api/api/analysis/analysis_view.py | 9 ++-- .../web_api/api/analysis/markdown_view.py | 44 ++++++++++++++++++ projects/web_api/web_api/api/extentions.py | 1 + .../web_api/web_api/api/react_app/__init__.py | 11 +++++ .../web_api/api/react_app/react_app_view.py | 11 +++++ projects/web_api/web_api/config/config.yaml | 2 + projects/web_api/web_api/config/mineru_web.db | Bin 557056 -> 12288 bytes 16 files changed, 128 insertions(+), 29 deletions(-) create mode 100644 projects/web_api/requirements.txt create mode 100644 projects/web_api/web_api/api/analysis/markdown_view.py create mode 100644 projects/web_api/web_api/api/react_app/__init__.py create mode 100644 projects/web_api/web_api/api/react_app/react_app_view.py diff --git a/.gitignore b/.gitignore index c0a2706a..f7f427f3 100644 --- a/.gitignore +++ b/.gitignore @@ -38,4 +38,5 @@ source.dev.env tmp -projects/web/node_modules \ No newline at end of file +projects/web/node_modules +projects/web/dist diff --git a/projects/web/README.md b/projects/web/README.md index f39bbe28..cc592819 100644 --- a/projects/web/README.md +++ b/projects/web/README.md @@ -8,5 +8,5 @@ npm install -g pnpm 3. build ``` 1.pnpm run build -2.npm run buil +2.npm run build ``` \ No newline at end of file diff --git a/projects/web/package.json b/projects/web/package.json index 2b135258..c2044ac9 100644 --- a/projects/web/package.json +++ b/projects/web/package.json @@ -22,9 +22,11 @@ "ahooks": "^3.8.1", "antd": "^5.20.3", "axios": "^1.7.5", + "canvas": "^2.11.2", "classnames": "^2.5.1", "js-cookie": "^3.0.5", "lodash": "^4.17.21", + "path2d": "^0.2.1", "qs": "^6.13.0", "react": "^18.3.1", "react-copy-to-clipboard": "^5.1.0", diff --git a/projects/web/src/pages/home.tsx b/projects/web/src/pages/home.tsx index 5ebd1c49..c162e902 100644 --- a/projects/web/src/pages/home.tsx +++ b/projects/web/src/pages/home.tsx @@ -3,7 +3,7 @@ import ErrorBoundary from "@/components/error-boundary"; import styles from "./home.module.scss"; import { SlotID, Path } from "@/constant/route"; -import { BrowserRouter, Routes, Route, Outlet } from "react-router-dom"; +import { HashRouter, Routes, Route, Outlet } from "react-router-dom"; import { ExtractorSide } from "./extract-side"; import { LanguageProvider } from "@/context/language-provider"; import PDFUpload from "@/pages/extract/components/pdf-upload"; @@ -70,9 +70,9 @@ export function Home() { return ( - + - + ); diff --git a/projects/web_api/README.md b/projects/web_api/README.md index 5580d72c..849654dd 100644 --- a/projects/web_api/README.md +++ b/projects/web_api/README.md @@ -1,34 +1,43 @@ -## 安装 +## Mineru 本地API服务 MinerU -```bash -# mineru已安装则跳过此步骤 - -git clone https://github.com/opendatalab/MinerU.git -cd MinerU - -conda create -n MinerU python=3.10 -conda activate MinerU -pip install .[full] --extra-index-url https://wheels.myhloli.com +``` +# 服务依赖mineru,请先确保mineru已安装 ``` -第三方软件 +1. 打包前端界面 ```bash +# 先进入前端目录 +cd projects/web +# 打包前端项目 +npm install -g yarn +yarn install +yarn build +``` + +2. 安装服务依赖 + +```bash +# 先进入后端目录 cd projects/web_api -pip install poetry -portey install +# 安装依赖 +pip3 install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple ``` -启动服务 +3. 启动服务 ```bash -cd web_api -python app.py +# 进入程序目录 +cd projects/web_api/web_api +# 启动服务 +python3 app.py +# 在浏览器访问启动的地址即可访问界面 ``` -接口文档 +ps:接口文档 + ``` 在浏览器打开 mineru-web接口文档.html ``` diff --git a/projects/web_api/mineru-web接口文档.html b/projects/web_api/mineru-web接口文档.html index 0c5fddbb..93f31f60 100644 --- a/projects/web_api/mineru-web接口文档.html +++ b/projects/web_api/mineru-web接口文档.html @@ -44,7 +44,7 @@ window.onload = function() { // Begin Swagger UI call region const ui = SwaggerUIBundle({ - spec: {"openapi":"3.0.1","info":{"title":"mineru-web","description":"","version":"1.0.0"},"tags":[{"name":"analysis"}],"paths":{"/api/v2/analysis/upload_pdf":{"post":{"summary":"上传pdf","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"pdfUrl":{"type":"string","description":"json参数格式支持pdf文件链接"}},"required":["pdfUrl"]},"example":{"pdfUrl":"https://arxiv.org/pdf/2405.08702"}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"file_key":{"type":"string"},"url":{"type":"string"}},"required":["file_key","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"file_key":"f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd","url":"/api/v2/analysis/upload_pdf?filename=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf&as_attachment=False"},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/task/submit":{"post":{"summary":"提交解析任务","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"fileKey":{"type":"string","title":"文件哈希"},"taskType":{"type":"string","title":"任务类型","description":"本期仅有pdf"},"isOcr":{"type":"boolean","title":"是否启用ocr","description":"PDF识别时有效"}},"required":["fileKey","taskType","isOcr"]},"example":{"fileKey":"d0ef17939a9b0fcc594d7faedc3b92c498f1d70336660060b98d79a4f006f0fc","taskType":"pdf","isOcr":false}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"fileName":{"type":"string"},"id":{"type":"integer"},"url":{"type":"string"}},"required":["fileName","id","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"fileName":"d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf","id":2,"url":"/api/v2/analysis/upload_pdf?filename=d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf&as_attachment=False"},"msg":"success","success":true}}}}},"headers":{}}},"security":[]},"put":{"summary":"重新发起任务","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"integer","title":"任务id"}},"required":["id"]},"example":{"id":2}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名称"},"id":{"type":"integer","title":"任务id"},"url":{"type":"string","title":"文件链接"}},"required":["fileName","id","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"fileName":"d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf","id":2,"url":"/api/v2/analysis/upload_pdf?filename=d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf&as_attachment=False"},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/task/progress":{"get":{"summary":"查询解析任务进度","deprecated":false,"description":"","tags":["analysis"],"parameters":[{"name":"id","in":"query","description":"解析任务id","required":true,"example":"2","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"content":{"type":"array","items":{"type":"object","properties":{"discarded_blocks":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"integer"}},"lines":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"number"}},"spans":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"number"}},"content":{"type":"string"},"score":{"type":"integer"},"type":{"type":"string"}},"required":["bbox","content","score","type"]}}},"required":["bbox","spans"]}},"type":{"type":"string"}},"required":["bbox","lines","type"]}},"page_idx":{"type":"integer"},"page_size":{"type":"array","items":{"type":"number"}},"preproc_blocks":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"integer"},{"type":"number"}]}},"lines":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"integer"},{"type":"number"}]}},"spans":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"number"},{"type":"integer"}],"type":"number"}},"content":{"type":"string"},"score":{"type":"integer"},"type":{"type":"string"},"cross_page":{"type":"boolean"}},"required":["bbox","content","score","type","cross_page"]}}},"required":["bbox","spans"]}},"type":{"type":"string"},"lines_deleted":{"type":"boolean"},"blocks":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"integer"}},"lines":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"number"},{"type":"integer"}],"type":"number"}},"spans":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"number"},{"type":"integer"}],"type":"number"}},"image_path":{"type":"string"},"score":{"type":"number"},"type":{"type":"string"},"content":{"type":"string"}},"required":["bbox","score","type","content","image_path"]}}},"required":["bbox","spans"]}},"type":{"type":"string"}},"required":["bbox","lines","type"]}}},"required":["bbox","lines","type","lines_deleted","blocks"]}}},"required":["discarded_blocks","page_idx","page_size","preproc_blocks"]}},"fileName":{"type":"string","title":"文件名称"},"fullMdLink":{"type":"string","title":"全文markdown链接"},"markdownUrl":{"type":"array","items":{"type":"string"},"title":"markdown分页链接"},"state":{"type":"string","enum":["running","pending","finished"],"title":"任务状态"},"status":{"type":"integer"},"type":{"type":"string","title":"任务类型"},"url":{"type":"string","title":"文件链接"}},"required":["content","fileName","fullMdLink","markdownUrl","state","status","type","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"content":[{"discarded_blocks":[{"bbox":[505,37,558,49],"lines":[{"bbox":[505.2149658203125,37.737548828125,555.0382690429688,49.74248504638672],"spans":[{"bbox":[505.2149658203125,37.737548828125,513.802734375,49.17461395263672],"content":"©","score":1,"type":"text"},{"bbox":[513.802978515625,37.737548828125,555.0382690429688,49.74248504638672],"content":"ESO 2024","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[14,234,36,635],"lines":[{"bbox":[10.940000534057617,234.38995361328125,37.619998931884766,639.8900146484375],"spans":[{"bbox":[10.940000534057617,234.38995361328125,37.619998931884766,639.8900146484375],"content":"arXiv:2405.08702v1 [astro-ph.GA] 14 May 2024","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[455,770,558,779],"lines":[{"bbox":[455.1949157714844,769.8161010742188,558.4251098632812,780.62060546875],"spans":[{"bbox":[455.1949157714844,769.8161010742188,558.4251098632812,780.62060546875],"content":"Article number, page 1 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[38,37,223,60],"lines":[{"bbox":[40.237998962402344,37.737548828125,222.8231201171875,49.74248504638672],"spans":[{"bbox":[40.237998962402344,37.737548828125,85.06969451904297,49.74248504638672],"content":"Astronomy","score":1,"type":"text"},{"bbox":[85.06969451904297,39.39087677001953,95.31089782714844,49.353477478027344],"content":" &","score":1,"type":"text"},{"bbox":[95.31089782714844,37.737548828125,149.77688598632812,49.74248504638672],"content":" Astrophysics","score":1,"type":"text"},{"bbox":[149.77688598632812,37.737548828125,222.8231201171875,49.74248504638672],"content":" manuscript no. aa","score":1,"type":"text"}]},{"bbox":[40.23797607421875,48.696533203125,95.85916137695312,60.70146942138672],"spans":[{"bbox":[40.23797607421875,48.696533203125,95.85916137695312,60.70146942138672],"content":"May 15, 2024","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":0,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[65,109,531,147],"lines":[{"bbox":[64.38899993896484,109.03148651123047,530.8878173828125,129.57286071777344],"spans":[{"bbox":[64.38899993896484,109.03148651123047,530.8878173828125,129.57286071777344],"content":"The physical mechanism behind magnetic field alignment in","score":1,"type":"text"}]},{"bbox":[227.4849853515625,128.9564666748047,367.7911682128906,149.4978485107422],"spans":[{"bbox":[227.4849853515625,128.9564666748047,367.7911682128906,149.4978485107422],"content":"interstellar clouds","score":1,"type":"text"}]}],"type":"title"},{"bbox":[124.26798248291016,153.35096740722656,470.510009765625,170.45645141601562],"lines":[{"bbox":[124.26798248291016,153.35096740722656,470.510009765625,170.45645141601562],"spans":[{"bbox":[124.26798248291016,157.3109893798828,220.91168212890625,170.45645141601562],"content":"Guido Granda-Muñoz","score":1,"type":"text"},{"bbox":[220.91098022460938,156.06658935546875,224.89602661132812,165.67056274414062],"content":"1","score":1,"type":"text"},{"bbox":[224.89598083496094,157.20840454101562,226.8885040283203,165.1785125732422],"content":",","score":1,"type":"text"},{"bbox":[232.69998168945312,157.3109893798828,357.51092529296875,170.45645141601562],"content":",Enrique Vázquez-Semadeni","score":1,"type":"text"},{"bbox":[357.510986328125,156.06658935546875,361.49603271484375,165.67056274414062],"content":"1","score":1,"type":"text"},{"bbox":[361.49603271484375,153.35096740722656,364.7209777832031,170.45645141601562],"content":" ","score":1,"type":"text"},{"bbox":[364.7209777832031,157.3109893798828,466.52459716796875,170.45645141601562],"content":"and Gilberto C. Gómez","score":1,"type":"text"},{"bbox":[466.52496337890625,156.06658935546875,470.510009765625,165.67056274414062],"content":"1","score":1,"type":"text"}]}],"type":"text"},{"bbox":[63,182.2520294189453,535,236.16256713867188],"lines":[{"bbox":[63,182.2520294189453,535,196.31155395507812],"spans":[{"bbox":[63.51275634765625,182.2520294189453,535.7510375976562,196.31155395507812],"content":" Instituto de Radioastronomía y Astrofísica, Universidad Nacional Autónoma de México, Apdo. Postal 3-72, Morelia, Michoacán","score":1,"type":"text"}]},{"bbox":[68,195.4700469970703,122.78550720214844,206.27456665039062],"spans":[{"bbox":[68.49395751953125,195.4700469970703,122.78550720214844,206.27456665039062],"content":"58089, México","score":1,"type":"text"}]},{"bbox":[68,205.43202209472656,298.5536804199219,216.23654174804688],"spans":[{"bbox":[68.49395751953125,205.43202209472656,93.89576721191406,216.23654174804688],"content":"e-mail:","score":1,"type":"text"},{"bbox":[93.89576721191406,206.3466033935547,298.5536804199219,215.3578338623047],"content":" e.vazquez@irya.unam.mx,g.gomez@irya.unam.mx","score":1,"type":"text"}]},{"bbox":[63,212.14002990722656,529,226.19955444335938],"spans":[{"bbox":[63.51275634765625,212.14002990722656,529.6361694335938,226.19955444335938],"content":" Departamento de Ciencias, Facultad de Artes Liberales, Universidad Adolfo Ibáñez, Av. Padre Hurtado 750, Viña del Mar, Chile","score":1,"type":"text"}]},{"bbox":[68,225.35804748535156,204.40634155273438,236.16256713867188],"spans":[{"bbox":[68.49395751953125,225.35804748535156,93.89576721191406,236.16256713867188],"content":"e-mail:","score":1,"type":"text"},{"bbox":[93.89576721191406,226.2726287841797,204.40634155273438,235.2838592529297],"content":" guido.granda@edu.uai.cl","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,243.29103088378906,171.95762634277344,254.09555053710938],"lines":[{"bbox":[59,243.29103088378906,171.95762634277344,254.09555053710938],"spans":[{"bbox":[59.5279541015625,243.29103088378906,171.95762634277344,254.09555053710938],"content":"Received XXX; accepted YYY","score":1,"type":"text"}]}],"type":"text"},{"bbox":[273,268,322,280],"lines":[{"bbox":[274.387939453125,269.8934020996094,320.8876953125,280.5920104980469],"spans":[{"bbox":[274.387939453125,269.8934020996094,320.8876953125,280.5920104980469],"content":"ABSTRACT","score":1,"type":"text"}]}],"type":"title"},{"bbox":[59,288.6210632324219,535,309.3875427246094],"lines":[{"bbox":[59,288.6210632324219,535,299.4255676269531],"spans":[{"bbox":[59.52793884277344,288.7883605957031,90.9934310913086,299.3336486816406],"content":"Context.","score":1,"type":"text"},{"bbox":[90.9934310913086,288.6210632324219,535.7450561523438,299.4255676269531],"content":" A tight correlation between interstellar clouds contours and their local magnetic field orientation has been widely observed.","score":1,"type":"text"}]},{"bbox":[59,298.5830383300781,355.1231994628906,309.3875427246094],"spans":[{"bbox":[59.52793884277344,298.5830383300781,355.1231994628906,309.3875427246094],"content":"However, the physical mechanisms responsible for this correlation remain unclear.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,318.5080261230469,535,349.2385559082031],"lines":[{"bbox":[59,318.5080261230469,535,329.3125305175781],"spans":[{"bbox":[59.5279426574707,318.6753234863281,94.43470764160156,329.2206115722656],"content":"Methods.","score":1,"type":"text"},{"bbox":[94.43470764160156,318.5080261230469,535.7487182617188,329.3125305175781],"content":" We perform three- and two-dimensional MHD simulations of warm gas streams in the thermally-bistable atomic interstellar","score":1,"type":"text"}]},{"bbox":[59,328.4710388183594,535,339.2755432128906],"spans":[{"bbox":[59.52794647216797,328.4710388183594,535.7512817382812,339.2755432128906],"content":"medium (ISM) colliding with velocities of the order of the velocity dispersion in the ISM. In these simulations, we follow the evolution","score":1,"type":"text"}]},{"bbox":[59,338.4340515136719,389.7962341308594,349.2385559082031],"spans":[{"bbox":[59.52794647216797,338.4340515136719,389.7962341308594,349.2385559082031],"content":"of magnetic field lines, identify and elucidate the physical processes causing their evolution.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,348.39605712890625,535,478.752685546875],"lines":[{"bbox":[59,348.39605712890625,535,359.2005615234375],"spans":[{"bbox":[59.52794647216797,348.5633544921875,90.16719818115234,359.108642578125],"content":"Results.","score":1,"type":"text"},{"bbox":[90.16719818115234,348.39605712890625,535.7520141601562,359.2005615234375],"content":" The collision produces a fast MHD shock, and a condensation front roughly one cooling length behind it, on each side","score":1,"type":"text"}]},{"bbox":[59,358.35906982421875,535,369.16357421875],"spans":[{"bbox":[59.527950286865234,358.35906982421875,535.7512817382812,369.16357421875],"content":"of the collision front. A cold dense layer forms behind the condensation front, onto which the gas settles, decelerating smoothly.","score":1,"type":"text"}]},{"bbox":[59,368.32208251953125,535,379.1265869140625],"spans":[{"bbox":[59.527950286865234,368.32208251953125,535.7512817382812,379.1265869140625],"content":"We find that the magnetic field lines, initially oriented parallel to the flow direction, are perturbed by the fast MHD shock, across","score":1,"type":"text"}]},{"bbox":[59,378.2840881347656,535,389.0885925292969],"spans":[{"bbox":[59.527950286865234,378.2840881347656,535.751220703125,389.0885925292969],"content":"which the magnetic field fluctuations parallel to the shock front are amplified. The downstream perturbations of the magnetic field","score":1,"type":"text"}]},{"bbox":[59,388.2471008300781,535,399.0516052246094],"spans":[{"bbox":[59.527950286865234,388.2471008300781,180.19773864746094,399.0516052246094],"content":"lines are further amplified by the","score":1,"type":"text"},{"bbox":[180.19773864746094,388.2471008300781,227.1071014404297,398.9529724121094],"content":" compressive","score":1,"type":"text"},{"bbox":[227.1071014404297,388.2471008300781,535.7522583007812,399.0516052246094],"content":" downstream velocity gradient between the shock and the condensation front caused","score":1,"type":"text"}]},{"bbox":[59,398.2101135253906,535,409.0146179199219],"spans":[{"bbox":[59.5279541015625,398.2101135253906,535.751220703125,409.0146179199219],"content":"by the settlement of the gas onto the dense layer. This mechanism causes the magnetic field to become increasingly parallel to the","score":1,"type":"text"}]},{"bbox":[59,408.172119140625,535,418.97662353515625],"spans":[{"bbox":[59.5279541015625,408.172119140625,535.7513427734375,418.97662353515625],"content":"dense layer, and the development of a shear flow around the latter. Furthermore, the bending-mode perturbations on the dense layer","score":1,"type":"text"}]},{"bbox":[59,418.1351318359375,535,428.93963623046875],"spans":[{"bbox":[59.5279541015625,418.1351318359375,535.7510375976562,428.93963623046875],"content":"are amplified by the non-linear thin-shell instability (NTSI), stretching the density structures formed by the thermal instability, and","score":1,"type":"text"}]},{"bbox":[59,428.09814453125,535,438.90264892578125],"spans":[{"bbox":[59.5279541015625,428.09814453125,355.9569396972656,438.90264892578125],"content":"rendering them parallel to the bent field lines. By extension, we suggest that a tidal","score":1,"type":"text"},{"bbox":[355.9569396972656,428.09814453125,393.57122802734375,438.80401611328125],"content":" stretching","score":1,"type":"text"},{"bbox":[393.57122802734375,428.09814453125,535.7483520507812,438.90264892578125],"content":" velocity gradient such as that produced","score":1,"type":"text"}]},{"bbox":[59,438.0601501464844,535,448.8646545410156],"spans":[{"bbox":[59.5279541015625,438.0601501464844,535.7513427734375,448.8646545410156],"content":"in gas infalling into a self-gravitating structure must straighten the field lines along the accretion flow, orienting them perpendicular","score":1,"type":"text"}]},{"bbox":[59,448.0231628417969,535,458.8276672363281],"spans":[{"bbox":[59.5279541015625,448.0231628417969,535.7510986328125,458.8276672363281],"content":"to the density structures. We also find that the upstream superalfvénic regime transitions to a transalfvénic regime between the shock","score":1,"type":"text"}]},{"bbox":[59,457.98516845703125,535,468.7896728515625],"spans":[{"bbox":[59.5279541015625,457.98516845703125,535.7510375976562,468.7896728515625],"content":"and the condensation front, and then to a subalfvénic regime inside the condensations. Finally, in two-dimensional simulations with a","score":1,"type":"text"}]},{"bbox":[59,467.94818115234375,524.3818969726562,478.752685546875],"spans":[{"bbox":[59.5279541015625,467.94818115234375,524.3818969726562,478.752685546875],"content":"curved collision front, the presence of the magnetic field inhibits the generation of turbulence by the shear around the dense layer.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,477.91119384765625,535,498.6777038574219],"lines":[{"bbox":[59,477.91119384765625,535,488.7156982421875],"spans":[{"bbox":[59.5279541015625,478.0784912109375,108.1572265625,488.623779296875],"content":"Conclusions.","score":1,"type":"text"},{"bbox":[108.1572265625,477.91119384765625,535.7467651367188,488.7156982421875],"content":" Our results provide a feasible physical mechanism for the observed transition from parallel to perpendicular relative","score":1,"type":"text"}]},{"bbox":[59,487.8731994628906,529,498.6777038574219],"spans":[{"bbox":[59.5279541015625,487.8731994628906,528.9368286132812,498.6777038574219],"content":"orientation of the magnetic field and the density structures as the density structures become increasingly dominated by self-gravity.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,503.8141784667969,420.0631103515625,514.7141723632812],"lines":[{"bbox":[59,503.8141784667969,420.0631103515625,514.7141723632812],"spans":[{"bbox":[59.5279541015625,504.0155334472656,104.37522888183594,514.7141723632812],"content":"Key words.","score":1,"type":"text"},{"bbox":[104.37522888183594,503.8141784667969,420.0631103515625,514.61865234375],"content":" Magnetic fields – ISM: clouds –ISM: magnetic fields – ISM: kinematics and dynamics","score":1,"type":"text"}]}],"type":"text"},{"bbox":[38,537,109,550],"lines":[{"bbox":[36.849952697753906,538.0780639648438,109.05316162109375,551.0947875976562],"spans":[{"bbox":[36.849952697753906,538.0780639648438,109.05316162109375,551.0947875976562],"content":"1. Introduction","score":1,"type":"text"}]}],"type":"title"},{"bbox":[37,562.668701171875,291,760.9756469726562],"lines":[{"bbox":[37,562.668701171875,291,574.6736450195312],"spans":[{"bbox":[36.849952697753906,562.668701171875,291.97222900390625,574.6736450195312],"content":"Studying the role of magnetic fields in the formation and evo-","score":1,"type":"text"}]},{"bbox":[37,573.627685546875,291,585.6326293945312],"spans":[{"bbox":[36.849952697753906,573.627685546875,291.9721984863281,585.6326293945312],"content":"lution of atomic and molecular clouds (MCs) has been an im-","score":1,"type":"text"}]},{"bbox":[37,584.586669921875,291,596.5916137695312],"spans":[{"bbox":[36.849952697753906,584.586669921875,291.97216796875,596.5916137695312],"content":"portant research topic for both observational and theoretical as-","score":1,"type":"text"}]},{"bbox":[37,595.545654296875,291,607.5505981445312],"spans":[{"bbox":[36.849952697753906,595.545654296875,291.9721374511719,607.5505981445312],"content":"tronomy. Magnetic fields are thought to be an important ingre-","score":1,"type":"text"}]},{"bbox":[37,606.5046997070312,291,618.5096435546875],"spans":[{"bbox":[36.849952697753906,606.5046997070312,291.97216796875,618.5096435546875],"content":"dient in the dynamics of the ISM, providing a possible support","score":1,"type":"text"}]},{"bbox":[37,617.4636840820312,291,629.4686279296875],"spans":[{"bbox":[36.849952697753906,617.4636840820312,291.97222900390625,629.4686279296875],"content":"mechanism against gravitational collapse, and guiding the gas","score":1,"type":"text"}]},{"bbox":[37,628.4226684570312,291,640.4276123046875],"spans":[{"bbox":[36.849952697753906,628.4226684570312,291.9721984863281,640.4276123046875],"content":"flow in the surroundings of filamentary structures, among many","score":1,"type":"text"}]},{"bbox":[37,639.3817138671875,291,651.3866577148438],"spans":[{"bbox":[36.849952697753906,639.3817138671875,65.88097381591797,651.3866577148438],"content":"other e","score":1,"type":"text"},{"bbox":[65.87995147705078,641.0350341796875,71.85751342773438,650.9976196289062],"content":"ff","score":1,"type":"text"},{"bbox":[71.85694885253906,639.3817138671875,291.9705810546875,651.3866577148438],"content":"ects. In addition, a tight correlation between the ori-","score":1,"type":"text"}]},{"bbox":[37,650.3406982421875,291,662.3456420898438],"spans":[{"bbox":[36.84994888305664,650.3406982421875,291.9721984863281,662.3456420898438],"content":"entation of the magnetic field and cold atomic clouds (CACs)","score":1,"type":"text"}]},{"bbox":[37,661.2996826171875,291,673.3046264648438],"spans":[{"bbox":[36.84994888305664,661.2996826171875,291.9721984863281,673.3046264648438],"content":"has been identified in the last decade. For example, Clark et al.","score":1,"type":"text"}]},{"bbox":[37,672.2586669921875,291,684.2636108398438],"spans":[{"bbox":[36.84994888305664,672.2586669921875,291.97222900390625,684.2636108398438],"content":"(2015) found that the plane of the sky magnetic field, measured","score":1,"type":"text"}]},{"bbox":[37,683.2166748046875,291,695.2216186523438],"spans":[{"bbox":[36.84994888305664,683.2166748046875,291.9721984863281,695.2216186523438],"content":"using polarized thermal dust emission, is aligned with atomic","score":1,"type":"text"}]},{"bbox":[37,694.1756591796875,291,706.1806030273438],"spans":[{"bbox":[36.84994888305664,694.1756591796875,291.97222900390625,706.1806030273438],"content":"hydrogen structures detected with HI emission and Clark et al.","score":1,"type":"text"}]},{"bbox":[37,705.1346435546875,291,717.1395874023438],"spans":[{"bbox":[36.84994888305664,705.1346435546875,234.73712158203125,717.1395874023438],"content":"(2014) also observed a similar alignment in HI","score":1,"type":"text"},{"bbox":[234.73712158203125,705.1346435546875,260.9491882324219,717.0299682617188],"content":" fibers","score":1,"type":"text"},{"bbox":[260.9489440917969,705.1346435546875,291.97247314453125,717.1395874023438],"content":", which","score":1,"type":"text"}]},{"bbox":[37,716.0936889648438,291,728.0986328125],"spans":[{"bbox":[36.849945068359375,716.0936889648438,291.9721984863281,728.0986328125],"content":"are thin long dense structures identified in HI emission using","score":1,"type":"text"}]},{"bbox":[37,727.0526733398438,291,739.0576171875],"spans":[{"bbox":[36.849945068359375,727.0526733398438,291.9721374511719,739.0576171875],"content":"the Rolling Hough transform. In addition, Planck Collabora-","score":1,"type":"text"}]},{"bbox":[37,738.0116577148438,291,750.0166015625],"spans":[{"bbox":[36.849945068359375,738.0116577148438,291.9721374511719,750.0166015625],"content":"tion et al. (2016a) found that the plane of the sky magnetic","score":1,"type":"text"}]},{"bbox":[37,748.970703125,291,760.9756469726562],"spans":[{"bbox":[36.849945068359375,748.970703125,291.97222900390625,760.9756469726562],"content":"field, detected using polarized thermal dust emission, is aligned","score":1,"type":"text"}]},{"bbox":[303,538.7076416015625,558,550.7125854492188],"spans":[{"bbox":[303.30694580078125,538.7076416015625,558.42919921875,550.7125854492188],"content":"with molecular structures traced by dust, and Planck Collabo-","score":1,"type":"text"}]},{"bbox":[303,549.6666870117188,558,561.671630859375],"spans":[{"bbox":[303.30694580078125,549.6666870117188,558.4290161132812,561.671630859375],"content":"ration et al. (2016b) found that the relative orientation of the","score":1,"type":"text"}]},{"bbox":[303,560.6256713867188,558,572.630615234375],"spans":[{"bbox":[303.30694580078125,560.6256713867188,558.42919921875,572.630615234375],"content":"projected magnetic field and dust filaments changes from par-","score":1,"type":"text"}]},{"bbox":[303,571.5846557617188,558,583.589599609375],"spans":[{"bbox":[303.30694580078125,571.5846557617188,558.42919921875,583.589599609375],"content":"allel to perpendicular when sampling higher density regions in","score":1,"type":"text"}]},{"bbox":[303,582.5426635742188,558,594.547607421875],"spans":[{"bbox":[303.30694580078125,582.5426635742188,558.4292602539062,594.547607421875],"content":"nearby MCs. Skalidis et al. (2022) studied the role of the mag-","score":1,"type":"text"}]},{"bbox":[303,593,558,607.0015869140625],"spans":[{"bbox":[303.30694580078125,593.5016479492188,445.662353515625,605.506591796875],"content":"netic field in the transition between ","score":1,"type":"text"},{"bbox":[445,593,478,604],"content":"\\mathrm{HI}-\\mathrm{H}_{2}","score":0.87,"type":"inline_equation"},{"bbox":[477.6148376464844,593.5016479492188,558.4295043945312,607.0015869140625],"content":" using multiple trac-","score":1,"type":"text"}]},{"bbox":[303,604.460693359375,558,616.4656372070312],"spans":[{"bbox":[303.3069152832031,604.460693359375,558.4293212890625,616.4656372070312],"content":"ers to investigate the gas properties of Ursa Minor. They found","score":1,"type":"text"}]},{"bbox":[303,615.419677734375,558,627.4246215820312],"spans":[{"bbox":[303.3069152832031,615.419677734375,558.42919921875,627.4246215820312],"content":"that turbulence is transalfvénic and that the gas probably accu-","score":1,"type":"text"}]},{"bbox":[303,626.378662109375,558,638.3836059570312],"spans":[{"bbox":[303.3069152832031,626.378662109375,558.4291381835938,638.3836059570312],"content":"mulates along magnetic field lines and generates overdensities","score":1,"type":"text"}]},{"bbox":[303,637.337646484375,426.364990234375,649.3425903320312],"spans":[{"bbox":[303.3069152832031,637.337646484375,426.364990234375,649.3425903320312],"content":"where molecular gas can form.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,538.7076416015625,558,649.3425903320312],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,650.3406982421875,558,760.9755859375],"lines":[{"bbox":[318.25091552734375,650.3406982421875,558,662.3456420898438],"spans":[{"bbox":[318.25091552734375,650.3406982421875,558.42919921875,662.3456420898438],"content":"However, the origin of these alignments remains unclear, as","score":1,"type":"text"}]},{"bbox":[303,661.2996826171875,558,673.3046264648438],"spans":[{"bbox":[303.3069152832031,661.2996826171875,558.42919921875,673.3046264648438],"content":"most of the observational evidence refers to spatial and orien-","score":1,"type":"text"}]},{"bbox":[303,672.2576904296875,558,684.2626342773438],"spans":[{"bbox":[303.3069152832031,672.2576904296875,558.4290161132812,684.2626342773438],"content":"tation correlations without a clear understanding of the causal-","score":1,"type":"text"}]},{"bbox":[303,683.2166748046875,558,695.2216186523438],"spans":[{"bbox":[303.3069152832031,683.2166748046875,558.4290161132812,695.2216186523438],"content":"ity involved. Therefore, it is crucial to understand the interplay","score":1,"type":"text"}]},{"bbox":[303,694.1756591796875,558,706.1806030273438],"spans":[{"bbox":[303.3069152832031,694.1756591796875,558.4293212890625,706.1806030273438],"content":"between the precursors of molecular clouds (MCs) and mag-","score":1,"type":"text"}]},{"bbox":[303,705.1346435546875,558,717.1395874023438],"spans":[{"bbox":[303.3069152832031,705.1346435546875,558.42919921875,717.1395874023438],"content":"netic fields. Since CACs are thought to constitute the primordial","score":1,"type":"text"}]},{"bbox":[303,716.0936279296875,558,728.0985717773438],"spans":[{"bbox":[303.3069152832031,716.0936279296875,558.4290771484375,728.0985717773438],"content":"place for the early stages of the evolution of molecular clouds","score":1,"type":"text"}]},{"bbox":[303,727.0526733398438,558,739.0576171875],"spans":[{"bbox":[303.3069152832031,727.0526733398438,558.4291381835938,739.0576171875],"content":"and, eventually, star-forming regions (e.g., Koyama & Inutsuka","score":1,"type":"text"}]},{"bbox":[303,738.0116577148438,558,750.0166015625],"spans":[{"bbox":[303.3069152832031,738.0116577148438,558.4290771484375,750.0166015625],"content":"2002; Audit & Hennebelle 2005; Vázquez-Semadeni et al. 2006;","score":1,"type":"text"}]},{"bbox":[303,748.9706420898438,558,760.9755859375],"spans":[{"bbox":[303.3069152832031,748.9706420898438,558.4292602539062,760.9755859375],"content":"Heitsch et al. 2006; Heiner et al. 2015; Seifried et al. 2017), un-","score":1,"type":"text"}]},{"bbox":[36,56.56658935546875,291,68.57152557373047],"spans":[{"bbox":[36.84999084472656,56.56658935546875,291.97222900390625,68.57152557373047],"content":"derstanding the alignment mechanism of magnetic field lines in","cross_page":true,"score":1,"type":"text"}]},{"bbox":[36,67.52557373046875,291,79.53050994873047],"spans":[{"bbox":[36.84999084472656,67.52557373046875,291.9722595214844,79.53050994873047],"content":"CACs is relevant to elucidate the role of magnetic fields in the","cross_page":true,"score":1,"type":"text"}]},{"bbox":[36,78.48455810546875,186.8269805908203,90.48949432373047],"spans":[{"bbox":[36.84999084472656,78.48455810546875,186.8269805908203,90.48949432373047],"content":"formation of MCs and star formation.","cross_page":true,"score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[303,739,558,759],"lines":[{"bbox":[305.2969970703125,736.6730346679688,558.4263305664062,750.7325439453125],"spans":[{"bbox":[305.2969970703125,739.4346923828125,308.2857971191406,746.6376953125],"content":"1","score":1,"type":"text"},{"bbox":[308.2857971191406,736.6730346679688,558.4263305664062,750.7325439453125],"content":" With the typographical corrections given in Vázquez-Semadeni et al.","score":1,"type":"text"}]},{"bbox":[303.3070068359375,749.8910522460938,327.2114562988281,760.695556640625],"spans":[{"bbox":[303.3070068359375,749.8910522460938,327.2114562988281,760.695556640625],"content":"(2007)","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[241,34,354,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[37,771,139,779],"lines":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"spans":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"content":"Article number, page 2 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":1,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[36,56.56658935546875,291,90.48949432373047],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[36,89.72857666015625,291,200.36338806152344],"lines":[{"bbox":[51,89.72857666015625,291,101.73351287841797],"spans":[{"bbox":[51.79399108886719,89.72857666015625,291.9723205566406,101.73351287841797],"content":"To study this correlation statistically, Soler et al. (2013) pro-","score":1,"type":"text"}]},{"bbox":[36,100.68756103515625,291,112.69249725341797],"spans":[{"bbox":[36.84999084472656,100.68756103515625,291.97222900390625,112.69249725341797],"content":"posed the histogram of relative orientations (HRO) and found","score":1,"type":"text"}]},{"bbox":[36,111.64556884765625,291,123.65050506591797],"spans":[{"bbox":[36.84999084472656,111.64556884765625,291.97222900390625,123.65050506591797],"content":"that the relative orientation of the magnetic field and isodensity","score":1,"type":"text"}]},{"bbox":[36,122.60455322265625,291,134.60948181152344],"spans":[{"bbox":[36.84999084472656,122.60455322265625,291.9722595214844,134.60948181152344],"content":"contours changes from parallel to perpendicular in a high mag-","score":1,"type":"text"}]},{"bbox":[36,133.56353759765625,291,145.56846618652344],"spans":[{"bbox":[36.84999084472656,133.56353759765625,79.30062866210938,145.56846618652344],"content":"netization ","score":1,"type":"text"},{"bbox":[80,134,116,145],"content":"(\\beta\\,=\\,0.1)","score":0.88,"type":"inline_equation"},{"bbox":[114.49229431152344,133.56353759765625,291.96600341796875,145.56846618652344],"content":") computer-simulated cloud. This change of","score":1,"type":"text"}]},{"bbox":[36,144.52252197265625,291,156.52745056152344],"spans":[{"bbox":[36.84999084472656,144.52252197265625,291.97216796875,156.52745056152344],"content":"orientation was studied in Soler & Hennebelle (2017) with an","score":1,"type":"text"}]},{"bbox":[36,155.48150634765625,291,167.48643493652344],"spans":[{"bbox":[36.84999084472656,155.48150634765625,291.9721984863281,167.48643493652344],"content":"analytic approach where the authors found the parallel or anti-","score":1,"type":"text"}]},{"bbox":[36,166.44049072265625,291,178.44541931152344],"spans":[{"bbox":[36.84999084472656,166.44049072265625,69.92582702636719,178.44541931152344],"content":"parallel ","score":1,"type":"text"},{"bbox":[70,167,128,178],"content":"(\\phi\\,=\\,0^{\\circ},180^{\\circ})","score":0.79,"type":"inline_equation"},{"bbox":[128.53652954101562,166.44049072265625,207.2908935546875,178.44541931152344],"content":" and perpendicular ","score":1,"type":"text"},{"bbox":[208,167,246,178],"content":"(\\phi\\,=\\,90^{\\circ})","score":0.88,"type":"inline_equation"},{"bbox":[244.50599670410156,166.44049072265625,291.9678039550781,178.44541931152344],"content":") configura-","score":1,"type":"text"}]},{"bbox":[36,177.39947509765625,291,189.40440368652344],"spans":[{"bbox":[36.84999084472656,177.39947509765625,291.9722595214844,189.40440368652344],"content":"tions are equilibrium points. Therefore, they argue, the system","score":1,"type":"text"}]},{"bbox":[36,188.35845947265625,167.9390106201172,200.36338806152344],"spans":[{"bbox":[36.84999084472656,188.35845947265625,129.78111267089844,200.36338806152344],"content":"tends to evolve to these","score":1,"type":"text"},{"bbox":[131,189,138,200],"content":"\\phi","score":0.85,"type":"inline_equation"},{"bbox":[137.75241088867188,188.35845947265625,167.9390106201172,200.36338806152344],"content":" values.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,199.6014404296875,291,288.31927490234375],"lines":[{"bbox":[51,199.6014404296875,291,211.6063690185547],"spans":[{"bbox":[51.793983459472656,199.6014404296875,291.9723205566406,211.6063690185547],"content":"More recently, Seifried et al. (2020) investigated the rela-","score":1,"type":"text"}]},{"bbox":[36,210.5604248046875,291,222.5653533935547],"spans":[{"bbox":[36.84998321533203,210.5604248046875,291.9722595214844,222.5653533935547],"content":"tive orientation of magnetic field and three- and two-dimensional","score":1,"type":"text"}]},{"bbox":[36,221.5194091796875,291,233.5243377685547],"spans":[{"bbox":[36.84998321533203,221.5194091796875,291.97222900390625,233.5243377685547],"content":"projected structures using synthetic dust polarization maps. They","score":1,"type":"text"}]},{"bbox":[36,232.4783935546875,291,244.4833221435547],"spans":[{"bbox":[36.84998321533203,232.4783935546875,291.97222900390625,244.4833221435547],"content":"found that the magnetic field changes its orientation from paral-","score":1,"type":"text"}]},{"bbox":[36,239.82135009765625,291,255.4423065185547],"spans":[{"bbox":[36.84998321533203,243.4373779296875,124.9791259765625,255.4423065185547],"content":"lel to perpendicular at","score":1,"type":"text"},{"bbox":[126,242,207,254],"content":"n\\approx10^{2}-\\mathrm{\\bar{10^{3}}}\\,\\mathrm{cm}^{-3}","score":0.92,"type":"inline_equation"},{"bbox":[206.7588653564453,239.82135009765625,210.073974609375,255.4423065185547],"content":" ","score":1,"type":"text"},{"bbox":[210.073974609375,243.4373779296875,291.9665222167969,255.4423065185547],"content":"in regions where the","score":1,"type":"text"}]},{"bbox":[36,254.3963623046875,291,266.40130615234375],"spans":[{"bbox":[36.8499755859375,254.3963623046875,291.97216796875,266.40130615234375],"content":"mass-to-flux ratio has values close to or below 1. In addition,","score":1,"type":"text"}]},{"bbox":[36,265.3553466796875,291,277.36029052734375],"spans":[{"bbox":[36.8499755859375,265.3553466796875,148.72000122070312,277.36029052734375],"content":"they found that projection e","score":1,"type":"text"},{"bbox":[148.72097778320312,267.0086669921875,154.6985321044922,276.9712829589844],"content":"ff","score":1,"type":"text"},{"bbox":[154.69798278808594,265.3553466796875,291.9726257324219,277.36029052734375],"content":"ects due to the relative orientation","score":1,"type":"text"}]},{"bbox":[36,276.3143310546875,278.6726989746094,288.31927490234375],"spans":[{"bbox":[36.84998321533203,276.3143310546875,184.43592834472656,288.31927490234375],"content":"between the cloud and the observer a","score":1,"type":"text"},{"bbox":[184.43698120117188,277.9676513671875,190.41453552246094,287.9302673339844],"content":"ff","score":1,"type":"text"},{"bbox":[190.4139862060547,276.3143310546875,278.6726989746094,288.31927490234375],"content":"ect the measurements.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,287.55731201171875,291,431.069091796875],"lines":[{"bbox":[51,287.55731201171875,291,299.562255859375],"spans":[{"bbox":[51.79399108886719,287.55731201171875,291.9722900390625,299.562255859375],"content":"The relative orientation of the magnetic field alignment with","score":1,"type":"text"}]},{"bbox":[36,298.51629638671875,291,310.521240234375],"spans":[{"bbox":[36.84999084472656,298.51629638671875,291.9723205566406,310.521240234375],"content":"CACs is, arguably, intrinsically related to the formation mecha-","score":1,"type":"text"}]},{"bbox":[36,309.47528076171875,291,321.480224609375],"spans":[{"bbox":[36.84999084472656,309.47528076171875,291.97222900390625,321.480224609375],"content":"nism of CACs. The formation of cold atomic clouds (CACs) by","score":1,"type":"text"}]},{"bbox":[36,320.43426513671875,291,332.439208984375],"spans":[{"bbox":[36.84999084472656,320.43426513671875,291.9722595214844,332.439208984375],"content":"colliding flows with pure hydrodynamic was studied in Heitsch","score":1,"type":"text"}]},{"bbox":[36,331.39324951171875,291,343.398193359375],"spans":[{"bbox":[36.84999084472656,331.39324951171875,291.9721984863281,343.398193359375],"content":"et al. (2006), where the authors performed simulations of collid-","score":1,"type":"text"}]},{"bbox":[36,342.35223388671875,291,354.357177734375],"spans":[{"bbox":[36.84999084472656,342.35223388671875,291.97222900390625,354.357177734375],"content":"ing warm neutral gas streams, including the multi-phase nature","score":1,"type":"text"}]},{"bbox":[36,353.31121826171875,291,365.316162109375],"spans":[{"bbox":[36.84999084472656,353.31121826171875,291.9722595214844,365.316162109375],"content":"of the ISM and not considering gravity nor magnetic fields. They","score":1,"type":"text"}]},{"bbox":[36,364.27020263671875,291,376.275146484375],"spans":[{"bbox":[36.84999084472656,364.27020263671875,291.9722595214844,376.275146484375],"content":"discussed three important instabilities that might play a role in","score":1,"type":"text"}]},{"bbox":[36,375.22821044921875,291,387.233154296875],"spans":[{"bbox":[36.84999084472656,375.22821044921875,291.97222900390625,387.233154296875],"content":"the formation of CACs: the thermal instability (TI), the Kelvin-","score":1,"type":"text"}]},{"bbox":[36,386.18719482421875,291,398.192138671875],"spans":[{"bbox":[36.84999084472656,386.18719482421875,291.9721984863281,398.192138671875],"content":"Helmholtz instability (KHI), and the non-linear thin-shell in-","score":1,"type":"text"}]},{"bbox":[36,397.14617919921875,291,409.151123046875],"spans":[{"bbox":[36.84999084472656,397.14617919921875,291.9723205566406,409.151123046875],"content":"stability (NTSI). They concluded that these instabilities break","score":1,"type":"text"}]},{"bbox":[36,408.10516357421875,291,420.110107421875],"spans":[{"bbox":[36.84999084472656,408.10516357421875,291.9722595214844,420.110107421875],"content":"up the coherent flows, seeding small-scale density perturbations","score":1,"type":"text"}]},{"bbox":[36,419.06414794921875,274.5974426269531,431.069091796875],"spans":[{"bbox":[36.84999084472656,419.06414794921875,274.5974426269531,431.069091796875],"content":"necessary for gravitational collapse and thus star formation.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,430.3081359863281,291,584.7779541015625],"lines":[{"bbox":[51,430.3081359863281,291,442.3130798339844],"spans":[{"bbox":[51.79399108886719,430.3081359863281,291.9722595214844,442.3130798339844],"content":"Hennebelle (2013) studied the formation of non-self-","score":1,"type":"text"}]},{"bbox":[36,441.26715087890625,291,453.2720947265625],"spans":[{"bbox":[36.84999084472656,441.26715087890625,291.97222900390625,453.2720947265625],"content":"gravitating CACs in the ISM. This author focused on finding","score":1,"type":"text"}]},{"bbox":[36,452.22515869140625,291,464.2301025390625],"spans":[{"bbox":[36.84999084472656,452.22515869140625,291.97222900390625,464.2301025390625],"content":"the mechanism responsible for the elongation of CACs and con-","score":1,"type":"text"}]},{"bbox":[36,463.18414306640625,291,475.1890869140625],"spans":[{"bbox":[36.84999084472656,463.18414306640625,291.97222900390625,475.1890869140625],"content":"cluded that the clouds are generated by the stretching induced","score":1,"type":"text"}]},{"bbox":[36,474.14312744140625,291,486.1480712890625],"spans":[{"bbox":[36.84999084472656,474.14312744140625,291.9722900390625,486.1480712890625],"content":"by turbulence because they are aligned with the strain. More-","score":1,"type":"text"}]},{"bbox":[36,485.10211181640625,291,497.1070556640625],"spans":[{"bbox":[36.84999084472656,485.10211181640625,291.97222900390625,497.1070556640625],"content":"over, the author also found that the Lorentz force confines CACs.","score":1,"type":"text"}]},{"bbox":[36,496.06109619140625,291,508.0660400390625],"spans":[{"bbox":[36.84999084472656,496.06109619140625,291.9721984863281,508.0660400390625],"content":"Inoue & Inutsuka (2016), in agreement with the previous work,","score":1,"type":"text"}]},{"bbox":[36,507.02008056640625,291,519.0250244140625],"spans":[{"bbox":[36.84999084472656,507.02008056640625,291.9721374511719,519.0250244140625],"content":"found that the strain is also the origin of the magnetic field align-","score":1,"type":"text"}]},{"bbox":[36,517.9790649414062,291,529.9840087890625],"spans":[{"bbox":[36.84999084472656,517.9790649414062,291.9722595214844,529.9840087890625],"content":"ment with fibers in HI clouds formed in a shock-compressed","score":1,"type":"text"}]},{"bbox":[36,528.9380493164062,291,540.9429931640625],"spans":[{"bbox":[36.84999084472656,528.9380493164062,291.97222900390625,540.9429931640625],"content":"layer using simulations resembling the local bubble. More re-","score":1,"type":"text"}]},{"bbox":[36,539.8970336914062,291,551.9019775390625],"spans":[{"bbox":[36.84999084472656,539.8970336914062,291.97216796875,551.9019775390625],"content":"cently, Gazol & Villagran (2021) studied the morphology of","score":1,"type":"text"}]},{"bbox":[36,550.8560180664062,291,562.8609619140625],"spans":[{"bbox":[36.84999084472656,550.8560180664062,291.97222900390625,562.8609619140625],"content":"CACs in forced magnetized and hydrodynamical simulations,","score":1,"type":"text"}]},{"bbox":[36,561.8140258789062,291,573.8189697265625],"spans":[{"bbox":[36.84999084472656,561.8140258789062,291.9722595214844,573.8189697265625],"content":"finding that the presence of the magnetic field increases the prob-","score":1,"type":"text"}]},{"bbox":[36,572.7730102539062,149.91551208496094,584.7779541015625],"spans":[{"bbox":[36.84999084472656,572.7730102539062,149.91551208496094,584.7779541015625],"content":"ability of filamentary CACs.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,584.0170288085938,291,650.8159790039062],"lines":[{"bbox":[51,584.0170288085938,291,596.02197265625],"spans":[{"bbox":[51.79399108886719,584.0170288085938,291.9723815917969,596.02197265625],"content":"A consequence of the supersonic gas streams forming CACs","score":1,"type":"text"}]},{"bbox":[36,594.9760131835938,291,606.98095703125],"spans":[{"bbox":[36.84999084472656,594.9760131835938,291.9721984863281,606.98095703125],"content":"is the formation of shocks. Shocks form wherever there are","score":1,"type":"text"}]},{"bbox":[36,605.9349975585938,291,617.93994140625],"spans":[{"bbox":[36.84999084472656,605.9349975585938,129.21324157714844,617.93994140625],"content":"supersonic velocity di","score":1,"type":"text"},{"bbox":[129.208984375,607.5883178710938,135.18653869628906,617.5509033203125],"content":"ff","score":1,"type":"text"},{"bbox":[135.1859893798828,605.9349975585938,291.9674377441406,617.93994140625],"content":"erences between two nearby regions.","score":1,"type":"text"}]},{"bbox":[36,616.89404296875,291,628.8989868164062],"spans":[{"bbox":[36.84999084472656,616.89404296875,291.9722595214844,628.8989868164062],"content":"Since the velocity dispersions in the neutral ISM are supersonic,","score":1,"type":"text"}]},{"bbox":[36,627.85302734375,291,639.8579711914062],"spans":[{"bbox":[36.84999084472656,627.85302734375,291.9721984863281,639.8579711914062],"content":"shocks are ubiquitous in the ISM, which, in general, produce","score":1,"type":"text"}]},{"bbox":[36,638.81103515625,205.6861572265625,650.8159790039062],"spans":[{"bbox":[36.84999084472656,638.81103515625,205.6861572265625,650.8159790039062],"content":"density fluctuations of various amplitudes.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,650.0549926757812,291,727.8129272460938],"lines":[{"bbox":[51,650.0549926757812,291,662.0599365234375],"spans":[{"bbox":[51.79399108886719,650.0549926757812,291.9723205566406,662.0599365234375],"content":"The formation of CACs out of the warm neutral medium","score":1,"type":"text"}]},{"bbox":[36,661.0140380859375,291,673.0189819335938],"spans":[{"bbox":[36.84999084472656,661.0140380859375,291.9721984863281,673.0189819335938],"content":"(WNM) in the Galactic ISM requires strong cooling in addition","score":1,"type":"text"}]},{"bbox":[36,671.9730224609375,291,683.9779663085938],"spans":[{"bbox":[36.84999084472656,671.9730224609375,291.9721984863281,683.9779663085938],"content":"to the presence of shocks. Such cooling often causes TI (Field","score":1,"type":"text"}]},{"bbox":[36,682.9320068359375,291,694.9369506835938],"spans":[{"bbox":[36.84999084472656,682.9320068359375,291.97222900390625,694.9369506835938],"content":"1965; Pikel’Ner 1968; Field et al. 1969), and in general produces","score":1,"type":"text"}]},{"bbox":[36,693.8909912109375,291,705.8959350585938],"spans":[{"bbox":[36.84999084472656,693.8909912109375,291.97216796875,705.8959350585938],"content":"large density jumps without the need for very strongly super-","score":1,"type":"text"}]},{"bbox":[36,704.8499755859375,291,716.8549194335938],"spans":[{"bbox":[36.84999084472656,704.8499755859375,291.9722595214844,716.8549194335938],"content":"sonic flows (Vázquez-Semadeni et al. 1996; Vázquez-Semadeni","score":1,"type":"text"}]},{"bbox":[36,715.8079833984375,84.44132232666016,727.8129272460938],"spans":[{"bbox":[36.84999084472656,715.8079833984375,84.44132232666016,727.8129272460938],"content":"et al. 2006).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,727.052001953125,291,760.9749755859375],"lines":[{"bbox":[51,727.052001953125,291,739.0569458007812],"spans":[{"bbox":[51.79399108886719,727.052001953125,291.9722595214844,739.0569458007812],"content":"In the presence of supersonic flows and cooling, simulations","score":1,"type":"text"}]},{"bbox":[36,738.010986328125,291,750.0159301757812],"spans":[{"bbox":[36.84999084472656,738.010986328125,291.9722595214844,750.0159301757812],"content":"show that shocked unstable gas, in transition between the WNM","score":1,"type":"text"}]},{"bbox":[36,748.9700317382812,291,760.9749755859375],"spans":[{"bbox":[36.84999084472656,748.9700317382812,291.97222900390625,760.9749755859375],"content":"and the CNM, lies between the shock front and the condensation","score":1,"type":"text"}]},{"bbox":[303,56.5660400390625,559,68.57097625732422],"spans":[{"bbox":[303.3070068359375,56.5660400390625,558.4293212890625,68.57097625732422],"content":"layer and that the separation among them is due to the cooling","score":1,"type":"text"}]},{"bbox":[303,67.5250244140625,559,79.52996063232422],"spans":[{"bbox":[303.3070068359375,67.5250244140625,558.4293823242188,79.52996063232422],"content":"time necessary to produce the condensation resulting from TI.","score":1,"type":"text"}]},{"bbox":[303,78.4840087890625,453.5331115722656,90.48894500732422],"spans":[{"bbox":[303.3070068359375,78.4840087890625,453.5331115722656,90.48894500732422],"content":"(e.g., Vázquez-Semadeni et al. 2006).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,56.5660400390625,559,90.48894500732422],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,90.93798828125,559,214.0258026123047],"lines":[{"bbox":[318,90.93798828125,559,102.94292449951172],"spans":[{"bbox":[318.2510070800781,90.93798828125,558.429443359375,102.94292449951172],"content":"In this paper, we focus on studying the alignment of mag-","score":1,"type":"text"}]},{"bbox":[303,101.89599609375,559,113.90093231201172],"spans":[{"bbox":[303.3070068359375,101.89599609375,558.4291381835938,113.90093231201172],"content":"netic fields and filamentary CACs by following the simultane-","score":1,"type":"text"}]},{"bbox":[303,112.85498046875,559,124.85991668701172],"spans":[{"bbox":[303.3070068359375,112.85498046875,558.4291381835938,124.85991668701172],"content":"ous evolution of magnetic field lines. This approach allows us to","score":1,"type":"text"}]},{"bbox":[303,123.81396484375,559,135.8188934326172],"spans":[{"bbox":[303.3070068359375,123.81396484375,558.4293212890625,135.8188934326172],"content":"understand the physical processes responsible and the role they","score":1,"type":"text"}]},{"bbox":[303,134.77294921875,559,146.7778778076172],"spans":[{"bbox":[303.3070068359375,134.77294921875,556.7854614257812,146.7778778076172],"content":"play in the alignment of magnetic fields with density structures.","score":1,"type":"text"}]},{"bbox":[318,147.2269287109375,559,159.2318572998047],"spans":[{"bbox":[318.2510070800781,147.2269287109375,558.4293823242188,159.2318572998047],"content":"The paper is organized as follows. We describe the simula-","score":1,"type":"text"}]},{"bbox":[303,158.1859130859375,559,170.1908416748047],"spans":[{"bbox":[303.3070068359375,158.1859130859375,558.4291381835938,170.1908416748047],"content":"tions used in this article in Section 2. In section 4, we show and","score":1,"type":"text"}]},{"bbox":[303,169.1439208984375,559,181.1488494873047],"spans":[{"bbox":[303.3070068359375,169.1439208984375,558.42919921875,181.1488494873047],"content":"explain the evolution of the 3D magnetic field lines that yield the","score":1,"type":"text"}]},{"bbox":[303,180.1029052734375,559,192.1078338623047],"spans":[{"bbox":[303.3070068359375,180.1029052734375,558.42919921875,192.1078338623047],"content":"alignment of CACs with their local magnetic field. We discuss","score":1,"type":"text"}]},{"bbox":[303,191.0618896484375,559,203.0668182373047],"spans":[{"bbox":[303.3070068359375,191.0618896484375,558.42919921875,203.0668182373047],"content":"the implications of our results in Section 5. Finally, in section 6,","score":1,"type":"text"}]},{"bbox":[303,202.0208740234375,469.32379150390625,214.0258026123047],"spans":[{"bbox":[303.3070068359375,202.0208740234375,469.32379150390625,214.0258026123047],"content":"we present the summary and conclusions.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,239,465,250],"lines":[{"bbox":[303.3070068359375,238.87228393554688,465.1552734375,251.8889617919922],"spans":[{"bbox":[303.3070068359375,238.87228393554688,465.1552734375,251.8889617919922],"content":"2. Cold atomic cloud simulations","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,258.35089111328125,559,511.4515380859375],"lines":[{"bbox":[303,258.35089111328125,559,270.3558349609375],"spans":[{"bbox":[303.3070068359375,258.35089111328125,558.4293212890625,270.3558349609375],"content":"We have performed 2D and 3D numerical simulations of cold","score":1,"type":"text"}]},{"bbox":[303,269.30987548828125,559,281.3148193359375],"spans":[{"bbox":[303.3070068359375,269.30987548828125,558.4291381835938,281.3148193359375],"content":"atomic clouds formed by the collision of warm atomic gas flow-","score":1,"type":"text"}]},{"bbox":[303,280.26885986328125,559,292.2738037109375],"spans":[{"bbox":[303.3070068359375,280.26885986328125,355.7401123046875,292.2738037109375],"content":"ing along the","score":1,"type":"text"},{"bbox":[357,282,364,290],"content":"x","score":0.77,"type":"inline_equation"},{"bbox":[363.38702392578125,280.26885986328125,558.4248657226562,292.2738037109375],"content":"-axis, and colliding at the center of the computa-","score":1,"type":"text"}]},{"bbox":[303,291.22784423828125,559,303.2327880859375],"spans":[{"bbox":[303.3070068359375,291.22784423828125,558.4293212890625,303.2327880859375],"content":"tional domain. The simulations were performed using the adap-","score":1,"type":"text"}]},{"bbox":[303,302.18682861328125,559,314.1917724609375],"spans":[{"bbox":[303.3070068359375,302.18682861328125,455.0971984863281,314.1917724609375],"content":"tive mesh refinement (AMR) code F","score":1,"type":"text"},{"bbox":[455.1000061035156,303.3537292480469,472.8832702636719,313.3163146972656],"content":"lash","score":1,"type":"text"},{"bbox":[472.8832702636719,302.18682861328125,558.4229736328125,314.1917724609375],"content":" version 4.5 (Fryxell","score":1,"type":"text"}]},{"bbox":[303,313.14581298828125,559,325.1507568359375],"spans":[{"bbox":[303.3070068359375,313.14581298828125,558.4291381835938,325.1507568359375],"content":"et al. 2000; Dubey et al. 2008; Dubey et al. 2009), and the ideal","score":1,"type":"text"}]},{"bbox":[303,324.10479736328125,559,336.1097412109375],"spans":[{"bbox":[303.3070068359375,324.10479736328125,558.4292602539062,336.1097412109375],"content":"MHD multi-wave HLL-type solver (Waagan et al. 2011). Since","score":1,"type":"text"}]},{"bbox":[303,335.06280517578125,559,347.0677490234375],"spans":[{"bbox":[303.3070068359375,335.06280517578125,558.42919921875,347.0677490234375],"content":"our goal is to study the alignment of the magnetic field with","score":1,"type":"text"}]},{"bbox":[303,346.02178955078125,559,358.0267333984375],"spans":[{"bbox":[303.3070068359375,346.02178955078125,558.42919921875,358.0267333984375],"content":"CACs before self-gravity becomes dominant, neither self-gravity","score":1,"type":"text"}]},{"bbox":[303,356.98077392578125,559,368.9857177734375],"spans":[{"bbox":[303.3070068359375,356.98077392578125,558.428955078125,368.9857177734375],"content":"nor any external gravitational potential is included in these sim-","score":1,"type":"text"}]},{"bbox":[303,367.93975830078125,559,379.9447021484375],"spans":[{"bbox":[303.3070068359375,367.93975830078125,558.4293212890625,379.9447021484375],"content":"ulations. These simulations consider inflow boundary condi-","score":1,"type":"text"}]},{"bbox":[303,378.89874267578125,559,390.9036865234375],"spans":[{"bbox":[303.3070068359375,378.89874267578125,347.979248046875,390.9036865234375],"content":"tions in the","score":1,"type":"text"},{"bbox":[349,380,357,389],"content":"x","score":0.76,"type":"inline_equation"},{"bbox":[358.3030090332031,378.89874267578125,558.421630859375,390.9036865234375],"content":"direction, and periodic boundary conditions in the","score":1,"type":"text"}]},{"bbox":[303,389.85772705078125,559,401.8626708984375],"spans":[{"bbox":[303.3070068359375,389.85772705078125,558.4290161132812,401.8626708984375],"content":"other directions. The initial conditions for both kinds of simu-","score":1,"type":"text"}]},{"bbox":[303,400.81671142578125,559,412.8216552734375],"spans":[{"bbox":[303.3070068359375,400.81671142578125,558.42919921875,412.8216552734375],"content":"lations consist of gas in thermal equilibrium with temperature","score":1,"type":"text"}]},{"bbox":[303,407.7427062988281,559,424],"spans":[{"bbox":[303,412,371,423],"content":"T_{0}=5006.25\\,^{\\circ}\\mathrm{K}","score":0.91,"type":"inline_equation"},{"bbox":[370.3069763183594,411.77569580078125,468.6976013183594,423.7806396484375],"content":", implying a sound speed","score":1,"type":"text"},{"bbox":[468.6976013183594,411.77569580078125,470.9539794921875,423.6710510253906],"content":" ","score":1,"type":"text"},{"bbox":[470,411,544,424],"content":"c_{\\mathrm{s},0}=7.36~\\mathrm{km}\\,\\mathrm{s}^{-1}","score":0.91,"type":"inline_equation"},{"bbox":[544.057861328125,407.7427062988281,546.8089599609375,423.7806396484375],"content":" ","score":1,"type":"text"},{"bbox":[546.8089599609375,411.77569580078125,558.4254150390625,423.7806396484375],"content":"for","score":1,"type":"text"}]},{"bbox":[303,422.73468017578125,559,434.7396240234375],"spans":[{"bbox":[303.30694580078125,422.73468017578125,397.134765625,434.7396240234375],"content":"a mean particle mass of ","score":1,"type":"text"},{"bbox":[397,423,427,433],"content":"1.27m_{\\mathrm{H}}","score":0.89,"type":"inline_equation"},{"bbox":[427.2909240722656,422.73468017578125,558.4287719726562,434.7396240234375],"content":", and an atomic hydrogen number","score":1,"type":"text"}]},{"bbox":[303,433,559,445.6986083984375],"spans":[{"bbox":[303.3069152832031,433.69366455078125,332.0888366699219,445.6986083984375],"content":"density","score":1,"type":"text"},{"bbox":[333,433,389,445],"content":"\\dot{n}_{H,0}=1\\,\\mathrm{cm}^{-3}","score":0.92,"type":"inline_equation"},{"bbox":[389.3669128417969,433.69366455078125,558.4223022460938,445.6986083984375],"content":". For the 3D simulation, the box size of the","score":1,"type":"text"}]},{"bbox":[303,444.65167236328125,559,456.6566162109375],"spans":[{"bbox":[303.3069152832031,444.65167236328125,354.2356872558594,456.6566162109375],"content":"simulation is","score":1,"type":"text"},{"bbox":[355,445,385,455],"content":"L=64","score":0.68,"type":"inline_equation"},{"bbox":[385.7642517089844,444.65167236328125,508.0650329589844,456.6566162109375],"content":"pc and the highest resolution is","score":1,"type":"text"},{"bbox":[509,445,557,455],"content":"0.03125~\\mathrm{pc}","score":0.32,"type":"inline_equation"},{"bbox":[555.9354858398438,444.65167236328125,558.4261474609375,456.6566162109375],"content":".","score":1,"type":"text"}]},{"bbox":[303,455.61065673828125,559,467.6156005859375],"spans":[{"bbox":[303.3069152832031,455.61065673828125,441.99615478515625,467.6156005859375],"content":"The gas inside a cylinder of radius","score":1,"type":"text"},{"bbox":[443,456,485,467],"content":"R=16\\,\\mathrm{{pc}}","score":0.88,"type":"inline_equation"},{"bbox":[484.7799377441406,455.61065673828125,514.9367065429688,467.6156005859375],"content":", length","score":1,"type":"text"},{"bbox":[514.9367065429688,457.0379333496094,517.7078857421875,467.0005187988281],"content":" ","score":1,"type":"text"},{"bbox":[517,456,556,467],"content":"\\ell=64\\,\\mathrm{pc}","score":0.85,"type":"inline_equation"},{"bbox":[555.93701171875,455.61065673828125,558.4276733398438,467.6156005859375],"content":",","score":1,"type":"text"}]},{"bbox":[303,466.56964111328125,559,478.5745849609375],"spans":[{"bbox":[303.306884765625,466.56964111328125,558.428955078125,478.5745849609375],"content":"and centered in the middle of the computational domain, has a","score":1,"type":"text"}]},{"bbox":[303,473.4956359863281,535.7941284179688,489.5335693359375],"spans":[{"bbox":[303.306884765625,477.52862548828125,335.25689697265625,489.5335693359375],"content":"velocity","score":1,"type":"text"},{"bbox":[335.25689697265625,477.52862548828125,337.9588928222656,489.4239807128906],"content":" ","score":1,"type":"text"},{"bbox":[337,477,412,489],"content":"u_{0}=\\pm14.7\\,\\mathrm{km\\,s^{-1}}","score":0.91,"type":"inline_equation"},{"bbox":[412.0307922363281,473.4956359863281,415.2298889160156,489.5335693359375],"content":" ","score":1,"type":"text"},{"bbox":[415.2298889160156,477.52862548828125,452.24090576171875,489.5335693359375],"content":"along the","score":1,"type":"text"},{"bbox":[452.24090576171875,477.52862548828125,455.4429016113281,489.4239807128906],"content":" ","score":1,"type":"text"},{"bbox":[454,479,461,487],"content":"x","score":0.75,"type":"inline_equation"},{"bbox":[459.8663024902344,477.52862548828125,535.7941284179688,489.5335693359375],"content":" direction, with the","score":1,"type":"text"}]},{"bbox":[303,488.48760986328125,559,500.4925537109375],"spans":[{"bbox":[303.306884765625,488.48760986328125,534.598388671875,500.4925537109375],"content":"tive and negative values applying to the left and right of the","score":1,"type":"text"},{"bbox":[534.598388671875,488.48760986328125,541.5432739257812,500.3829650878906],"content":" x","score":1,"type":"text"},{"bbox":[536,489,559,498],"content":"x=0","score":0.9,"type":"inline_equation"}]},{"bbox":[303,499.44659423828125,379.45098876953125,511.4515380859375],"spans":[{"bbox":[303.3068542480469,499.44659423828125,379.45098876953125,511.4515380859375],"content":"plane, respectively.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,511.89959716796875,559,692.2505493164062],"lines":[{"bbox":[318,511.89959716796875,559,523.904541015625],"spans":[{"bbox":[318.2508544921875,511.89959716796875,479.0671081542969,523.904541015625],"content":"For the 2D simulation, the box size is","score":1,"type":"text"},{"bbox":[479.0671081542969,511.89959716796875,483.4498596191406,523.794921875],"content":" ","score":1,"type":"text"},{"bbox":[482,512,528,523],"content":"L~=~20\\,\\mathrm{pc}","score":0.86,"type":"inline_equation"},{"bbox":[528.0169677734375,511.89959716796875,558.4227905273438,523.904541015625],"content":" with a","score":1,"type":"text"}]},{"bbox":[303,522.8585815429688,559,534.863525390625],"spans":[{"bbox":[303.306884765625,522.8585815429688,558.4290771484375,534.863525390625],"content":"uniform grid and 512 cells per dimension, resulting in a reso-","score":1,"type":"text"}]},{"bbox":[303,533.8175659179688,559,545.822509765625],"spans":[{"bbox":[303.306884765625,533.8175659179688,446.2601013183594,545.822509765625],"content":"lution of 0.039 pc, and the main di","score":1,"type":"text"},{"bbox":[446.2598876953125,535.4708862304688,452.2374572753906,545.4334716796875],"content":"ff","score":1,"type":"text"},{"bbox":[452.2378845214844,533.8175659179688,558.42919921875,545.822509765625],"content":"erence is that the collision","score":1,"type":"text"}]},{"bbox":[303,544.7765502929688,559,556.781494140625],"spans":[{"bbox":[303.306884765625,544.7765502929688,558.4290771484375,556.781494140625],"content":"front in this simulation has a sinusoidal shape, in order to trigger","score":1,"type":"text"}]},{"bbox":[303,555.7355346679688,559,567.740478515625],"spans":[{"bbox":[303.306884765625,555.7355346679688,558.428955078125,567.740478515625],"content":"the nonlinear thin-shell instability (NTSI) described in Vishniac","score":1,"type":"text"}]},{"bbox":[303,566.6945190429688,559,578.699462890625],"spans":[{"bbox":[303.306884765625,566.6945190429688,558.4290771484375,578.699462890625],"content":"(1994). This interface is accomplished by requiring that simula-","score":1,"type":"text"}]},{"bbox":[303,577,559,592],"spans":[{"bbox":[303.306884765625,579.3465576171875,365.0251159667969,591.3515014648438],"content":"tion points with","score":1,"type":"text"},{"bbox":[366,577,429,591],"content":"\\begin{array}{r}{x<3.0\\sin(\\frac{8\\pi y}{20})}\\end{array}","score":0.91,"type":"inline_equation"},{"bbox":[425.6000061035156,579.3485717773438,456.4342346191406,591.353515625],"content":") pc and","score":1,"type":"text"},{"bbox":[457,578,521,592],"content":"\\begin{array}{r}{x>3.0\\sin(\\frac{8\\pi y}{20})}\\end{array}","score":0.91,"type":"inline_equation"},{"bbox":[517.0180053710938,579.3485717773438,558.4226684570312,591.353515625],"content":") pc have a","score":1,"type":"text"}]},{"bbox":[415.79901123046875,585.5472412109375,422.7728271484375,593.95068359375],"spans":[{"bbox":[415.79901123046875,585.5472412109375,422.7728271484375,593.95068359375],"content":"20","score":1,"type":"text"}]},{"bbox":[303,588.5415649414062,559,604.5785522460938],"spans":[{"bbox":[303.3070068359375,592.5736083984375,335.25701904296875,604.5785522460938],"content":"velocity","score":1,"type":"text"},{"bbox":[335.25701904296875,592.5736083984375,338.02301025390625,604.4689331054688],"content":" ","score":1,"type":"text"},{"bbox":[337,592,413,604],"content":"u_{0}=\\pm14.7\\,\\mathrm{km\\,s^{-1}}","score":0.91,"type":"inline_equation"},{"bbox":[412.3329162597656,588.5415649414062,415.5970153808594,604.5785522460938],"content":" ","score":1,"type":"text"},{"bbox":[415.5970153808594,592.5736083984375,558.4208374023438,604.5785522460938],"content":"respectively. In addition, for the 3D","score":1,"type":"text"}]},{"bbox":[303,603.5325927734375,559,615.5375366210938],"spans":[{"bbox":[303.3070068359375,603.5325927734375,558.4293823242188,615.5375366210938],"content":"simulation, we add to each velocity component a pseudo-random","score":1,"type":"text"}]},{"bbox":[303,614.4915771484375,559,626.4965209960938],"spans":[{"bbox":[303.3070068359375,614.4915771484375,558.4290771484375,626.4965209960938],"content":"velocity fluctuation obtained from a Gaussian distribution with","score":1,"type":"text"}]},{"bbox":[303,625,559,637.4555053710938],"spans":[{"bbox":[303.3070068359375,625.4505615234375,464.5815124511719,637.4555053710938],"content":"zero mean and a standard deviation of ","score":1,"type":"text"},{"bbox":[463,625,511,636],"content":"2.85\\,\\mathrm{km}\\;\\mathrm{s}^{-1}","score":0.9,"type":"inline_equation"},{"bbox":[511.197021484375,625.4505615234375,558.4297485351562,637.4555053710938],"content":". These ini-","score":1,"type":"text"}]},{"bbox":[303,636,559,648.4144897460938],"spans":[{"bbox":[303.3070068359375,636.4095458984375,499.58001708984375,648.4144897460938],"content":"tial conditions imply an initial Mach number of","score":1,"type":"text"},{"bbox":[499.58001708984375,636.4095458984375,503.6050109863281,648.3048706054688],"content":" ","score":1,"type":"text"},{"bbox":[502,636,544,647],"content":"M_{\\mathrm{s}}~\\approx~2.0","score":0.91,"type":"inline_equation"},{"bbox":[543.2803344726562,636.4095458984375,558.4235229492188,648.4144897460938],"content":" for","score":1,"type":"text"}]},{"bbox":[303,647.3685913085938,559,659.37353515625],"spans":[{"bbox":[303.3070068359375,647.3685913085938,558.4291381835938,659.37353515625],"content":"both the 2D and 3D simulations. Furthermore, both simulations","score":1,"type":"text"}]},{"bbox":[303,658.3275756835938,559,670.33251953125],"spans":[{"bbox":[303.3070068359375,658.3275756835938,558.4292602539062,670.33251953125],"content":"incorporate the multi-phase nature of the interstellar medium by","score":1,"type":"text"}]},{"bbox":[303,669.2865600585938,559,681.29150390625],"spans":[{"bbox":[303.3070068359375,669.2865600585938,558.4290771484375,681.29150390625],"content":"including the net cooling function provided in Koyama & Inut-","score":1,"type":"text"}]},{"bbox":[303,680,357.09564208984375,692.2505493164062],"spans":[{"bbox":[303.3070068359375,680.24560546875,324.0591125488281,692.2505493164062],"content":"suka ","score":1,"type":"text"},{"bbox":[323,680,354,692],"content":"(2\\breve{00}2)^{1}","score":0.48,"type":"inline_equation"},{"bbox":[354.60498046875,680.24560546875,357.09564208984375,692.2505493164062],"content":".","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,692.6986083984375,559,726.6215209960938],"lines":[{"bbox":[318,692.6986083984375,559,704.7035522460938],"spans":[{"bbox":[318.2509765625,692.6986083984375,434.0362854003906,704.7035522460938],"content":"The initial magnetic field is","score":1,"type":"text"},{"bbox":[434.0362854003906,692.6986083984375,438.43096923828125,704.5939331054688],"content":" ","score":1,"type":"text"},{"bbox":[437,693,486,704],"content":"\\mathit{B}_{0}~=~3\\,\\mu\\mathrm{G}","score":0.91,"type":"inline_equation"},{"bbox":[485.1809387207031,692.6986083984375,527.5718383789062,704.7035522460938],"content":" along the","score":1,"type":"text"},{"bbox":[527.5718383789062,692.6986083984375,532.1139526367188,704.5939331054688],"content":" ","score":1,"type":"text"},{"bbox":[530,695,537,703],"content":"x","score":0.74,"type":"inline_equation"},{"bbox":[536.5669555664062,692.6986083984375,558.4249267578125,704.7035522460938],"content":"-axis,","score":1,"type":"text"}]},{"bbox":[303,699.6245727539062,559,715.6625366210938],"spans":[{"bbox":[303.30694580078125,703.6575927734375,452.0683288574219,715.6625366210938],"content":"implying an initial Alfvén speed of ","score":1,"type":"text"},{"bbox":[451,703,499,714],"content":"6.54\\,\\mathrm{km}\\,\\mathrm{s}^{-1}","score":0.86,"type":"inline_equation"},{"bbox":[498.1858825683594,699.6245727539062,502.261962890625,715.6625366210938],"content":" ","score":1,"type":"text"},{"bbox":[502.261962890625,703.6575927734375,558.4212036132812,715.6625366210938],"content":"and an inflow","score":1,"type":"text"}]},{"bbox":[303,714.6165771484375,559,726.6215209960938],"spans":[{"bbox":[303.30694580078125,714.6165771484375,410.27532958984375,726.6215209960938],"content":"Alfvénic Mach number of","score":1,"type":"text"},{"bbox":[410.27532958984375,714.6165771484375,414.33294677734375,726.5119018554688],"content":" ","score":1,"type":"text"},{"bbox":[413,715,465,726],"content":"M_{\\mathrm{A}}~\\approx~2.25","score":0.89,"type":"inline_equation"},{"bbox":[455.0389404296875,714.6165771484375,558.4209594726562,726.6215209960938],"content":"25. The magnetization of","score":1,"type":"text"}]},{"bbox":[35,56.56658935546875,190.52383422851562,68.57152557373047],"spans":[{"bbox":[36.84999084472656,56.56658935546875,172.1819305419922,68.57152557373047],"content":"this simulation results in a plasma","cross_page":true,"score":1,"type":"text"},{"bbox":[172,57,180,68],"content":"\\beta","cross_page":true,"score":0.86,"type":"inline_equation"},{"bbox":[179.73500061035156,56.56658935546875,190.52383422851562,68.57152557373047],"content":" of","cross_page":true,"score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[36,700,292,760],"lines":[{"bbox":[38.84000015258789,696.5070190429688,291.97021484375,710.5665283203125],"spans":[{"bbox":[38.84000015258789,699.2686767578125,41.828800201416016,706.4716796875],"content":"2","score":1,"type":"text"},{"bbox":[41.828800201416016,696.5070190429688,291.97021484375,710.5665283203125],"content":" This and the other three-dimensional figures were done with the help","score":1,"type":"text"}]},{"bbox":[36.849998474121094,709.7240600585938,179.613037109375,720.528564453125],"spans":[{"bbox":[36.849998474121094,709.7240600585938,179.613037109375,720.528564453125],"content":"of Pyvista (Sullivan & Kaszynski 2019)","score":1,"type":"text"}]},{"bbox":[38.84000015258789,716.748046875,291.9703063964844,730.8075561523438],"spans":[{"bbox":[38.84000015258789,719.5097045898438,41.828800201416016,726.7127075195312],"content":"3","score":1,"type":"text"},{"bbox":[41.828800201416016,716.748046875,291.9703063964844,730.8075561523438],"content":" Note that in this study, we focus in simulations and do not explore","score":1,"type":"text"}]},{"bbox":[36.849998474121094,729.9660034179688,291.96661376953125,740.7705078125],"spans":[{"bbox":[36.849998474121094,729.9660034179688,54.388282775878906,740.7705078125],"content":"the e","score":1,"type":"text"},{"bbox":[54.391998291015625,731.4540405273438,59.7718391418457,740.42041015625],"content":"ff","score":1,"type":"text"},{"bbox":[59.77199935913086,729.9660034179688,141.06137084960938,740.7705078125],"content":"ects of observational e","score":1,"type":"text"},{"bbox":[141.06199645996094,731.4540405273438,146.44183349609375,740.42041015625],"content":"ff","score":1,"type":"text"},{"bbox":[146.44200134277344,729.9660034179688,291.96661376953125,740.7705078125],"content":"ects like the constraint of only detecting","score":1,"type":"text"}]},{"bbox":[36.849998474121094,739.9280395507812,291.970947265625,750.7325439453125],"spans":[{"bbox":[36.849998474121094,739.9280395507812,291.970947265625,750.7325439453125],"content":"the plane of the sky magnetic field and the relative orientation between","score":1,"type":"text"}]},{"bbox":[36.849998474121094,749.8910522460938,133.57952880859375,760.695556640625],"spans":[{"bbox":[36.849998474121094,749.8910522460938,133.57952880859375,760.695556640625],"content":"the observer and the cloud.","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[174,33,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[456,771,558,779],"lines":[{"bbox":[455.1949157714844,769.8156127929688,558.4251098632812,780.6201171875],"spans":[{"bbox":[455.1949157714844,769.8156127929688,558.4251098632812,780.6201171875],"content":"Article number, page 3 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":2,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,56.56658935546875,190.52383422851562,68.57152557373047],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[34,75,136,106],"lines":[{"bbox":[34,75,136,106],"spans":[{"bbox":[34,75,136,106],"content":"\\beta\\equiv{\\frac{P_{\\mathrm{th}}}{P_{\\mathrm{mag}}}}={\\frac{2c_{\\mathrm{s}}^{2}}{u_{\\mathrm{A}}^{2}}}=2.54.","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,113.78759765625,291,158.6685028076172],"lines":[{"bbox":[35,113.78759765625,291,125.79253387451172],"spans":[{"bbox":[36.84999084472656,113.78759765625,74.61820220947266,125.79253387451172],"content":"Note that","score":1,"type":"text"},{"bbox":[76,114,84,125],"content":"\\beta","score":0.85,"type":"inline_equation"},{"bbox":[83.12799072265625,113.78759765625,291.9689636230469,125.79253387451172],"content":" is formally defined as the ratio of the thermal and","score":1,"type":"text"}]},{"bbox":[35,124.74560546875,291,136.7505340576172],"spans":[{"bbox":[36.8499870300293,124.74560546875,291.9721984863281,136.7505340576172],"content":"magnetic pressures, which introduces the factor of 2 in the nu-","score":1,"type":"text"}]},{"bbox":[35,135.70458984375,291,147.7095184326172],"spans":[{"bbox":[36.8499870300293,135.70458984375,291.97222900390625,147.7095184326172],"content":"merator. However, this additional factor is often omitted in the","score":1,"type":"text"}]},{"bbox":[35,146.66357421875,75.30561828613281,158.6685028076172],"spans":[{"bbox":[36.8499870300293,146.66357421875,75.30561828613281,158.6685028076172],"content":"literature.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,158.00054931640625,291,290.5533447265625],"lines":[{"bbox":[51,158.00054931640625,291,170.00547790527344],"spans":[{"bbox":[51.79398727416992,158.00054931640625,291.9723205566406,170.00547790527344],"content":"Therefore, the initial condition of this simulation is super-","score":1,"type":"text"}]},{"bbox":[35,168.95953369140625,291,180.96446228027344],"spans":[{"bbox":[36.8499870300293,168.95953369140625,291.9721984863281,180.96446228027344],"content":"sonic, superalfvénic, and with intermediate magnetization. In","score":1,"type":"text"}]},{"bbox":[35,179.91851806640625,291,191.92344665527344],"spans":[{"bbox":[36.8499870300293,179.91851806640625,291.9721984863281,191.92344665527344],"content":"Figure 1, we show face-on and edge-on column densities of","score":1,"type":"text"}]},{"bbox":[35,190.87750244140625,291,202.88243103027344],"spans":[{"bbox":[36.8499870300293,190.87750244140625,291.9721984863281,202.88243103027344],"content":"the resulting evolution after 5 Myr. In the following discussion,","score":1,"type":"text"}]},{"bbox":[99.21585083007812,201.83648681640625,291,213.84141540527344],"spans":[{"bbox":[99.21585083007812,201.83648681640625,138.69764709472656,213.84141540527344],"content":" white re","score":1,"type":"text"},{"bbox":[194.63763427734375,201.83648681640625,202.38853454589844,213.84141540527344],"content":"in","score":1,"type":"text"},{"bbox":[202.38853454589844,201.83648681640625,207.69198608398438,213.73182678222656],"content":" ","score":1,"type":"text"},{"bbox":[206,202,274,213],"content":"x~\\in~[-3.0,3.0]","score":0.89,"type":"inline_equation"},{"bbox":[273.60980224609375,201.83648681640625,291.97088623046875,213.84141540527344],"content":" pc,","score":1,"type":"text"}]},{"bbox":[35,212.79547119140625,291,231.40560913085938],"spans":[{"bbox":[35,213,100,224],"content":"y~\\in~[-1.0,3.0]","score":0.88,"type":"inline_equation"},{"bbox":[41.27336883544922,213.37330627441406,52.29393005371094,231.40560913085938],"content":" ∈","score":1,"type":"text"},{"bbox":[61.29197692871094,213.37330627441406,67.62818908691406,231.40560913085938],"content":"−","score":1,"type":"text"},{"bbox":[91.7039794921875,212.79547119140625,136.07737731933594,224.80039978027344],"content":"0] pc, and","score":1,"type":"text"},{"bbox":[138,213,196,224],"content":"z~\\in~[2.3,6.3]","score":0.85,"type":"inline_equation"},{"bbox":[144.01243591308594,213.37330627441406,155.03292846679688,231.40560913085938],"content":" ∈","score":1,"type":"text"},{"bbox":[188.1069793701172,212.79547119140625,291.967041015625,224.80039978027344],"content":"3] pc will be referred to","score":1,"type":"text"}]},{"bbox":[35,223.75445556640625,291,235.75938415527344],"spans":[{"bbox":[36.8499755859375,223.75445556640625,291.9722595214844,235.75938415527344],"content":"as R1, whose three-dimensional density structure and magnetic","score":1,"type":"text"}]},{"bbox":[35,231.096435546875,291,246.71836853027344],"spans":[{"bbox":[36.8499755859375,234.71343994140625,168.80458068847656,246.71836853027344],"content":"field lines are shown in Figure 2,","score":1,"type":"text"},{"bbox":[172.2898712158203,231.096435546875,175.49798583984375,246.71836853027344],"content":" ","score":1,"type":"text"},{"bbox":[175.49798583984375,234.71343994140625,291.970703125,246.71836853027344],"content":"in which the shock fronts are","score":1,"type":"text"}]},{"bbox":[35,245.67242431640625,291,257.6773681640625],"spans":[{"bbox":[36.84999084472656,245.67242431640625,291.9723205566406,257.6773681640625],"content":"visible as shaded vertical sheets. We note that the magnetic field","score":1,"type":"text"}]},{"bbox":[35,256.63140869140625,291,268.6363525390625],"spans":[{"bbox":[36.84999084472656,256.63140869140625,291.9721984863281,268.6363525390625],"content":"lines start to bend at the shock fronts. Additionally, the magnetic","score":1,"type":"text"}]},{"bbox":[35,267.58941650390625,291,279.5943603515625],"spans":[{"bbox":[36.84999084472656,267.58941650390625,291.97222900390625,279.5943603515625],"content":"field has become almost perpendicular to its original orientation","score":1,"type":"text"}]},{"bbox":[35,278.54840087890625,135.72882080078125,290.5533447265625],"spans":[{"bbox":[36.84999084472656,278.54840087890625,40.167537689208984,290.5533447265625],"content":"(","score":1,"type":"text"},{"bbox":[39,280,45,288],"content":"\\cdot_{x}","score":0.62,"type":"inline_equation"},{"bbox":[45.11899185180664,278.54840087890625,135.72882080078125,290.5533447265625],"content":"-axis) in some regions.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,310,259,334],"lines":[{"bbox":[36.84999084472656,309.8177795410156,258.9005432128906,322.83447265625],"spans":[{"bbox":[36.84999084472656,309.8177795410156,258.9005432128906,322.83447265625],"content":"3. Alignment of magnetic field lines with cold","score":1,"type":"text"}]},{"bbox":[48.81098937988281,322.769775390625,118.28856658935547,335.78643798828125],"spans":[{"bbox":[48.81098937988281,322.769775390625,118.28856658935547,335.78643798828125],"content":"atomic clouds","score":1,"type":"text"}]}],"type":"title"},{"bbox":[35,341.13238525390625,291,550.3970947265625],"lines":[{"bbox":[35,341.13238525390625,291,353.1373291015625],"spans":[{"bbox":[36.84999084472656,341.13238525390625,274.866455078125,353.1373291015625],"content":"To quantify the alignment of magnetic field lines, we use the","score":1,"type":"text"},{"bbox":[274.866455078125,341.13238525390625,291.9688720703125,353.0277404785156],"content":" his-","score":1,"type":"text"}]},{"bbox":[35,352.09136962890625,291,364.0963134765625],"spans":[{"bbox":[36.84999084472656,352.09136962890625,159.99766540527344,363.9867248535156],"content":"togram of relative orientations","score":1,"type":"text"},{"bbox":[159.99766540527344,352.09136962890625,291.96636962890625,364.0963134765625],"content":" (HRO; Soler et al. 2013), which","score":1,"type":"text"}]},{"bbox":[35,363,291,375.0552978515625],"spans":[{"bbox":[36.849998474121094,363.05035400390625,203.5740966796875,375.0552978515625],"content":"is a statistical tool to measure the angle ","score":1,"type":"text"},{"bbox":[202,363,216,375],"content":"(\\phi)","score":0.77,"type":"inline_equation"},{"bbox":[215.69354248046875,363.05035400390625,291.96722412109375,375.0552978515625],"content":" between the mag-","score":1,"type":"text"}]},{"bbox":[35,374.00933837890625,291,386.0142822265625],"spans":[{"bbox":[36.84999084472656,374.00933837890625,291.9722900390625,386.0142822265625],"content":"netic field and the density gradient of structures in the ISM, over","score":1,"type":"text"}]},{"bbox":[35,381.351318359375,291,396.9732666015625],"spans":[{"bbox":[36.84999084472656,384.96832275390625,136.6553192138672,396.9732666015625],"content":"number density intervals","score":1,"type":"text"},{"bbox":[136.65499877929688,384.11297607421875,140.1418914794922,392.5163879394531],"content":"3","score":1,"type":"text"},{"bbox":[140.1418914794922,381.351318359375,143.90199279785156,396.9732666015625],"content":" ","score":1,"type":"text"},{"bbox":[143.90199279785156,384.96832275390625,291.9661560058594,396.9732666015625],"content":"relevant to the multi-phase nature of","score":1,"type":"text"}]},{"bbox":[35,395.92633056640625,291,407.9312744140625],"spans":[{"bbox":[36.84999084472656,395.92633056640625,291.9722595214844,407.9312744140625],"content":"CACs. These intervals comprise the densities of the post-shock","score":1,"type":"text"}]},{"bbox":[35,406,291,418.8902587890625],"spans":[{"bbox":[36.84999084472656,406.88531494140625,83.08641052246094,418.8902587890625],"content":"warm neutr","score":1,"type":"text"},{"bbox":[129,406,202,417],"content":"\\bar{(n\\in[3,10]\\ \\mathrm{cm}^{-3})}","score":0.9,"type":"inline_equation"},{"bbox":[200.50498962402344,406.88531494140625,291.9715881347656,418.8902587890625],"content":"), the low-density cold","score":1,"type":"text"}]},{"bbox":[35,417,291,429.8492431640625],"spans":[{"bbox":[36.84999084472656,417.84429931640625,81.05404663085938,429.8492431640625],"content":"neutral gas","score":1,"type":"text"},{"bbox":[83,417,183,429],"content":"(n\\,\\in\\,[10,3\\times10^{1}]\\;\\mathrm{cm}^{-3})","score":0.87,"type":"inline_equation"},{"bbox":[182.13999938964844,417.84429931640625,291.9676818847656,429.8492431640625],"content":"), the medium-density cold","score":1,"type":"text"}]},{"bbox":[82,428.80328369140625,291,440.8082275390625],"spans":[{"bbox":[82,429,178,439],"content":"(n\\in[3{\\times}10^{1},10^{2}]\\,\\mathrm{cm}^{-3})","score":0.84,"type":"inline_equation"},{"bbox":[175.00701904296875,428.80328369140625,291.9678955078125,440.8082275390625],"content":"), the high-density neutral gas","score":1,"type":"text"}]},{"bbox":[35,439,291,458.3724060058594],"spans":[{"bbox":[36,439,133,451],"content":"(n\\in[10^{2},3\\times10^{2}]\\,\\mathrm{cm}^{-3})","score":0.86,"type":"inline_equation"},{"bbox":[45.149322509765625,440.340087890625,53.25697708129883,458.3724060058594],"content":" ∈","score":1,"type":"text"},{"bbox":[154.26364135742188,439.76226806640625,291.9666442871094,451.7672119140625],"content":" the density range of the central re-","score":1,"type":"text"}]},{"bbox":[35,450.72125244140625,291,469.3313903808594],"spans":[{"bbox":[36.85002136230469,450.72125244140625,59.98318099975586,462.7261962890625],"content":"gion (","score":1,"type":"text"},{"bbox":[56,451,152,462],"content":"(n\\in[3{\\times}10^{2},10^{3}]\\,\\mathrm{cm}^{-3})","score":0.87,"type":"inline_equation"},{"bbox":[64.96131896972656,451.299072265625,73.0689697265625,469.3313903808594],"content":" ∈","score":1,"type":"text"},{"bbox":[84.89701843261719,451.299072265625,91.23323059082031,469.3313903808594],"content":"×","score":1,"type":"text"},{"bbox":[150.0530242919922,450.72125244140625,167.36802673339844,462.7261962890625],"content":"). W","score":1,"type":"text"},{"bbox":[186.6855010986328,450.72125244140625,235.15357971191406,462.7261962890625],"content":"w the resulti","score":1,"type":"text"},{"bbox":[272.7125549316406,450.72125244140625,291.9702453613281,462.7261962890625],"content":"n the","score":1,"type":"text"}]},{"bbox":[35,461.68023681640625,291,473.6851806640625],"spans":[{"bbox":[36.85002136230469,461.68023681640625,178.42855834960938,473.6851806640625],"content":"left panel of Figure 3 in terms of cos","score":1,"type":"text"},{"bbox":[185.56402587890625,461.68023681640625,251.31716918945312,473.6851806640625],"content":". Thus, when cos","score":1,"type":"text"},{"bbox":[237,462,275,473],"content":"\\cos\\phi=0","score":0.73,"type":"inline_equation"},{"bbox":[267.56024169921875,461.68023681640625,291.9657897949219,473.6851806640625],"content":" 0, the","score":1,"type":"text"}]},{"bbox":[35,472.63922119140625,291,484.6441650390625],"spans":[{"bbox":[36.85002136230469,472.63922119140625,291.9722595214844,484.6441650390625],"content":"magnetic field is parallel to the density isocontours, while, when","score":1,"type":"text"}]},{"bbox":[35,483.59820556640625,291,495.6031494140625],"spans":[{"bbox":[36,484,84,495],"content":"\\cos\\phi\\;=\\;\\pm1","score":0.91,"type":"inline_equation"},{"bbox":[84.43132781982422,483.59820556640625,291.9721984863281,495.6031494140625],"content":", the magnetic field is perpendicular to the density","score":1,"type":"text"}]},{"bbox":[35,494.55718994140625,291,506.5621337890625],"spans":[{"bbox":[36.85002899169922,494.55718994140625,291.9722595214844,506.5621337890625],"content":"isocontours. We keep this convention to compare to the three-","score":1,"type":"text"}]},{"bbox":[35,505.51617431640625,291,517.5211181640625],"spans":[{"bbox":[36.85002899169922,505.51617431640625,291.9722900390625,517.5211181640625],"content":"dimensional HRO diagram presented in Soler et al. (2013). We","score":1,"type":"text"}]},{"bbox":[35,516.4741821289062,291,528.4791259765625],"spans":[{"bbox":[36.85002899169922,516.4741821289062,246.95132446289062,528.4791259765625],"content":"can see that the HRO for all density intervals peaks at ","score":1,"type":"text"},{"bbox":[246,517,289,528],"content":"\\cos(\\phi)=0","score":0.91,"type":"inline_equation"},{"bbox":[289.19830322265625,516.4741821289062,291.9678955078125,528.4791259765625],"content":";","score":1,"type":"text"}]},{"bbox":[35,527.4331665039062,291,539.4381103515625],"spans":[{"bbox":[36.850006103515625,527.4331665039062,291.9723205566406,539.4381103515625],"content":"in other words, the magnetic field tends to be parallel to the den-","score":1,"type":"text"}]},{"bbox":[35,538.3921508789062,270.9013671875,550.3970947265625],"spans":[{"bbox":[36.850006103515625,538.3921508789062,270.9013671875,550.3970947265625],"content":"sity structures throughout the density range we investigate.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,549.7291259765625,291,572.693115234375],"lines":[{"bbox":[51,549.7291259765625,291,561.7340698242188],"spans":[{"bbox":[51.79400634765625,549.7291259765625,291.9723205566406,561.7340698242188],"content":"In order to quantify the HRO, Soler et al. (2013) introduced","score":1,"type":"text"}]},{"bbox":[35,560.6881713867188,168.5063934326172,572.693115234375],"spans":[{"bbox":[36.850006103515625,560.6881713867188,49.0243034362793,572.693115234375],"content":"the","score":1,"type":"text"},{"bbox":[49.0243034362793,560.6881713867188,118.6031494140625,572.58349609375],"content":" shape parameter","score":1,"type":"text"},{"bbox":[119,561,127,572],"content":"\\zeta","score":0.81,"type":"inline_equation"},{"bbox":[128.3870086669922,560.6881713867188,168.5063934326172,572.693115234375],"content":"defined as","score":1,"type":"text"}]}],"type":"text"},{"bbox":[34,579,90,605],"lines":[{"bbox":[34,579,90,605],"spans":[{"bbox":[34,579,90,605],"content":"\\zeta\\equiv\\frac{A_{c}-A_{e}}{A_{c}+A_{e}},","score":0.91,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,613.1615600585938,291,697.5257568359375],"lines":[{"bbox":[35,613.1615600585938,291,626.6614990234375],"spans":[{"bbox":[36.84999084472656,613.1615600585938,61.188621520996094,625.16650390625],"content":"where","score":1,"type":"text"},{"bbox":[62,614,73,624],"content":"A_{c}","score":0.88,"type":"inline_equation"},{"bbox":[73.23035430908203,613.1615600585938,291.9684753417969,626.6614990234375],"content":" is the central area under the HRO diagram located be-","score":1,"type":"text"}]},{"bbox":[35,624,291,636.1255493164062],"spans":[{"bbox":[36.84999084472656,624.12060546875,60.64067840576172,636.1255493164062],"content":"tween","score":1,"type":"text"},{"bbox":[60.64067840576172,625.5478515625,64.25199127197266,635.510498046875],"content":" ","score":1,"type":"text"},{"bbox":[63,624,153,635],"content":"\\phi\\:\\in\\:[75.52^{\\circ},104.48^{\\circ}]","score":0.76,"type":"inline_equation"},{"bbox":[153.2815399169922,624.12060546875,291.9708557128906,636.1255493164062],"content":", corresponding to mostly parallel","score":1,"type":"text"}]},{"bbox":[35,635.07958984375,291,648.5795288085938],"spans":[{"bbox":[36.84999084472656,635.07958984375,121.2730484008789,647.0845336914062],"content":"magnetic field, while","score":1,"type":"text"},{"bbox":[122,636,134,646],"content":"A_{e}","score":0.87,"type":"inline_equation"},{"bbox":[133.49037170410156,635.07958984375,291.9674377441406,648.5795288085938],"content":" is the area under the HRO in the range","score":1,"type":"text"}]},{"bbox":[35,646,291,658.0435180664062],"spans":[{"bbox":[35,646,168,657],"content":"\\phi\\in[0^{\\circ},41.41^{\\circ}]\\cup[138.59^{\\circ},180^{\\circ}","score":0.85,"type":"inline_equation"},{"bbox":[288.6490478515625,646.03857421875,291.9665832519531,658.0435180664062],"content":"-","score":1,"type":"text"}]},{"bbox":[35,656.99755859375,291,669.0025024414062],"spans":[{"bbox":[36.85099792480469,656.99755859375,254.05560302734375,669.0025024414062],"content":"pendicular field. Thus for a given density interval, if 0","score":1,"type":"text"},{"bbox":[248,657,289,669],"content":"0<\\zeta<1","score":0.92,"type":"inline_equation"}]},{"bbox":[35,667.95654296875,291,679.9614868164062],"spans":[{"bbox":[36.85101318359375,667.95654296875,291.96331787109375,679.9614868164062],"content":"the magnetic field lines are parallel to the density gradients,","score":1,"type":"text"}]},{"bbox":[35,678.9155883789062,291,697.5257568359375],"spans":[{"bbox":[36.85101318359375,678.9155883789062,68.13357543945312,690.9205322265625],"content":"while if","score":1,"type":"text"},{"bbox":[68.13357543945312,679.493408203125,71.20001220703125,697.5257568359375],"content":" ","score":1,"type":"text"},{"bbox":[70,679,120,690],"content":"-1\\,<\\,\\zeta\\,<\\,0","score":0.92,"type":"inline_equation"},{"bbox":[120.28131103515625,678.9155883789062,291.966796875,690.9205322265625],"content":", the magnetic field is perpendicular to the","score":1,"type":"text"}]},{"bbox":[302,56.56658935546875,558,68.57152557373047],"spans":[{"bbox":[303.3070068359375,56.56658935546875,406.43975830078125,68.57152557373047],"content":"density gradients. Finally,","score":1,"type":"text"},{"bbox":[406.43975830078125,57.99385452270508,409.0670166015625,67.95645904541016],"content":" ","score":1,"type":"text"},{"bbox":[408,57,415,68],"content":"\\zeta","score":0.81,"type":"inline_equation"},{"bbox":[416.49700927734375,56.56658935546875,558.4242553710938,68.57152557373047],"content":"close to zero happens when there is","score":1,"type":"text"}]},{"bbox":[302,67.52557373046875,443.1619567871094,79.53050994873047],"spans":[{"bbox":[303.3070068359375,67.52557373046875,443.1619567871094,79.53050994873047],"content":"no clear tendency in the alignment.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,56.56658935546875,558,79.53050994873047],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[302,80.96856689453125,558,136.80943298339844],"lines":[{"bbox":[318,80.96856689453125,558,92.97350311279297],"spans":[{"bbox":[318.2510070800781,80.96856689453125,477.65240478515625,92.97350311279297],"content":"In the bottom panel of Figure 3, we plot","score":1,"type":"text"},{"bbox":[477.65240478515625,82.39583587646484,480.17999267578125,92.35843658447266],"content":" ","score":1,"type":"text"},{"bbox":[479,82,486,92],"content":"\\zeta","score":0.79,"type":"inline_equation"},{"bbox":[487.5090026855469,80.96856689453125,558.4227294921875,92.97350311279297],"content":"for the simulation","score":1,"type":"text"}]},{"bbox":[302,91.92755126953125,558,103.93248748779297],"spans":[{"bbox":[303.3070068359375,91.92755126953125,558.42919921875,103.93248748779297],"content":"in the density ranges defined above, showing that the magnetic","score":1,"type":"text"}]},{"bbox":[302,102.88653564453125,558,114.89147186279297],"spans":[{"bbox":[303.3070068359375,102.88653564453125,558.4290771484375,114.89147186279297],"content":"field becomes increasingly parallel to the density gradient as the","score":1,"type":"text"}]},{"bbox":[302,113,558,125.85045623779297],"spans":[{"bbox":[303.3070068359375,113.84552001953125,395.9392395019531,125.85045623779297],"content":"density increases up to ","score":1,"type":"text"},{"bbox":[395,113,447,124],"content":"\\bar{3}\\,\\dot{\\times}\\,\\dot{1}0^{2}\\,\\mathrm{cm}^{-3}","score":0.92,"type":"inline_equation"},{"bbox":[447.2489929199219,113.84552001953125,558.4218139648438,125.85045623779297],"content":", and then the degree of par-","score":1,"type":"text"}]},{"bbox":[302,124.80450439453125,483.72967529296875,136.80943298339844],"spans":[{"bbox":[303.3070068359375,124.80450439453125,483.72967529296875,136.80943298339844],"content":"allel alignment decreases for the last interval.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,138.24749755859375,558,336.55322265625],"lines":[{"bbox":[318,138.24749755859375,558,150.25242614746094],"spans":[{"bbox":[318.2510070800781,138.24749755859375,558.4293823242188,150.25242614746094],"content":"The trend of the shape parameter shown in Figure 6 of","score":1,"type":"text"}]},{"bbox":[302,149.20648193359375,558,161.21141052246094],"spans":[{"bbox":[303.3070068359375,149.20648193359375,558.42919921875,161.21141052246094],"content":"Soler et al. (2013) indicates that the alignment of the magnetic","score":1,"type":"text"}]},{"bbox":[302,160.16448974609375,558,172.16941833496094],"spans":[{"bbox":[303.3070068359375,160.16448974609375,558.4292602539062,172.16941833496094],"content":"field and isodensity contours becomes less parallel as the den-","score":1,"type":"text"}]},{"bbox":[302,171.12347412109375,558,183.12840270996094],"spans":[{"bbox":[303.3070068359375,171.12347412109375,558.42919921875,183.12840270996094],"content":"sity increases. In that work, the authors sample density values","score":1,"type":"text"}]},{"bbox":[302,178.4664306640625,558,194.08738708496094],"spans":[{"bbox":[301,181,440,193],"content":"n\\ \\stackrel{\\cdot}{\\in}\\ [1.6\\times10^{2},3.16\\times10^{6}]\\ \\ \\mathrm{cm}^{3}","score":0.68,"type":"inline_equation"},{"bbox":[438.8199157714844,178.4664306640625,443.08001708984375,194.08738708496094],"content":" ","score":1,"type":"text"},{"bbox":[443.08001708984375,182.08245849609375,558.427001953125,194.08738708496094],"content":"in isothermal simulations of","score":1,"type":"text"}]},{"bbox":[302,193.04144287109375,558,205.04637145996094],"spans":[{"bbox":[303.3070068359375,193.04144287109375,558.4293212890625,205.04637145996094],"content":"cold molecular gas. In contrast, since we are interested in under-","score":1,"type":"text"}]},{"bbox":[302,204.00042724609375,558,216.00535583496094],"spans":[{"bbox":[303.3070068359375,204.00042724609375,558.42919921875,216.00535583496094],"content":"standing how this correlation arises as the cloud is assembled,","score":1,"type":"text"}]},{"bbox":[302,214.95941162109375,558,226.96434020996094],"spans":[{"bbox":[303.3070068359375,214.95941162109375,558.4292602539062,226.96434020996094],"content":"our simulation starts with warm atomic gas leading to density","score":1,"type":"text"}]},{"bbox":[302,225,558,237.92332458496094],"spans":[{"bbox":[303.3070068359375,225.91839599609375,362.1659851074219,237.92332458496094],"content":"structures with","score":1,"type":"text"},{"bbox":[363,225,483,237],"content":"n\\in[6\\times10^{-1},2.2\\times10^{3}]~\\bar{\\mathrm{cm}}^{3}.","score":0.73,"type":"inline_equation"},{"bbox":[483.9856262207031,225.91839599609375,558.4263305664062,237.92332458496094],"content":" Therefore, the ob-","score":1,"type":"text"}]},{"bbox":[302,236.87738037109375,558,248.88230895996094],"spans":[{"bbox":[303.30694580078125,236.87738037109375,558.42919921875,248.88230895996094],"content":"tained HRO shape parameter in Figure 3 complements the one","score":1,"type":"text"}]},{"bbox":[302,247.83636474609375,558,259.84130859375],"spans":[{"bbox":[303.30694580078125,247.83636474609375,558.4290161132812,259.84130859375],"content":"obtained by Soler et al. (2013), as it corresponds to gas that can","score":1,"type":"text"}]},{"bbox":[302,258.79534912109375,558,270.80029296875],"spans":[{"bbox":[303.30694580078125,258.79534912109375,558.4290771484375,270.80029296875],"content":"be considered the precursor of a molecular cloud. Specifically,","score":1,"type":"text"}]},{"bbox":[302,269.75335693359375,558,281.75830078125],"spans":[{"bbox":[303.30694580078125,269.75335693359375,558.4291381835938,281.75830078125],"content":"the HRO and shape parameter obtained in Figure 3 shows an","score":1,"type":"text"}]},{"bbox":[302,280.71234130859375,558,292.71728515625],"spans":[{"bbox":[303.30694580078125,280.71234130859375,558.4292602539062,292.71728515625],"content":"increase in the degree of parallel alignment for the first four den-","score":1,"type":"text"}]},{"bbox":[302,291.67132568359375,558,303.67626953125],"spans":[{"bbox":[303.30694580078125,291.67132568359375,558.4291381835938,303.67626953125],"content":"sity intervals, while for the last one, we can appreciate a change","score":1,"type":"text"}]},{"bbox":[302,302.63031005859375,558,314.63525390625],"spans":[{"bbox":[303.30694580078125,302.63031005859375,558.4290771484375,314.63525390625],"content":"of this tendency towards a non-preferential orientation, which","score":1,"type":"text"}]},{"bbox":[302,313.58929443359375,558,325.59423828125],"spans":[{"bbox":[303.30694580078125,313.58929443359375,558.4291381835938,325.59423828125],"content":"corresponds to the lowest density interval in the results of Soler","score":1,"type":"text"}]},{"bbox":[302,324.54827880859375,354.2158203125,336.55322265625],"spans":[{"bbox":[303.30694580078125,324.54827880859375,354.2158203125,336.55322265625],"content":"et al. (2013).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,337.99127197265625,558,426.7081298828125],"lines":[{"bbox":[318,337.99127197265625,558,349.9962158203125],"spans":[{"bbox":[318.2509460449219,337.99127197265625,558.4293212890625,349.9962158203125],"content":"In Figure 4, we show the density structures between the four","score":1,"type":"text"}]},{"bbox":[302,348.95025634765625,558,360.9552001953125],"spans":[{"bbox":[303.30694580078125,348.95025634765625,558.4291381835938,360.9552001953125],"content":"highest density intervals used to obtain the HRO and shape pa-","score":1,"type":"text"}]},{"bbox":[302,359.90924072265625,558,371.9141845703125],"spans":[{"bbox":[303.30694580078125,359.90924072265625,558.4292602539062,371.9141845703125],"content":"rameter of Figure 3. It can be seen from this figure that the mag-","score":1,"type":"text"}]},{"bbox":[302,370.86822509765625,558,382.8731689453125],"spans":[{"bbox":[303.30694580078125,370.86822509765625,558.4290771484375,382.8731689453125],"content":"netic field (black arrows) tends to be parallel to the density struc-","score":1,"type":"text"}]},{"bbox":[302,381.82623291015625,558,393.8311767578125],"spans":[{"bbox":[303.30694580078125,381.82623291015625,558.4292602539062,393.8311767578125],"content":"tures for the four density intervals. However, for the highest den-","score":1,"type":"text"}]},{"bbox":[302,392.78521728515625,558,404.7901611328125],"spans":[{"bbox":[303.30694580078125,392.78521728515625,558.42919921875,404.7901611328125],"content":"sity interval, the magnetic field does not follow this general trend","score":1,"type":"text"}]},{"bbox":[302,403.74420166015625,558,415.7491455078125],"spans":[{"bbox":[303.30694580078125,403.74420166015625,558.4291381835938,415.7491455078125],"content":"in some regions, leading to the observed change in the shape pa-","score":1,"type":"text"}]},{"bbox":[302,414.70318603515625,335.6754455566406,426.7081298828125],"spans":[{"bbox":[303.30694580078125,414.70318603515625,335.6754455566406,426.7081298828125],"content":"rameter.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,456,453,468],"lines":[{"bbox":[303.30694580078125,456.5015869140625,453.48583984375,469.51824951171875],"spans":[{"bbox":[303.30694580078125,456.5015869140625,453.48583984375,469.51824951171875],"content":"4. Magnetic field line evolution","score":1,"type":"text"}]}],"type":"title"},{"bbox":[302,476.9701843261719,558,576.6460571289062],"lines":[{"bbox":[302,476.9701843261719,558,488.9751281738281],"spans":[{"bbox":[303.30694580078125,476.9701843261719,558.4291381835938,488.9751281738281],"content":"To understand the alignment of the magnetic field with CACs","score":1,"type":"text"}]},{"bbox":[302,487.92919921875,558,499.93414306640625],"spans":[{"bbox":[303.30694580078125,487.92919921875,558.42919921875,499.93414306640625],"content":"shown in the previous section, we followed the evolution of the","score":1,"type":"text"}]},{"bbox":[302,498.88720703125,558,510.89215087890625],"spans":[{"bbox":[303.30694580078125,498.88720703125,558.42919921875,510.89215087890625],"content":"magnetic field lines. The resulting configuration of the three-","score":1,"type":"text"}]},{"bbox":[302,509.84619140625,558,521.8511352539062],"spans":[{"bbox":[303.30694580078125,509.84619140625,558.42919921875,521.8511352539062],"content":"dimensional density structures and magnetic field lines of Re-","score":1,"type":"text"}]},{"bbox":[302,520.80517578125,558,532.8101196289062],"spans":[{"bbox":[303.30694580078125,520.80517578125,558.42919921875,532.8101196289062],"content":"gion R1 after 5 Myr of evolution is shown in Figure 2, where","score":1,"type":"text"}]},{"bbox":[302,531.76416015625,558,543.7691040039062],"spans":[{"bbox":[303.30694580078125,531.76416015625,558.4293823242188,543.7691040039062],"content":"we can see the shock fronts at each side of the central condensa-","score":1,"type":"text"}]},{"bbox":[302,542.72314453125,558,554.7280883789062],"spans":[{"bbox":[303.30694580078125,542.72314453125,558.4290161132812,554.7280883789062],"content":"tion region. The magnetic field lines start bending at these shock","score":1,"type":"text"}]},{"bbox":[302,553.68212890625,558,565.6870727539062],"spans":[{"bbox":[303.30694580078125,553.68212890625,558.42919921875,565.6870727539062],"content":"fronts along their way from the center of the computational do-","score":1,"type":"text"}]},{"bbox":[302,564.64111328125,326,576.6460571289062],"spans":[{"bbox":[303.30694580078125,564.64111328125,325.7228088378906,576.6460571289062],"content":"main.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,578.0841064453125,558,633.924072265625],"lines":[{"bbox":[318,578.0841064453125,558,590.0890502929688],"spans":[{"bbox":[318.2509460449219,578.0841064453125,558.4293823242188,590.0890502929688],"content":"As can be seen in the provided animation (Fig. 2), the mag-","score":1,"type":"text"}]},{"bbox":[302,589.0430908203125,558,601.0480346679688],"spans":[{"bbox":[303.30694580078125,589.0430908203125,558.4290771484375,601.0480346679688],"content":"netic field lines change their direction from being nearly parallel","score":1,"type":"text"}]},{"bbox":[302,600.0020751953125,558,612.0070190429688],"spans":[{"bbox":[303.30694580078125,600.0020751953125,325.4039611816406,612.0070190429688],"content":"to the","score":1,"type":"text"},{"bbox":[326,602,333,610],"content":"x\\cdot","score":0.72,"type":"inline_equation"},{"bbox":[332.52294921875,600.0020751953125,558.4248657226562,612.0070190429688],"content":"-axis at early times to being mostly perpendicular to it af-","score":1,"type":"text"}]},{"bbox":[302,610.9600830078125,558,622.9650268554688],"spans":[{"bbox":[303.30694580078125,610.9600830078125,558.4290161132812,622.9650268554688],"content":"ter 5 Myr in the neighborhood of the dense layer. In this section,","score":1,"type":"text"}]},{"bbox":[302,621.9191284179688,427.25164794921875,633.924072265625],"spans":[{"bbox":[303.30694580078125,621.9191284179688,427.25164794921875,633.924072265625],"content":"we investigate how this occurs.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,653,505,664],"lines":[{"bbox":[303.30694580078125,652.6038818359375,504.53167724609375,664.3209228515625],"spans":[{"bbox":[303.30694580078125,652.6038818359375,504.53167724609375,664.3209228515625],"content":"4.1. Magnetic field amplification by MHD shocks","score":1,"type":"text"}]}],"type":"title"},{"bbox":[302,672.2571411132812,558,760.9750366210938],"lines":[{"bbox":[302,672.2571411132812,558,684.2620849609375],"spans":[{"bbox":[303.30694580078125,672.2571411132812,558.42919921875,684.2620849609375],"content":"As seen in Figure 2, and considering the shock front located at","score":1,"type":"text"}]},{"bbox":[302,683.2161254882812,558,695.2210693359375],"spans":[{"bbox":[303.30694580078125,683.2161254882812,558.42919921875,695.2210693359375],"content":"the right of the condensation layer, we see that the angle between","score":1,"type":"text"}]},{"bbox":[302,694.1751098632812,558,706.1800537109375],"spans":[{"bbox":[303.30694580078125,694.1751098632812,558.4292602539062,706.1800537109375],"content":"the upstream magnetic field and the normal to the shock front","score":1,"type":"text"}]},{"bbox":[302,705,558,717.1390991210938],"spans":[{"bbox":[303.30694580078125,705.1341552734375,334.8585205078125,717.1390991210938],"content":"satisfies","score":1,"type":"text"},{"bbox":[336,705,361,715],"content":"\\theta\\approx0","score":0.89,"type":"inline_equation"},{"bbox":[360.19122314453125,705.1341552734375,558.427001953125,717.1390991210938],"content":" for all the magnetic lines shown. The small vari-","score":1,"type":"text"}]},{"bbox":[302,716.0931396484375,558,728.0980834960938],"spans":[{"bbox":[303.30694580078125,716.0931396484375,337.97674560546875,728.0980834960938],"content":"ations of","score":1,"type":"text"},{"bbox":[337.97674560546875,717.5203857421875,344.9245300292969,727.4830322265625],"content":" θ","score":1,"type":"text"},{"bbox":[344.9245300292969,716.0931396484375,558.4246215820312,728.0980834960938],"content":" around zero are due to the fact that the shock front is","score":1,"type":"text"}]},{"bbox":[302,727.0521240234375,558,739.0570678710938],"spans":[{"bbox":[303.3069152832031,727.0521240234375,558.4290771484375,739.0570678710938],"content":"not a plane when it moves away from the central region because","score":1,"type":"text"}]},{"bbox":[302,738.0111083984375,558,750.0160522460938],"spans":[{"bbox":[303.3069152832031,738.0111083984375,558.428955078125,750.0160522460938],"content":"of the fluctuations added to the inflow velocity in the simulation","score":1,"type":"text"}]},{"bbox":[302,748.9700927734375,326,760.9750366210938],"spans":[{"bbox":[303.3069152832031,748.9700927734375,326.82861328125,760.9750366210938],"content":"setup.","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[241,34,355,42],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[36,771,139,779],"lines":[{"bbox":[36.849700927734375,769.81591796875,140.07986450195312,780.6204223632812],"spans":[{"bbox":[36.849700927734375,769.81591796875,140.07986450195312,780.6204223632812],"content":"Article number, page 4 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":3,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[33,84,560,344],"blocks":[{"bbox":[33,84,553,303],"lines":[{"bbox":[33,84,553,303],"spans":[{"bbox":[33,84,553,303],"image_path":"f58693ef236783809189fc9ccee7f9b0cfc65496fed0f0ca6bee2a745507dd5b.jpg","score":0.9997164011001587,"type":"image"}]}],"type":"image_body"},{"bbox":[36,322,560,344],"lines":[{"bbox":[36.849998474121094,322.947265625,558.4275512695312,334.6125793457031],"spans":[{"bbox":[36.849998474121094,322.947265625,61.39103698730469,334.6125793457031],"content":"Fig. 1.","score":1,"type":"text"},{"bbox":[61.39103698730469,323.27008056640625,558.4275512695312,334.0745849609375],"content":" Column density of the cold atomic cloud’s simulation at 5 Myr. The highlighted region (R1) is examined in 3D in order to show the","score":1,"type":"text"}]},{"bbox":[36.84999465942383,333.23309326171875,178.97640991210938,344.03759765625],"spans":[{"bbox":[36.84999465942383,333.23309326171875,178.97640991210938,344.03759765625],"content":"magnetic field and density morphology.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[35,362.14959716796875,291,386.6075439453125],"lines":[{"bbox":[51,362.14959716796875,291,374.154541015625],"spans":[{"bbox":[51.79399490356445,362.14959716796875,291.97235107421875,374.154541015625],"content":"Following Delmont & Keppens (2011), the fast magne-","score":1,"type":"text"}]},{"bbox":[35,373.10760498046875,157.29669189453125,386.6075439453125],"spans":[{"bbox":[36.84999465942383,373.10760498046875,90.80743408203125,385.112548828125],"content":"tosonic speed","score":1,"type":"text"},{"bbox":[92,375,103,385],"content":"\\boldsymbol{u}_{f}","score":0.87,"type":"inline_equation"},{"bbox":[101.26470947265625,373.10760498046875,157.29669189453125,386.6075439453125],"content":" is defined as:","score":1,"type":"text"}]}],"type":"text"},{"bbox":[34,396,210,420],"lines":[{"bbox":[34,396,210,420],"spans":[{"bbox":[34,396,210,420],"content":"u_{f}^{2}=\\frac{1}{2}\\left(c_{s}^{2}+u_{\\mathrm{A}}^{2}+\\,\\sqrt{(c_{s}^{2}+u_{\\mathrm{A}}^{2})^{2}-4u_{\\mathrm{A,n}}^{2}c_{s}^{2}}\\right),","score":0.92,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,431.6135559082031,291,531.2894287109375],"lines":[{"bbox":[35,431.6135559082031,291,445.11248779296875],"spans":[{"bbox":[36.85002136230469,431.6135559082031,61.18865203857422,443.6184997558594],"content":"where","score":1,"type":"text"},{"bbox":[61.18865203857422,431.6135559082031,65.31902313232422,443.5089111328125],"content":" ","score":1,"type":"text"},{"bbox":[64,433,75,443],"content":"u_{A}","score":0.86,"type":"inline_equation"},{"bbox":[74.73601531982422,431.6135559082031,179.4383087158203,445.11248779296875],"content":" is the Alfvén speed and","score":1,"type":"text"},{"bbox":[179.4383087158203,431.6135559082031,183.57101440429688,443.5089111328125],"content":" ","score":1,"type":"text"},{"bbox":[182,433,199,443],"content":"u_{A,n}","score":0.89,"type":"inline_equation"},{"bbox":[198.21791076660156,431.6135559082031,291.9714050292969,445.11248779296875],"content":" is its component nor-","score":1,"type":"text"}]},{"bbox":[35,442.57257080078125,291,456.0715026855469],"spans":[{"bbox":[36.85002136230469,442.57257080078125,170.99639892578125,454.5775146484375],"content":"mal to the shock front. Defining","score":1,"type":"text"},{"bbox":[170.99639892578125,442.57257080078125,174.85702514648438,454.4679260253906],"content":" ","score":1,"type":"text"},{"bbox":[173,444,184,453],"content":"u_{n}","score":0.85,"type":"inline_equation"},{"bbox":[183.32492065429688,442.57257080078125,291.9715270996094,456.0715026855469],"content":" as the flow speed normal","score":1,"type":"text"}]},{"bbox":[35,453.53155517578125,291,467.0304870605469],"spans":[{"bbox":[36.85003662109375,453.53155517578125,59.475101470947266,465.5364990234375],"content":"to the","score":1,"type":"text"},{"bbox":[98.36908721923828,453.53155517578125,116.01285552978516,465.5364990234375],"content":"e flo","score":1,"type":"text"},{"bbox":[150.49343872070312,453.53155517578125,187.9827117919922,465.5364990234375],"content":"rred to as","score":1,"type":"text"},{"bbox":[187.9827117919922,453.53155517578125,227.222900390625,465.4269104003906],"content":" superfast","score":1,"type":"text"},{"bbox":[227.222900390625,453.53155517578125,251.68402099609375,465.5364990234375],"content":" when","score":1,"type":"text"},{"bbox":[253,454,290,466],"content":"|u_{n}|>u_{f}","score":0.91,"type":"inline_equation"},{"bbox":[289.4779968261719,453.53155517578125,291.9686584472656,467.0304870605469],"content":".","score":1,"type":"text"}]},{"bbox":[35,464.49053955078125,291,484.59466552734375],"spans":[{"bbox":[36.84999084472656,464.49053955078125,58.98688888549805,476.4954833984375],"content":"Since","score":1,"type":"text"},{"bbox":[60,466,100,476],"content":"u_{A,n}\\,\\approx\\,u_{A}","score":0.9,"type":"inline_equation"},{"bbox":[76.50289916992188,465.068359375,86.80421447753906,484.59466552734375],"content":" ≈","score":1,"type":"text"},{"bbox":[99.68799591064453,464.49053955078125,117.43999481201172,477.9894714355469],"content":" and","score":1,"type":"text"},{"bbox":[117.43999481201172,464.49053955078125,125.29029846191406,476.3858947753906],"content":" u","score":1,"type":"text"},{"bbox":[119,466,151,475],"content":"u_{n}\\approx u_{0}","score":0.89,"type":"inline_equation"},{"bbox":[128.7769012451172,465.068359375,139.07821655273438,484.59466552734375],"content":" ≈","score":1,"type":"text"},{"bbox":[151.0128936767578,464.49053955078125,291.9634704589844,477.9894714355469],"content":" for the preshock flow in the three-","score":1,"type":"text"}]},{"bbox":[35,475.44854736328125,291,487.4534912109375],"spans":[{"bbox":[36.850006103515625,475.44854736328125,291.9722595214844,487.4534912109375],"content":"dimensional simulation described in Section 2, it can be seen","score":1,"type":"text"}]},{"bbox":[35,486.40753173828125,291,498.4124755859375],"spans":[{"bbox":[36.850006103515625,486.40753173828125,291.97222900390625,498.4124755859375],"content":"from equation (3) that this flow is superfast. The downstream","score":1,"type":"text"}]},{"bbox":[35,497.36651611328125,291,509.3714599609375],"spans":[{"bbox":[36.850006103515625,497.36651611328125,291.9722900390625,509.3714599609375],"content":"flow, just after the shock front, becomes transalfvénic as we can","score":1,"type":"text"}]},{"bbox":[35,508.32550048828125,291,520.3304443359375],"spans":[{"bbox":[36.850006103515625,508.32550048828125,198.93157958984375,520.3304443359375],"content":"see from Figure 2. Therefore the relation","score":1,"type":"text"},{"bbox":[200,509,263,520],"content":"u_{f}>|u_{n}|>u_{A,n}","score":0.94,"type":"inline_equation"},{"bbox":[262.69195556640625,508.32550048828125,291.9720153808594,520.3304443359375],"content":", which","score":1,"type":"text"}]},{"bbox":[35,519.2844848632812,245.88519287109375,531.2894287109375],"spans":[{"bbox":[36.84996032714844,519.2844848632812,245.88519287109375,531.2894287109375],"content":"characterizes a subfast flow, is satisfied downstream.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,531.407470703125,291,587.2483520507812],"lines":[{"bbox":[51,531.407470703125,291,543.4124145507812],"spans":[{"bbox":[51.79396057128906,531.407470703125,291.9722900390625,543.4124145507812],"content":"Such MHD shock, going from a superfast to a subfast flow,","score":1,"type":"text"}]},{"bbox":[35,542.366455078125,291,554.3713989257812],"spans":[{"bbox":[36.84996032714844,542.366455078125,291.9721984863281,554.3713989257812],"content":"is called a fast MHD shock (Delmont & Keppens 2011), whose","score":1,"type":"text"}]},{"bbox":[35,553.325439453125,291,565.3303833007812],"spans":[{"bbox":[36.84996032714844,553.325439453125,291.97222900390625,565.3303833007812],"content":"main feature is that it refracts the magnetic field away from the","score":1,"type":"text"}]},{"bbox":[35,564.284423828125,291,576.2893676757812],"spans":[{"bbox":[36.84996032714844,564.284423828125,291.9721984863281,576.2893676757812],"content":"shock normal due to the amplification of the magnetic field com-","score":1,"type":"text"}]},{"bbox":[35,575.243408203125,291,587.2483520507812],"spans":[{"bbox":[36.84996032714844,575.243408203125,291.9721984863281,587.2483520507812],"content":"ponent parallel to the shock front. This amplification is given by","score":1,"type":"text"}]}],"type":"text"},{"bbox":[34,606,152,640],"lines":[{"bbox":[34,606,152,640],"spans":[{"bbox":[34,606,152,640],"content":"B_{\\parallel,2}=\\frac{r_{\\rho}B_{\\parallel,1}(M_{A,1}^{2}-\\cos^{2}\\theta)}{M_{A,1}^{2}-r_{\\rho}\\cos^{2}\\theta},","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,650.340576171875,291,760.9755249023438],"lines":[{"bbox":[35,650.340576171875,291,663.8395385742188],"spans":[{"bbox":[36.84999084472656,650.340576171875,61.188621520996094,662.3455200195312],"content":"where","score":1,"type":"text"},{"bbox":[62,651,101,662],"content":"B_{\\parallel,1}=B_{1}","score":0.7,"type":"inline_equation"},{"bbox":[100.79489135742188,650.340576171875,114.5803451538086,663.8395385742188],"content":" sin","score":1,"type":"text"},{"bbox":[115,651,121,660],"content":"\\theta","score":0.26,"type":"inline_equation"},{"bbox":[120.61357879638672,650.340576171875,137.7509765625,662.3455200195312],"content":" and","score":1,"type":"text"},{"bbox":[139,651,155,662],"content":"B_{\\parallel,2}","score":0.9,"type":"inline_equation"},{"bbox":[154.71788024902344,650.340576171875,291.96343994140625,663.8395385742188],"content":" are the upstream and downstream","score":1,"type":"text"}]},{"bbox":[35,661.299560546875,291,673.3045043945312],"spans":[{"bbox":[36.84998321533203,661.299560546875,247.74826049804688,673.3045043945312],"content":"magnetic field components parallel to the shock front,","score":1,"type":"text"},{"bbox":[248,662,291,673],"content":"r_{\\rho}=\\rho_{2}/\\rho_{1}","score":0.91,"type":"inline_equation"}]},{"bbox":[35,672.258544921875,291,684.2634887695312],"spans":[{"bbox":[36.850006103515625,672.258544921875,157.5967254638672,684.2634887695312],"content":"is the ratio of the downstream","score":1,"type":"text"},{"bbox":[159,673,176,684],"content":"(\\rho_{2})","score":0.87,"type":"inline_equation"},{"bbox":[176.2245635986328,672.258544921875,235.98023986816406,684.2634887695312],"content":" and upstream ","score":1,"type":"text"},{"bbox":[235,673,251,684],"content":"(\\rho_{1})","score":0.85,"type":"inline_equation"},{"bbox":[251.6605682373047,672.258544921875,291.96923828125,684.2634887695312],"content":" densities,","score":1,"type":"text"}]},{"bbox":[35,683,291,696.7164916992188],"spans":[{"bbox":[35,683,55,695],"content":"M_{A,1}","score":0.91,"type":"inline_equation"},{"bbox":[55.312923431396484,683.216552734375,275.6275329589844,696.7164916992188],"content":" is the Alfvénic Mach number of the upstream gas, and","score":1,"type":"text"},{"bbox":[275.6275329589844,684.643798828125,278.2190246582031,694.6064453125],"content":" ","score":1,"type":"text"},{"bbox":[277,684,283,693],"content":"\\theta","score":0.73,"type":"inline_equation"},{"bbox":[282.5926208496094,683.216552734375,291.96807861328125,695.2214965820312],"content":" is","score":1,"type":"text"}]},{"bbox":[35,694.1755981445312,291,706.1805419921875],"spans":[{"bbox":[36.85002136230469,694.1755981445312,291.9722595214844,706.1805419921875],"content":"the angle between the vector normal to the front-shock and the","score":1,"type":"text"}]},{"bbox":[35,705,291,717.1395263671875],"spans":[{"bbox":[36.85002136230469,705.1345825195312,131.99282836914062,717.1395263671875],"content":"upstream magnetic field","score":1,"type":"text"},{"bbox":[133,705,147,716],"content":"B_{1}","score":0.88,"type":"inline_equation"},{"bbox":[146.79803466796875,705.1345825195312,291.9730224609375,717.1395263671875],"content":". Since this amplification depends on","score":1,"type":"text"}]},{"bbox":[35,716.0935668945312,291,728.0985107421875],"spans":[{"bbox":[36.85003662109375,716.0935668945312,73.0840072631836,728.0985107421875],"content":"the angle","score":1,"type":"text"},{"bbox":[74,717,80,726],"content":"\\theta","score":0.69,"type":"inline_equation"},{"bbox":[80.0860366821289,716.0935668945312,275.1337585449219,728.0985107421875],"content":", the fluctuating curvature of the shock front at di","score":1,"type":"text"},{"bbox":[275.1320495605469,717.7468872070312,281.109619140625,727.70947265625],"content":"ff","score":1,"type":"text"},{"bbox":[281.1090393066406,716.0935668945312,291.96826171875,728.0985107421875],"content":"er-","score":1,"type":"text"}]},{"bbox":[35,727.0526123046875,291,739.0575561523438],"spans":[{"bbox":[36.85003662109375,727.0526123046875,291.97222900390625,739.0575561523438],"content":"ent positions yields the inhomogeneous downstream magnetic","score":1,"type":"text"}]},{"bbox":[35,738.0115966796875,291,750.0165405273438],"spans":[{"bbox":[36.85003662109375,738.0115966796875,291.9723205566406,750.0165405273438],"content":"field pattern when the shock front travels away from the central","score":1,"type":"text"}]},{"bbox":[35,748.9705810546875,236.03228759765625,760.9755249023438],"spans":[{"bbox":[36.85003662109375,748.9705810546875,236.03228759765625,760.9755249023438],"content":"region, early in the evolution times (see Figure 2).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,362.3353271484375,413.41705322265625,374.0523986816406],"lines":[{"bbox":[302,362.3353271484375,413.41705322265625,374.0523986816406],"spans":[{"bbox":[303.3070373535156,362.3353271484375,413.41705322265625,374.0523986816406],"content":"4.2. Line bending analysis","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,379.50457763671875,558,413.426513671875],"lines":[{"bbox":[302,379.50457763671875,558,391.509521484375],"spans":[{"bbox":[303.3070373535156,379.50457763671875,558.4293212890625,391.509521484375],"content":"To understand how magnetic field lines change their original di-","score":1,"type":"text"}]},{"bbox":[302,390.46258544921875,558,402.467529296875],"spans":[{"bbox":[303.3070373535156,390.46258544921875,558.4292602539062,402.467529296875],"content":"rection in the post-shock region, we consider the induction equa-","score":1,"type":"text"}]},{"bbox":[302,401.42156982421875,379.1323547363281,413.426513671875],"spans":[{"bbox":[303.3070373535156,401.42156982421875,379.1323547363281,413.426513671875],"content":"tion in ideal MHD,","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,418,465,443],"lines":[{"bbox":[302,418,465,443],"spans":[{"bbox":[302,418,465,443],"content":"\\frac{\\partial\\pmb{B}}{\\partial t}=-\\pmb{B}\\nabla\\cdot\\pmb{u}-(\\pmb{u}\\cdot\\nabla)\\pmb{B}+(\\pmb{B}\\cdot\\nabla)\\pmb{u}.","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[303,458,480,469],"lines":[{"bbox":[303.306884765625,457.82830810546875,479.6495056152344,469.5453796386719],"spans":[{"bbox":[303.306884765625,457.82830810546875,479.6495056152344,469.5453796386719],"content":"4.2.1. Line bending by a compressive flow","score":1,"type":"text"}]}],"type":"title"},{"bbox":[302,474.99755859375,558,563.7153930664062],"lines":[{"bbox":[302,474.99755859375,558,487.00250244140625],"spans":[{"bbox":[303.306884765625,474.99755859375,558.4292602539062,487.00250244140625],"content":"This analysis takes place after the magnetic field component par-","score":1,"type":"text"}]},{"bbox":[302,485.95654296875,558,497.96148681640625],"spans":[{"bbox":[303.306884765625,485.95654296875,558.4290161132812,497.96148681640625],"content":"allel to the shock front is amplified by the fast MHD shock, i.e.,","score":1,"type":"text"}]},{"bbox":[302,496.91552734375,558,508.92047119140625],"spans":[{"bbox":[303.306884765625,496.91552734375,558.4290161132812,508.92047119140625],"content":"in a region containing cooling and thermally unstable gas. Af-","score":1,"type":"text"}]},{"bbox":[302,507.87451171875,558,519.8794555664062],"spans":[{"bbox":[303.306884765625,507.87451171875,558.4292602539062,519.8794555664062],"content":"ter the amplification, magnetic field lines adopt the shape repre-","score":1,"type":"text"}]},{"bbox":[302,518.83349609375,558,530.8384399414062],"spans":[{"bbox":[303.306884765625,518.83349609375,558.42919921875,530.8384399414062],"content":"sented in Figure 5, where the magnetic field component parallel","score":1,"type":"text"}]},{"bbox":[302,529.79248046875,558,541.7974243164062],"spans":[{"bbox":[303.306884765625,529.79248046875,375.05743408203125,541.7974243164062],"content":"to the shock front,","score":1,"type":"text"},{"bbox":[376,530,387,541],"content":"B_{y}","score":0.86,"type":"inline_equation"},{"bbox":[387.2288818359375,529.79248046875,558.4262084960938,541.7974243164062],"content":", has been amplified, and the magnetic field","score":1,"type":"text"}]},{"bbox":[302,540.75146484375,558,554.2504272460938],"spans":[{"bbox":[303.306884765625,540.75146484375,475.9286804199219,552.7564086914062],"content":"component perpendicular to the shock front","score":1,"type":"text"},{"bbox":[477,541,489,552],"content":"B_{x}","score":0.88,"type":"inline_equation"},{"bbox":[487.91326904296875,540.75146484375,558.4244384765625,554.2504272460938],"content":" stays constant, in","score":1,"type":"text"}]},{"bbox":[302,551.71044921875,533.2536010742188,563.7153930664062],"spans":[{"bbox":[303.306884765625,551.71044921875,533.2536010742188,563.7153930664062],"content":"agreement with the jump condition for the magnetic field.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,562.66845703125,558,761],"lines":[{"bbox":[318.2508850097656,562.66845703125,558,574.6734008789062],"spans":[{"bbox":[318.2508850097656,562.66845703125,558.42919921875,574.6734008789062],"content":"Furthermore, we assume that the flow speed decreases along","score":1,"type":"text"}]},{"bbox":[302,573.62744140625,558,585.6323852539062],"spans":[{"bbox":[302,576,309,583],"content":"x","score":0.72,"type":"inline_equation"},{"bbox":[308.228271484375,573.62744140625,433.30572509765625,585.6323852539062],"content":" in the post-shock region; i.e.,","score":1,"type":"text"},{"bbox":[433.30572509765625,573.62744140625,437.1528625488281,585.5227661132812],"content":" ","score":1,"type":"text"},{"bbox":[436,574,484,585],"content":"u_{x}~=~u_{x}(x)","score":0.92,"type":"inline_equation"},{"bbox":[483.5093688964844,573.62744140625,501.74090576171875,585.6323852539062],"content":" and","score":1,"type":"text"},{"bbox":[501.74090576171875,575.0546875,505.58184814453125,585.017333984375],"content":" ","score":1,"type":"text"},{"bbox":[504,574,556,585],"content":"\\partial u_{x}/\\partial x\\ <\\ 0","score":0.92,"type":"inline_equation"},{"bbox":[555.9341430664062,573.62744140625,558.4248046875,585.6323852539062],"content":",","score":1,"type":"text"}]},{"bbox":[302,584.58642578125,558,596.5913696289062],"spans":[{"bbox":[303.30682373046875,584.58642578125,558.4291381835938,596.5913696289062],"content":"which represents the compression caused by the cooling of the","score":1,"type":"text"}]},{"bbox":[302,595.54541015625,558,607.5503540039062],"spans":[{"bbox":[303.30682373046875,595.54541015625,558.4291381835938,607.5503540039062],"content":"gas as it travels downstream. Finally, we disregard the down-","score":1,"type":"text"}]},{"bbox":[302,606.5044555664062,558,618.5093994140625],"spans":[{"bbox":[303.30682373046875,606.5044555664062,547.0120239257812,618.5093994140625],"content":"stream component of the velocity parallel to the shock front,","score":1,"type":"text"},{"bbox":[547.0120239257812,606.5044555664062,549.8488159179688,618.3997802734375],"content":" ","score":1,"type":"text"},{"bbox":[549,608,559,618],"content":"u_{y}","score":0.83,"type":"inline_equation"}]},{"bbox":[302,617.4634399414062,558,629.4683837890625],"spans":[{"bbox":[303.30682373046875,617.4634399414062,317.69281005859375,629.4683837890625],"content":"and","score":1,"type":"text"},{"bbox":[319,619,329,629],"content":"u_{z}","score":0.86,"type":"inline_equation"},{"bbox":[329.02081298828125,617.4634399414062,398.8287353515625,629.4683837890625],"content":", to analyze the e","score":1,"type":"text"},{"bbox":[398.82781982421875,619.1167602539062,404.8053894042969,629.079345703125],"content":"ff","score":1,"type":"text"},{"bbox":[404.8048095703125,617.4634399414062,558.4281616210938,629.4683837890625],"content":"ect of the compression alone. To vali-","score":1,"type":"text"}]},{"bbox":[302,628.4224243164062,558,640.4273681640625],"spans":[{"bbox":[303.30682373046875,628.4224243164062,558.4290161132812,640.4273681640625],"content":"date these assumptions, in Figure 6 we plot the relevant physical","score":1,"type":"text"}]},{"bbox":[302,639.3814697265625,558,651.3864135742188],"spans":[{"bbox":[303.30682373046875,639.3814697265625,373.01507568359375,651.3864135742188],"content":"quantities at time","score":1,"type":"text"},{"bbox":[373.01507568359375,639.3814697265625,376.04083251953125,651.2767944335938],"content":" ","score":1,"type":"text"},{"bbox":[375,640,405,650],"content":"t=0.7","score":0.8,"type":"inline_equation"},{"bbox":[405.3020935058594,639.3814697265625,531.3687744140625,651.3864135742188],"content":" Myr along a ray parallel to the","score":1,"type":"text"},{"bbox":[533,641,540,650],"content":"x","score":0.79,"type":"inline_equation"},{"bbox":[539.3181762695312,639.3814697265625,558.4244995117188,651.3864135742188],"content":" axis","score":1,"type":"text"}]},{"bbox":[302,650.3404541015625,558,662.3453979492188],"spans":[{"bbox":[303.3067626953125,650.3404541015625,558.428955078125,662.3453979492188],"content":"passing through a region in which this amplification becomes","score":1,"type":"text"}]},{"bbox":[302,661.2994384765625,558,673.3043823242188],"spans":[{"bbox":[303.3067626953125,661.2994384765625,558.428955078125,673.3043823242188],"content":"large at later evolutionary times. In the top panel, the shock front","score":1,"type":"text"}]},{"bbox":[302,672.2574462890625,558,684.2623901367188],"spans":[{"bbox":[303.3067626953125,672.2574462890625,558.4288940429688,684.2623901367188],"content":"and condensed region are clearly visible in the gas density pro-","score":1,"type":"text"}]},{"bbox":[302,683.2164306640625,558,695.2213745117188],"spans":[{"bbox":[303.3067626953125,683.2164306640625,558.4290771484375,695.2213745117188],"content":"file. The middle panel shows that, in addition to the discontinuity","score":1,"type":"text"}]},{"bbox":[302,694.1754150390625,558,707.6753540039062],"spans":[{"bbox":[303.3067626953125,694.1754150390625,436.84539794921875,706.1803588867188],"content":"at the shocks, the inflow velocity","score":1,"type":"text"},{"bbox":[438,696,450,705],"content":"u_{x}","score":0.85,"type":"inline_equation"},{"bbox":[448.3121032714844,694.1754150390625,558.4247436523438,707.6753540039062],"content":" smoothly decreases down-","score":1,"type":"text"}]},{"bbox":[302,705.1344604492188,558,717.139404296875],"spans":[{"bbox":[303.3067321777344,705.1344604492188,558.428955078125,717.139404296875],"content":"stream from the shock, in sync with the density increase. Also,","score":1,"type":"text"}]},{"bbox":[302,716.0934448242188,558,728.098388671875],"spans":[{"bbox":[302,718,312,728],"content":"u_{y}","score":0.71,"type":"inline_equation"},{"bbox":[311.8827209472656,717.5206909179688,314.3733825683594,727.4833374023438],"content":",","score":1,"type":"text"},{"bbox":[314.3733825683594,716.0934448242188,319.3457336425781,727.98876953125],"content":" ","score":1,"type":"text"},{"bbox":[318,717,348,727],"content":"u_{z}\\,\\approx\\,0","score":0.89,"type":"inline_equation"},{"bbox":[347.4330139160156,716.0934448242188,482.147216796875,728.098388671875],"content":", in agreement with our assumpti","score":1,"type":"text"},{"bbox":[495.9852600097656,716.0934448242188,558.4208984375,728.098388671875],"content":". Finally, in the","score":1,"type":"text"}]},{"bbox":[302,727,558,740.5513916015625],"spans":[{"bbox":[303.3067321777344,727.0524291992188,481.1788635253906,739.057373046875],"content":"bottom panel, we see that the fluctuation of","score":1,"type":"text"},{"bbox":[483,727,495,738],"content":"B_{x}","score":0.89,"type":"inline_equation"},{"bbox":[494.2731018066406,727.0524291992188,558.4292602539062,740.5513916015625],"content":" remains within","score":1,"type":"text"}]},{"bbox":[302,738,558,750.0164184570312],"spans":[{"bbox":[302,738,333,749],"content":"\\lesssim\\,20\\%","score":0.89,"type":"inline_equation"},{"bbox":[332.7591552734375,738.011474609375,558.421875,750.0164184570312],"content":" of its mean value, so it is negligible to the first order.","score":1,"type":"text"}]},{"bbox":[302,748.970458984375,558,761],"spans":[{"bbox":[303.30670166015625,748.970458984375,413.0945129394531,760.9754028320312],"content":"Therefore, the assumptions","score":1,"type":"text"},{"bbox":[413.0945129394531,748.970458984375,416.74169921875,760.8657836914062],"content":" ","score":1,"type":"text"},{"bbox":[415,749,463,761],"content":"B_{y}\\,=\\,B_{y}(x)","score":0.76,"type":"inline_equation"},{"bbox":[462.6882629394531,748.970458984375,465.1789245605469,760.9754028320312],"content":",","score":1,"type":"text"},{"bbox":[465.1789245605469,748.970458984375,468.8227233886719,760.8657836914062],"content":" ","score":1,"type":"text"},{"bbox":[467,749,500,760],"content":"B_{x}\\,=\\,C","score":0.59,"type":"inline_equation"},{"bbox":[500.4847412109375,748.970458984375,530.6116943359375,760.9754028320312],"content":", where","score":1,"type":"text"},{"bbox":[530.6116943359375,748.970458984375,533.6547241210938,760.8657836914062],"content":" ","score":1,"type":"text"},{"bbox":[533,749,541,759],"content":"C","score":0.78,"type":"inline_equation"},{"bbox":[540.2998046875,748.970458984375,558.427734375,760.9754028320312],"content":" is a","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[174,34,420,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[456,771,558,779],"lines":[{"bbox":[455.1949157714844,769.8160400390625,558.4251098632812,780.6205444335938],"spans":[{"bbox":[455.1949157714844,769.8160400390625,558.4251098632812,780.6205444335938],"content":"Article number, page 5 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":4,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[37,54,558,419],"blocks":[{"bbox":[92,54,503,363],"lines":[{"bbox":[92,54,503,363],"spans":[{"bbox":[92,54,503,363],"image_path":"70d48a8caa72e2a1fb2dba440b843dccd872512362f2236fb151e9e6e515c87a.jpg","score":0.9999694228172302,"type":"image"}]}],"type":"image_body"},{"bbox":[37,370,558,419],"lines":[{"bbox":[36.849998474121094,369.34027099609375,558.4281616210938,381.0055847167969],"spans":[{"bbox":[36.849998474121094,369.34027099609375,60.386802673339844,381.0055847167969],"content":"Fig. 2.","score":1,"type":"text"},{"bbox":[60.386802673339844,369.6630859375,558.4281616210938,380.46759033203125],"content":" The density structure and magnetic field lines of the region R1 are shown after 5 Myr of evolution. The magnetic field lines are colored by","score":1,"type":"text"}]},{"bbox":[36.849998474121094,379.6260986328125,558.42529296875,390.43060302734375],"spans":[{"bbox":[36.849998474121094,379.6260986328125,558.42529296875,390.43060302734375],"content":"the Alfvénic Mach number. Note that at this evolution time, magnetic field lines are almost perpendicular to their original orientation along the","score":1,"type":"text"}]},{"bbox":[36,389.589111328125,558.4230346679688,400.39361572265625],"spans":[{"bbox":[36,391,42,398],"content":"x","score":0.73,"type":"inline_equation"},{"bbox":[41.28008270263672,389.589111328125,558.4230346679688,400.39361572265625],"content":" axis and the change from superalfvénic to transalfvénic of magnetic field lines across the shock. The dark-shaded regions at both sides of the","score":1,"type":"text"}]},{"bbox":[36.849998474121094,399.5511169433594,558.4254760742188,410.3556213378906],"spans":[{"bbox":[36.849998474121094,399.5511169433594,558.4254760742188,410.3556213378906],"content":"center are the shock fronts where magnetic field lines start to bend. We provide an animation showing the evolution of this region as supplementary","score":1,"type":"text"}]},{"bbox":[36.849998474121094,409.5141296386719,68.47449493408203,420.3186340332031],"spans":[{"bbox":[36.849998474121094,409.5141296386719,68.47449493408203,420.3186340332031],"content":"material.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,436.59661865234375,291,461.0545349121094],"lines":[{"bbox":[36,436.59661865234375,291,448.6015625],"spans":[{"bbox":[36.849998474121094,436.59661865234375,62.304439544677734,448.6015625],"content":"consta","score":1,"type":"text"},{"bbox":[72.54598236083984,436.59661865234375,75.4949951171875,448.4919738769531],"content":" ","score":1,"type":"text"},{"bbox":[74,437,118,448],"content":"u_{x}=u_{x}(x)","score":0.92,"type":"inline_equation"},{"bbox":[118.53955078125,436.59661865234375,141.692626953125,448.6015625],"content":", with","score":1,"type":"text"},{"bbox":[143,437,192,448],"content":"\\partial u_{x}/\\partial x<0","score":0.8,"type":"inline_equation"},{"bbox":[191.6802978515625,436.59661865234375,194.1709442138672,448.6015625],"content":",","score":1,"type":"text"},{"bbox":[194.1709442138672,436.59661865234375,197.12001037597656,448.4919738769531],"content":" ","score":1,"type":"text"},{"bbox":[196,437,240,448],"content":"u_{y},u_{z}\\,\\rightarrow\\,0","score":0.81,"type":"inline_equation"},{"bbox":[239.85430908203125,436.59661865234375,291.9686279296875,448.6015625],"content":", and solving","score":1,"type":"text"}]},{"bbox":[36,447.55560302734375,214.99986267089844,461.0545349121094],"spans":[{"bbox":[36.85002136230469,447.55560302734375,63.13136291503906,459.560546875],"content":"for the","score":1,"type":"text"},{"bbox":[63.13136291503906,447.55560302734375,72.05817413330078,459.4509582519531],"content":" B","score":1,"type":"text"},{"bbox":[71.95902252197266,451.8112487792969,75.05538940429688,460.1379699707031],"content":"y","score":1,"type":"text"},{"bbox":[75.05538940429688,447.55560302734375,214.99986267089844,461.0545349121094],"content":" component, reduce equation (5) to","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,467,139,493],"lines":[{"bbox":[35,467,139,493],"spans":[{"bbox":[35,467,139,493],"content":"\\frac{\\partial B_{y}}{\\partial t}=-B_{y}\\frac{\\partial u_{x}}{\\partial x}-u_{x}\\frac{\\partial B_{y}}{\\partial x}.","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[36,499.0665588378906,259.58380126953125,511.0715026855469],"lines":[{"bbox":[36,499.0665588378906,259.58380126953125,511.0715026855469],"spans":[{"bbox":[36.84999084472656,499.0665588378906,259.58380126953125,511.0715026855469],"content":"This equation can also be written in Lagrangian form as","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,518,103,543],"lines":[{"bbox":[35,518,103,543],"spans":[{"bbox":[35,518,103,543],"content":"\\frac{d B_{y}}{d t}=-B_{y}\\frac{\\partial u_{x}}{\\partial x}.","score":0.92,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[36,549.8035888671875,291,605.6434936523438],"lines":[{"bbox":[36,549.8035888671875,291,561.8085327148438],"spans":[{"bbox":[36.84999084472656,549.8035888671875,82.03038024902344,561.8085327148438],"content":"Thus, since","score":1,"type":"text"},{"bbox":[83,550,130,561],"content":"\\partial u_{x}/\\partial x<0","score":0.92,"type":"inline_equation"},{"bbox":[129.6632843017578,549.8035888671875,209.10507202148438,561.8085327148438],"content":", eq. (7) implies that","score":1,"type":"text"},{"bbox":[210,550,239,561],"content":"d B_{y}/d t","score":0.9,"type":"inline_equation"},{"bbox":[238.99288940429688,549.8035888671875,291.971435546875,561.8085327148438],"content":" has the same","score":1,"type":"text"}]},{"bbox":[36,560.7625732421875,291,574.2615356445312],"spans":[{"bbox":[36.850006103515625,560.7625732421875,64.45636749267578,572.7675170898438],"content":"sign as","score":1,"type":"text"},{"bbox":[64.45636749267578,560.7625732421875,67.50200653076172,572.6578979492188],"content":" ","score":1,"type":"text"},{"bbox":[66,561,77,573],"content":"B_{y}","score":0.87,"type":"inline_equation"},{"bbox":[77.0840072631836,560.7625732421875,256.7893371582031,572.7675170898438],"content":", and therefore the magnetic field component","score":1,"type":"text"},{"bbox":[258,561,269,573],"content":"B_{y}","score":0.88,"type":"inline_equation"},{"bbox":[268.91839599609375,560.7625732421875,291.970458984375,574.2615356445312],"content":" is al-","score":1,"type":"text"}]},{"bbox":[36,571.7215576171875,291,583.7265014648438],"spans":[{"bbox":[36.85002136230469,571.7215576171875,291.97222900390625,583.7265014648438],"content":"ways amplified by the downstream compressive velocity gradi-","score":1,"type":"text"}]},{"bbox":[36,582.6795654296875,291,594.6845092773438],"spans":[{"bbox":[36.85002136230469,582.6795654296875,291.9722595214844,594.6845092773438],"content":"ent. This amplification results in the magnetic field aligning to","score":1,"type":"text"}]},{"bbox":[36,593.6385498046875,205.7858123779297,605.6434936523438],"spans":[{"bbox":[36.85002136230469,593.6385498046875,205.7858123779297,605.6434936523438],"content":"the condensation plane where CACs form.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,623,203,633],"lines":[{"bbox":[36.85002136230469,622.0263671875,203.02777099609375,633.743408203125],"spans":[{"bbox":[36.85002136230469,622.0263671875,203.02777099609375,633.743408203125],"content":"4.2.2. Line bending at curved interfaces","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,639.381591796875,291,760.9755249023438],"lines":[{"bbox":[36,639.381591796875,291,651.3865356445312],"spans":[{"bbox":[36.85002136230469,639.381591796875,291.9722595214844,651.3865356445312],"content":"Another possible mechanism for aligning the magnetic field","score":1,"type":"text"}]},{"bbox":[36,650.340576171875,291,662.3455200195312],"spans":[{"bbox":[36.85002136230469,650.340576171875,291.9722595214844,662.3455200195312],"content":"with the density structures occurs when the collision interface","score":1,"type":"text"}]},{"bbox":[36,661.299560546875,291,673.3045043945312],"spans":[{"bbox":[36.85002136230469,661.299560546875,291.9722900390625,673.3045043945312],"content":"is curved rather than flat, as, for example, in the case of the","score":1,"type":"text"}]},{"bbox":[36,672.258544921875,291,684.2634887695312],"spans":[{"bbox":[36.85002136230469,672.258544921875,291.97222900390625,684.2634887695312],"content":"NTSI (Vishniac 1994). To investigate this, we also ran two-","score":1,"type":"text"}]},{"bbox":[36,683.216552734375,291,695.2214965820312],"spans":[{"bbox":[36.85002136230469,683.216552734375,291.9722900390625,695.2214965820312],"content":"dimensional simulations with the same initial conditions and","score":1,"type":"text"}]},{"bbox":[36,694.175537109375,291,706.1804809570312],"spans":[{"bbox":[36.85002136230469,694.175537109375,291.9722900390625,706.1804809570312],"content":"physics as the three-dimensional simulation described in Sec-","score":1,"type":"text"}]},{"bbox":[36,705.134521484375,291,717.1394653320312],"spans":[{"bbox":[36.85002136230469,705.134521484375,291.9722595214844,717.1394653320312],"content":"tion 2 but with a curved collision interface, obtained by adding","score":1,"type":"text"}]},{"bbox":[36,716.0935668945312,291,728.0985107421875],"spans":[{"bbox":[36.85002136230469,716.0935668945312,291.9722595214844,728.0985107421875],"content":"a sinusoidal displacement perturbation (a “bending mode” per-","score":1,"type":"text"}]},{"bbox":[36,727.0525512695312,291,739.0574951171875],"spans":[{"bbox":[36.85002136230469,727.0525512695312,291.9721984863281,739.0574951171875],"content":"turbation). In the left panel of Figure 7, we show a very early","score":1,"type":"text"}]},{"bbox":[36,738.0115356445312,291,750.0164794921875],"spans":[{"bbox":[36.85002136230469,738.0115356445312,291.9721984863281,750.0164794921875],"content":"stage of this simulation. In this case, the obliqueness of the in-","score":1,"type":"text"}]},{"bbox":[36,748.9705810546875,291,760.9755249023438],"spans":[{"bbox":[36.85002136230469,748.9705810546875,291.9722595214844,760.9755249023438],"content":"terface implies the existence of a component of the incoming","score":1,"type":"text"}]},{"bbox":[303,436.5965576171875,558,448.60150146484375],"spans":[{"bbox":[303.3070068359375,436.5965576171875,558.4292602539062,448.60150146484375],"content":"flow tangential to it, while the perpendicular component is re-","score":1,"type":"text"}]},{"bbox":[303,447.5555419921875,558,459.56048583984375],"spans":[{"bbox":[303.3070068359375,447.5555419921875,558.4293823242188,459.56048583984375],"content":"duced across the shock. This causes the flow to change direction","score":1,"type":"text"}]},{"bbox":[303,458.5145263671875,558,470.51947021484375],"spans":[{"bbox":[303.3070068359375,458.5145263671875,558.4290161132812,470.51947021484375],"content":"at the interface, being now oblique to the original magnetic field","score":1,"type":"text"}]},{"bbox":[303,469.4725341796875,558,481.47747802734375],"spans":[{"bbox":[303.3070068359375,469.4725341796875,558.4290771484375,481.47747802734375],"content":"direction. Being transalfvénic, this oblique post-shock flow can","score":1,"type":"text"}]},{"bbox":[303,480.4315185546875,558,492.43646240234375],"spans":[{"bbox":[303.3070068359375,480.4315185546875,558.4293212890625,492.43646240234375],"content":"begin bending the field lines. The situation is symmetric on both","score":1,"type":"text"}]},{"bbox":[303,491.3905029296875,558,503.39544677734375],"spans":[{"bbox":[303.3070068359375,491.3905029296875,558.4291381835938,503.39544677734375],"content":"sides of the layer, thus generating a shearing velocity field with","score":1,"type":"text"}]},{"bbox":[303,502.3494873046875,558,514.3544311523438],"spans":[{"bbox":[303.3070068359375,502.3494873046875,498.7630920410156,514.3544311523438],"content":"opposite directions at opposite sides due to the di","score":1,"type":"text"},{"bbox":[498.76702880859375,504.0028076171875,504.7445983886719,513.9653930664062],"content":"ff","score":1,"type":"text"},{"bbox":[504.7450256347656,502.3494873046875,558.423583984375,514.3544311523438],"content":"erent concav-","score":1,"type":"text"}]},{"bbox":[303,513.3084716796875,558,525.3134155273438],"spans":[{"bbox":[303.3070068359375,513.3084716796875,558.42919921875,525.3134155273438],"content":"ity of the collision interface. This generates an “S” shape of the","score":1,"type":"text"}]},{"bbox":[303,524.2674560546875,558,536.2723999023438],"spans":[{"bbox":[303.3070068359375,524.2674560546875,558.4293212890625,536.2723999023438],"content":"magnetic field lines across the shocked layer. A later stage of","score":1,"type":"text"}]},{"bbox":[303,535.2264404296875,558,547.2313842773438],"spans":[{"bbox":[303.3070068359375,535.2264404296875,558.4291381835938,547.2313842773438],"content":"this simulation is shown in the right panel of Figure 7, showing","score":1,"type":"text"}]},{"bbox":[303,546.1854248046875,558,558.1903686523438],"spans":[{"bbox":[303.3070068359375,546.1854248046875,558.4293823242188,558.1903686523438],"content":"that the flow tends to be subalfvénic in the condensed regions.","score":1,"type":"text"}]},{"bbox":[303,557.1444091796875,558,569.1493530273438],"spans":[{"bbox":[303.3070068359375,557.1444091796875,519.4454345703125,569.1493530273438],"content":"For this collision interface, the line-bending analysis di","score":1,"type":"text"},{"bbox":[519.447998046875,558.7977294921875,525.425537109375,568.7603149414062],"content":"ff","score":1,"type":"text"},{"bbox":[525.426025390625,557.1444091796875,558.4222412109375,569.1493530273438],"content":"ers from","score":1,"type":"text"}]},{"bbox":[303,568.1033935546875,558,580.1083374023438],"spans":[{"bbox":[303.3070068359375,568.1033935546875,558.4293823242188,580.1083374023438],"content":"that described in Section 4.2. In this case, we will have a ve-","score":1,"type":"text"}]},{"bbox":[303,579.0614013671875,558,591.0663452148438],"spans":[{"bbox":[303.3070068359375,579.0614013671875,558.4291381835938,591.0663452148438],"content":"locity field like the one represented in Figure 8, where the left","score":1,"type":"text"}]},{"bbox":[303,590.0203857421875,558,602.0253295898438],"spans":[{"bbox":[303.3070068359375,590.0203857421875,558.42919921875,602.0253295898438],"content":"panel represents an unperturbed downstream magnetic field line","score":1,"type":"text"}]},{"bbox":[303,600.9793701171875,558,612.9843139648438],"spans":[{"bbox":[303.3070068359375,600.9793701171875,558.4290161132812,612.9843139648438],"content":"and the right panel represents a perturbed one. In the left panel,","score":1,"type":"text"}]},{"bbox":[303,611.9384155273438,558,623.943359375],"spans":[{"bbox":[303.3070068359375,611.9384155273438,558.4293212890625,623.943359375],"content":"we consider a local system of coordinates centered at the point","score":1,"type":"text"}]},{"bbox":[303,622.8973999023438,558,636.3963623046875],"spans":[{"bbox":[303.3070068359375,622.8973999023438,342.1412048339844,634.90234375],"content":"where the","score":1,"type":"text"},{"bbox":[343,624,353,635],"content":"u_{y}","score":0.86,"type":"inline_equation"},{"bbox":[352.54736328125,622.8973999023438,558.4288330078125,636.3963623046875],"content":" is maximum. The magnetic field line is represented","score":1,"type":"text"}]},{"bbox":[303,633.8563842773438,558,645.861328125],"spans":[{"bbox":[303.3070068359375,633.8563842773438,353.4188537597656,645.861328125],"content":"in green, the","score":1,"type":"text"},{"bbox":[355,636,362,644],"content":"x","score":0.73,"type":"inline_equation"},{"bbox":[361.1570129394531,633.8563842773438,503.79144287109375,645.861328125],"content":"-axis is parallel to the field line, the","score":1,"type":"text"},{"bbox":[505,636,512,645],"content":"y","score":0.73,"type":"inline_equation"},{"bbox":[511.00201416015625,633.8563842773438,558.4240112304688,645.861328125],"content":"-axis is per-","score":1,"type":"text"}]},{"bbox":[303,644.8154296875,558,656.8203735351562],"spans":[{"bbox":[303.3070068359375,644.8154296875,558.4292602539062,656.8203735351562],"content":"pendicular to it, and the velocity field is represented by black","score":1,"type":"text"}]},{"bbox":[303,655.7744140625,558,668],"spans":[{"bbox":[303.3070068359375,655.7744140625,394.39501953125,667.7793579101562],"content":"arrows. Thus, initially,","score":1,"type":"text"},{"bbox":[396,656,428,668],"content":"B_{y}\\,=\\,0","score":0.92,"type":"inline_equation"},{"bbox":[427.1573181152344,655.7744140625,444.77117919921875,667.7793579101562],"content":" and","score":1,"type":"text"},{"bbox":[444.77117919921875,655.7744140625,448.3580322265625,667.6697387695312],"content":" ","score":1,"type":"text"},{"bbox":[447,656,480,667],"content":"B_{x}\\,=\\,C","score":0.92,"type":"inline_equation"},{"bbox":[479.7940368652344,655.7744140625,509.8611755371094,667.7793579101562],"content":", where","score":1,"type":"text"},{"bbox":[509.8611755371094,655.7744140625,512.841064453125,667.6697387695312],"content":" ","score":1,"type":"text"},{"bbox":[512,656,521,665],"content":"C","score":0.78,"type":"inline_equation"},{"bbox":[519.4861450195312,655.7744140625,558.4248657226562,667.7793579101562],"content":" is a con-","score":1,"type":"text"}]},{"bbox":[303,666.7333984375,558,679],"spans":[{"bbox":[303.30706787109375,666.7333984375,399.7848205566406,678.7383422851562],"content":"stant. Then, considering","score":1,"type":"text"},{"bbox":[401,669,412,678],"content":"u_{x}","score":0.47,"type":"inline_equation"},{"bbox":[411.5950622558594,666.7333984375,414.0857238769531,678.7383422851562],"content":",","score":1,"type":"text"},{"bbox":[415,668,447,678],"content":"u_{z}\\rightarrow0","score":0.83,"type":"inline_equation"},{"bbox":[446.6263427734375,666.7333984375,466.36224365234375,678.7383422851562],"content":", and","score":1,"type":"text"},{"bbox":[466.36224365234375,666.7333984375,469.2230529785156,678.6287231445312],"content":" ","score":1,"type":"text"},{"bbox":[468,667,511,679],"content":"u_{y}=u_{y}(x)","score":0.93,"type":"inline_equation"},{"bbox":[511.2005615234375,666.7333984375,558.42333984375,678.7383422851562],"content":", we obtain,","score":1,"type":"text"}]},{"bbox":[303,677.6923828125,376.07379150390625,689.6973266601562],"spans":[{"bbox":[303.3070068359375,677.6923828125,376.07379150390625,689.6973266601562],"content":"from equation (5),","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,436.5965576171875,558,689.6973266601562],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[302,695,362,721],"lines":[{"bbox":[302,695,362,721],"spans":[{"bbox":[302,695,362,721],"content":"\\frac{\\partial B_{y}}{\\partial t}=B_{x}\\frac{\\partial u_{y}}{\\partial x}.","score":0.92,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[303,727.0525512695312,558,761],"lines":[{"bbox":[303,727.0525512695312,558,739.0574951171875],"spans":[{"bbox":[303.30694580078125,727.0525512695312,532.5363159179688,739.0574951171875],"content":"We can then consider the previous equation in three di","score":1,"type":"text"},{"bbox":[532.531982421875,728.7058715820312,538.509521484375,738.66845703125],"content":"ff","score":1,"type":"text"},{"bbox":[538.510009765625,727.0525512695312,558.42529296875,739.0574951171875],"content":"erent","score":1,"type":"text"}]},{"bbox":[303,738,558,750.0164794921875],"spans":[{"bbox":[303.3070068359375,738.0115356445312,337.7775573730469,750.0164794921875],"content":"regions i","score":1,"type":"text"},{"bbox":[390.1608581542969,738.0115356445312,418.99261474609375,750.0164794921875],"content":"el of Fi","score":1,"type":"text"},{"bbox":[470.2900085449219,738.0115356445312,512.8103637695312,750.0164794921875],"content":" the region","score":1,"type":"text"},{"bbox":[514,738,556,749],"content":"x\\in[x_{1},0]","score":0.91,"type":"inline_equation"},{"bbox":[555.934814453125,738.0115356445312,558.4254760742188,750.0164794921875],"content":",","score":1,"type":"text"}]},{"bbox":[303,748.9705810546875,558,761],"spans":[{"bbox":[303.30694580078125,748.9705810546875,335.7252502441406,760.9755249023438],"content":"we have","score":1,"type":"text"},{"bbox":[337,749,388,761],"content":"\\partial u_{y}/\\partial x\\;>\\;0","score":0.92,"type":"inline_equation"},{"bbox":[377.6401672363281,748.9705810546875,418.1480712890625,760.9755249023438],"content":" 0, and so","score":1,"type":"text"},{"bbox":[419,749,470,761],"content":"\\partial B_{y}/\\partial t\\;>\\;0","score":0.9,"type":"inline_equation"},{"bbox":[459.4171447753906,748.9705810546875,558.425537109375,760.9755249023438],"content":" 0. Second, in the region","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[37,771,139,779],"lines":[{"bbox":[36.850006103515625,769.8155517578125,140.08016967773438,780.6200561523438],"spans":[{"bbox":[36.850006103515625,769.8155517578125,140.08016967773438,780.6200561523438],"content":"Article number, page 6 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[241,34,354,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":5,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[36,100,291,511],"blocks":[{"bbox":[40,100,271,444],"lines":[{"bbox":[40,100,271,444],"spans":[{"bbox":[40,100,271,444],"image_path":"589cf2f214965f4b5a2a42f180b28d9214ef254adce92adc06c7af46bb46d9a1.jpg","score":0.9999798536300659,"type":"image"}]}],"type":"image_body"},{"bbox":[36,471,291,511],"lines":[{"bbox":[36.849998474121094,470.33526611328125,291.9695739746094,482.0005798339844],"spans":[{"bbox":[36.849998474121094,470.33526611328125,60.91581726074219,482.0005798339844],"content":"Fig. 3.","score":1,"type":"text"},{"bbox":[60.91581726074219,470.6580810546875,174.13414001464844,481.46258544921875],"content":" Top: HRO diagram for four di","score":1,"type":"text"},{"bbox":[174.13299560546875,472.1460876464844,179.51283264160156,481.11248779296875],"content":"ff","score":1,"type":"text"},{"bbox":[179.51300048828125,470.6580810546875,291.9695739746094,481.46258544921875],"content":"erent number density intervals.","score":1,"type":"text"}]},{"bbox":[36.850006103515625,480.62109375,291.9709777832031,491.42559814453125],"spans":[{"bbox":[36.850006103515625,480.62109375,291.9709777832031,491.42559814453125],"content":"Bottom: shape parameter (see eq. 4.3) versus number density. As we","score":1,"type":"text"}]},{"bbox":[36.850006103515625,490.5830993652344,291.970947265625,501.3876037597656],"spans":[{"bbox":[36.850006103515625,490.5830993652344,291.970947265625,501.3876037597656],"content":"can see in this figure, the magnetic field is increasingly parallel for the","score":1,"type":"text"}]},{"bbox":[36.850006103515625,500.5461120605469,291.9709167480469,511.3506164550781],"spans":[{"bbox":[36.850006103515625,500.5461120605469,291.9709167480469,511.3506164550781],"content":"first three intervals, but there is a change in the trend for the last interval.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,529.7105712890625,291,559.27978515625],"lines":[{"bbox":[36,529.7105712890625,291,541.7155151367188],"spans":[{"bbox":[36,530,77,541],"content":"x\\in[0,x_{2}]","score":0.91,"type":"inline_equation"},{"bbox":[77.4885482788086,529.7105712890625,119.6502685546875,541.7155151367188],"content":", we see th","score":1,"type":"text"},{"bbox":[128,530,180,541],"content":"\\partial u_{y}/\\partial x\\ <\\ 0","score":0.9,"type":"inline_equation"},{"bbox":[179.54129028320312,529.7105712890625,237.43397521972656,541.7155151367188],"content":", and therefore","score":1,"type":"text"},{"bbox":[237.43397521972656,531.1378173828125,239.95700073242188,541.1004638671875],"content":" ","score":1,"type":"text"},{"bbox":[239,530,290,541],"content":"\\partial B_{y}/\\partial t\\ <\\ 0","score":0.89,"type":"inline_equation"},{"bbox":[289.477294921875,529.7105712890625,291.96795654296875,541.7155151367188],"content":".","score":1,"type":"text"}]},{"bbox":[36,540.6696166992188,291,559.27978515625],"spans":[{"bbox":[36.850006103515625,540.6696166992188,118.15476989746094,552.674560546875],"content":"Finally, in the region","score":1,"type":"text"},{"bbox":[119,541,218,552],"content":"x\\in\\check{[x_{2},x_{3}]},\\partial u_{y}/\\partial x\\,>\\,0","score":0.77,"type":"inline_equation"},{"bbox":[125.08039855957031,541.2474365234375,133.21795654296875,559.27978515625],"content":" ∈","score":1,"type":"text"},{"bbox":[208.30221557617188,540.6696166992188,230.2953338623047,552.674560546875],"content":" 0, th","score":1,"type":"text"},{"bbox":[240,541,290,552],"content":"\\partial\\dot{B_{y}}/\\partial t\\;>\\;0","score":0.87,"type":"inline_equation"}]}],"type":"text"},{"bbox":[36,551.7526245117188,291,596.634521484375],"lines":[{"bbox":[51,551.7526245117188,291,563.757568359375],"spans":[{"bbox":[51.79400634765625,551.7526245117188,227.6339111328125,563.757568359375],"content":"Therefore, for these three regions, the sign of","score":1,"type":"text"},{"bbox":[229,552,257,563],"content":"\\partial B_{y}/\\partial t","score":0.9,"type":"inline_equation"},{"bbox":[256.8305969238281,551.7526245117188,291.9678955078125,563.757568359375],"content":" explains","score":1,"type":"text"}]},{"bbox":[36,562.7116088867188,291,574.716552734375],"spans":[{"bbox":[36.85002136230469,562.7116088867188,252.42076110839844,574.716552734375],"content":"the deformation of the magnetic field line having an ","score":1,"type":"text"},{"bbox":[251,563,267,573],"content":"\"S\"","score":0.47,"type":"inline_equation"},{"bbox":[266.0894470214844,562.7116088867188,291.9722900390625,574.716552734375],"content":" shape","score":1,"type":"text"}]},{"bbox":[36,573.6705932617188,291,585.675537109375],"spans":[{"bbox":[36.85002136230469,573.6705932617188,291.97222900390625,585.675537109375],"content":"morphology where each convex part aligns the direction of the","score":1,"type":"text"}]},{"bbox":[36,584.6295776367188,190.9913330078125,596.634521484375],"spans":[{"bbox":[36.85002136230469,584.6295776367188,190.9913330078125,596.634521484375],"content":"flow (See Figures 7 (left panel) and 8).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,615,104,626],"lines":[{"bbox":[36.85002136230469,614.6279296875,104.09942626953125,627.6446533203125],"spans":[{"bbox":[36.85002136230469,614.6279296875,104.09942626953125,627.6446533203125],"content":"5. Discussion","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,632.92236328125,291,655.5984497070312],"lines":[{"bbox":[36,632.92236328125,291,644.639404296875],"spans":[{"bbox":[36.85002136230469,632.92236328125,289.33465576171875,644.639404296875],"content":"5.1. The role of the pre-condensation shock in the alignment","score":1,"type":"text"}]},{"bbox":[55.955020904541016,643.8814086914062,140.65284729003906,655.5984497070312],"spans":[{"bbox":[55.955020904541016,643.8814086914062,140.65284729003906,655.5984497070312],"content":"of the magnetic field","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,661.1746215820312,291,738.9335327148438],"lines":[{"bbox":[36,661.1746215820312,291,673.1795654296875],"spans":[{"bbox":[36.85002136230469,661.1746215820312,291.9723205566406,673.1795654296875],"content":"As we have seen from the three-dimensional simulation, mag-","score":1,"type":"text"}]},{"bbox":[36,672.1336059570312,291,684.1385498046875],"spans":[{"bbox":[36.85002136230469,672.1336059570312,291.9722900390625,684.1385498046875],"content":"netic field lines change their orientation at the shock front due","score":1,"type":"text"}]},{"bbox":[36,683.0925903320312,291,695.0975341796875],"spans":[{"bbox":[36.85002136230469,683.0925903320312,67.74404907226562,695.0975341796875],"content":"to the e","score":1,"type":"text"},{"bbox":[67.74002075195312,684.7459106445312,73.71758270263672,694.70849609375],"content":"ff","score":1,"type":"text"},{"bbox":[73.7170181274414,683.0925903320312,291.9676513671875,695.0975341796875],"content":"ect of the fast MHD shock. The passage of the shock","score":1,"type":"text"}]},{"bbox":[36,694.0516357421875,291,706.0565795898438],"spans":[{"bbox":[36.85001754760742,694.0516357421875,291.9723205566406,706.0565795898438],"content":"front yields an irregular amplification of the parallel component","score":1,"type":"text"}]},{"bbox":[36,705.0106201171875,291,717.0155639648438],"spans":[{"bbox":[36.85001754760742,705.0106201171875,291.9722595214844,717.0155639648438],"content":"to it, which results in the early downstream shocked magnetic","score":1,"type":"text"}]},{"bbox":[36,715.9696044921875,291,727.9745483398438],"spans":[{"bbox":[36.85001754760742,715.9696044921875,291.9722900390625,727.9745483398438],"content":"field line pattern. Afterward, magnetic field lines are dragged","score":1,"type":"text"}]},{"bbox":[36,726.9285888671875,226.62762451171875,738.9335327148438],"spans":[{"bbox":[36.85001754760742,726.9285888671875,226.62762451171875,738.9335327148438],"content":"and folded by the downstream decelerating gas.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,738.0115966796875,291,760.9755249023438],"lines":[{"bbox":[51,738.0115966796875,291,750.0165405273438],"spans":[{"bbox":[51.79401779174805,738.0115966796875,291.9723815917969,750.0165405273438],"content":"In this work, we do not vary the relative orientation between","score":1,"type":"text"}]},{"bbox":[36,748.9705810546875,291,760.9755249023438],"spans":[{"bbox":[36.85001754760742,748.9705810546875,291.9722595214844,760.9755249023438],"content":"the upstream magnetic field and the shock front of the system in","score":1,"type":"text"}]},{"bbox":[303,56.56658935546875,558,68.57152557373047],"spans":[{"bbox":[303.3070068359375,56.56658935546875,558.4292602539062,68.57152557373047],"content":"the initial condition. However, there is a small range of angles","score":1,"type":"text"}]},{"bbox":[303,67.52557373046875,558,79.53050994873047],"spans":[{"bbox":[303.3070068359375,67.52557373046875,558.4292602539062,79.53050994873047],"content":"between them due to the departure of the shock front from a per-","score":1,"type":"text"}]},{"bbox":[303,78.48455810546875,558,90.48949432373047],"spans":[{"bbox":[303.3070068359375,78.48455810546875,558.4293212890625,90.48949432373047],"content":"fectly flat plane due to the velocity fluctuations. The influence of","score":1,"type":"text"}]},{"bbox":[303,89.44354248046875,558,101.44847869873047],"spans":[{"bbox":[303.3070068359375,89.44354248046875,558.4293212890625,101.44847869873047],"content":"the initial angle between the magnetic field and the shock front","score":1,"type":"text"}]},{"bbox":[303,100.40252685546875,558,112.40746307373047],"spans":[{"bbox":[303.3070068359375,100.40252685546875,558.4292602539062,112.40746307373047],"content":"has been studied in Inoue & Inutsuka (2016), who found that the","score":1,"type":"text"}]},{"bbox":[303,111.36151123046875,558,123.36644744873047],"spans":[{"bbox":[303.3070068359375,111.36151123046875,558.42919921875,123.36644744873047],"content":"number of CACs or fibers oriented perpendicular to the magnetic","score":1,"type":"text"}]},{"bbox":[303,122.32049560546875,558,134.32542419433594],"spans":[{"bbox":[303.3070068359375,122.32049560546875,558.42919921875,134.32542419433594],"content":"field increases with the orientation angle of the upstream mag-","score":1,"type":"text"}]},{"bbox":[303,133.27947998046875,558,145.28440856933594],"spans":[{"bbox":[303.3070068359375,133.27947998046875,558.42919921875,145.28440856933594],"content":"netic field and the shock front for simulations without an initial","score":1,"type":"text"}]},{"bbox":[303,144.23846435546875,558,156.24339294433594],"spans":[{"bbox":[303.3070068359375,144.23846435546875,558.4291381835938,156.24339294433594],"content":"velocity dispersion. However, when an initial velocity dispersion","score":1,"type":"text"}]},{"bbox":[303,155.19647216796875,558,167.20140075683594],"spans":[{"bbox":[303.3070068359375,155.19647216796875,558.4291381835938,167.20140075683594],"content":"is included, the authors find that fibers tend to be oriented in the","score":1,"type":"text"}]},{"bbox":[303,166.15545654296875,558,178.16038513183594],"spans":[{"bbox":[303.3070068359375,166.15545654296875,558.4292602539062,178.16038513183594],"content":"direction of the local magnetic field. For this reason, they con-","score":1,"type":"text"}]},{"bbox":[303,177.11444091796875,558,189.11936950683594],"spans":[{"bbox":[303.3070068359375,177.11444091796875,558.42919921875,189.11936950683594],"content":"clude that the formation mechanism of fibers and their alignment","score":1,"type":"text"}]},{"bbox":[303,188.07342529296875,558,200.07835388183594],"spans":[{"bbox":[303.3070068359375,188.07342529296875,558.4292602539062,200.07835388183594],"content":"with the local magnetic field is the turbulent shear strain, which","score":1,"type":"text"}]},{"bbox":[303,199.03240966796875,558,211.03733825683594],"spans":[{"bbox":[303.3070068359375,199.03240966796875,558.4291381835938,211.03733825683594],"content":"was also identified as the reason for the elongation of filamentary","score":1,"type":"text"}]},{"bbox":[303,209.99139404296875,419.1221923828125,221.99632263183594],"spans":[{"bbox":[303.3070068359375,209.99139404296875,419.1221923828125,221.99632263183594],"content":"CACs by Hennebelle (2013).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,56.56658935546875,558,221.99632263183594],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,222.597412109375,558,278.43829345703125],"lines":[{"bbox":[318,222.597412109375,558,234.6023406982422],"spans":[{"bbox":[318.2510070800781,222.597412109375,558.4293212890625,234.6023406982422],"content":"It is important to mention that the role of MHD shocks in the","score":1,"type":"text"}]},{"bbox":[303,233.556396484375,558,245.5613250732422],"spans":[{"bbox":[303.3070068359375,233.556396484375,558.42919921875,245.5613250732422],"content":"evolution of magnetic field lines that yield the final correlation","score":1,"type":"text"}]},{"bbox":[303,244.515380859375,558,256.52032470703125],"spans":[{"bbox":[303.3070068359375,244.515380859375,558.42919921875,256.52032470703125],"content":"has not been explored before. In this work, we identified that","score":1,"type":"text"}]},{"bbox":[303,255.474365234375,558,267.47930908203125],"spans":[{"bbox":[303.3070068359375,255.474365234375,558.4291381835938,267.47930908203125],"content":"a fast MHD shock produces magnetic field fluctuations that get","score":1,"type":"text"}]},{"bbox":[303,266.433349609375,535.1765747070312,278.43829345703125],"spans":[{"bbox":[303.3070068359375,266.433349609375,535.1765747070312,278.43829345703125],"content":"amplified between the shock front and condensation layer.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,297,555,328],"lines":[{"bbox":[303.3070068359375,296.2811279296875,553.4537963867188,307.9981689453125],"spans":[{"bbox":[303.3070068359375,296.2811279296875,553.4537963867188,307.9981689453125],"content":"5.2. The role of the velocity gradient in aligning the field and","score":1,"type":"text"}]},{"bbox":[322.4110107421875,307.2401123046875,540.2269897460938,318.9571533203125],"spans":[{"bbox":[322.4110107421875,307.2401123046875,540.2269897460938,318.9571533203125],"content":"density structures. The case of gravitationally-driven","score":1,"type":"text"}]},{"bbox":[322.4110107421875,318.1990966796875,387.0630187988281,329.9161376953125],"spans":[{"bbox":[322.4110107421875,318.1990966796875,387.0630187988281,329.9161376953125],"content":"cloud formation","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,337.01531982421875,558,403.814208984375],"lines":[{"bbox":[303,337.01531982421875,558,349.020263671875],"spans":[{"bbox":[303.3070068359375,337.01531982421875,558.4293212890625,349.020263671875],"content":"Soler & Hennebelle (2017) proposed that the relative orienta-","score":1,"type":"text"}]},{"bbox":[303,347.97430419921875,558,359.979248046875],"spans":[{"bbox":[303.3070068359375,347.97430419921875,523.4403686523438,359.979248046875],"content":"tions between the magnetic field and density structures","score":1,"type":"text"},{"bbox":[523.4403686523438,349.4015808105469,526.1890258789062,359.3641662597656],"content":" ","score":1,"type":"text"},{"bbox":[525,348,558,359],"content":"\\phi=90^{\\circ}","score":0.91,"type":"inline_equation"}]},{"bbox":[303,358.93231201171875,558,370.937255859375],"spans":[{"bbox":[303.3070068359375,358.93231201171875,317.6929931640625,370.937255859375],"content":"and","score":1,"type":"text"},{"bbox":[317.6929931640625,360.3595886230469,319.9909973144531,370.3221740722656],"content":" ","score":1,"type":"text"},{"bbox":[319,359,346,370],"content":"\\phi=0^{\\circ}","score":0.93,"type":"inline_equation"},{"bbox":[348.5849914550781,358.93231201171875,558.4271850585938,370.937255859375],"content":"might be equilibrium points. However, the reason for","score":1,"type":"text"}]},{"bbox":[303,369.89129638671875,558,381.896240234375],"spans":[{"bbox":[303.3070068359375,369.89129638671875,558.4290771484375,381.896240234375],"content":"that is unknown. In this work, we identified that it is the action of","score":1,"type":"text"}]},{"bbox":[303,380.85028076171875,558,392.855224609375],"spans":[{"bbox":[303.3070068359375,380.85028076171875,558.4292602539062,392.855224609375],"content":"a fast MHD shock and the compressive velocity resulting from","score":1,"type":"text"}]},{"bbox":[303,391.80926513671875,543,403.814208984375],"spans":[{"bbox":[303.3070068359375,391.80926513671875,507.73956298828125,403.814208984375],"content":"the gas settlement onto the dense layer that leads to","score":1,"type":"text"},{"bbox":[507.73956298828125,393.2365417480469,510.23101806640625,403.1991271972656],"content":" ","score":1,"type":"text"},{"bbox":[509,392,541,403],"content":"\\phi=90^{\\circ}","score":0.91,"type":"inline_equation"},{"bbox":[541.508056640625,391.80926513671875,543.9987182617188,403.814208984375],"content":".","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,404.4152526855469,558,591.7630004882812],"lines":[{"bbox":[318,404.4152526855469,558,416.4201965332031],"spans":[{"bbox":[318.25103759765625,404.4152526855469,558.4293212890625,416.4201965332031],"content":"Since we have focused on non-gravitational CACs, we have","score":1,"type":"text"}]},{"bbox":[303,415.374267578125,558,427.37921142578125],"spans":[{"bbox":[303.3070373535156,415.374267578125,422.1806335449219,427.37921142578125],"content":"not numerically explored how","score":1,"type":"text"},{"bbox":[423,416,430,426],"content":"\\phi","score":0.83,"type":"inline_equation"},{"bbox":[429.969482421875,415.374267578125,467.13922119140625,427.37921142578125],"content":" becomes","score":1,"type":"text"},{"bbox":[468,416,478,425],"content":"0^{\\circ}","score":0.82,"type":"inline_equation"},{"bbox":[478.39605712890625,415.374267578125,558.4257202148438,427.37921142578125],"content":". However, a discus-","score":1,"type":"text"}]},{"bbox":[303,426.333251953125,558,438.33819580078125],"spans":[{"bbox":[303.30706787109375,426.333251953125,558.42919921875,438.33819580078125],"content":"sion similar to that in Section 4.2.1 leads us to speculate that the","score":1,"type":"text"}]},{"bbox":[303,437,558,449.29718017578125],"spans":[{"bbox":[302,437,329,448],"content":"\\phi=0^{\\circ}","score":0.91,"type":"inline_equation"},{"bbox":[331.6390686035156,437.292236328125,558.4277954101562,449.29718017578125],"content":"configuration may arise in the presence of a stretching ve-","score":1,"type":"text"}]},{"bbox":[303,448.251220703125,558,460.25616455078125],"spans":[{"bbox":[303.30706787109375,448.251220703125,558.4292602539062,460.25616455078125],"content":"locity field, as it would be the case of the tidal flow into the grav-","score":1,"type":"text"}]},{"bbox":[303,459.210205078125,558,471.21514892578125],"spans":[{"bbox":[303.30706787109375,459.210205078125,558.42919921875,471.21514892578125],"content":"itational well of a strongly self-gravitating cloud. In this case,","score":1,"type":"text"}]},{"bbox":[303,470.169189453125,558,483.6681213378906],"spans":[{"bbox":[302,472,309,480],"content":"x","score":0.67,"type":"inline_equation"},{"bbox":[308.22845458984375,470.169189453125,467.49090576171875,482.17413330078125],"content":" would be the direction of the flow and","score":1,"type":"text"},{"bbox":[469,471,481,482],"content":"B_{y}","score":0.87,"type":"inline_equation"},{"bbox":[480.0664367675781,470.169189453125,558.4236450195312,483.6681213378906],"content":" is a magnetic field","score":1,"type":"text"}]},{"bbox":[303,481.127197265625,558,493.13214111328125],"spans":[{"bbox":[303.30706787109375,481.127197265625,558.4292602539062,493.13214111328125],"content":"perturbation perpendicular to that direction. Therefore, equation","score":1,"type":"text"}]},{"bbox":[303,492,558,504.09112548828125],"spans":[{"bbox":[303.30706787109375,492.086181640625,494.9374694824219,504.09112548828125],"content":"(7) for a positive velocity gradient implies that","score":1,"type":"text"},{"bbox":[494.9374694824219,492.086181640625,498.3570556640625,503.9815368652344],"content":" ","score":1,"type":"text"},{"bbox":[497,492,527,504],"content":"d B_{y}/d t","score":0.91,"type":"inline_equation"},{"bbox":[525.9519653320312,492.086181640625,558.4227294921875,504.09112548828125],"content":" has the","score":1,"type":"text"}]},{"bbox":[303,503,558,515.0501098632812],"spans":[{"bbox":[303.30706787109375,503.045166015625,367.4561767578125,515.0501098632812],"content":"opposite sign to","score":1,"type":"text"},{"bbox":[369,503,380,515],"content":"B_{y}","score":0.88,"type":"inline_equation"},{"bbox":[380.4080505371094,503.045166015625,558.4298095703125,515.0501098632812],"content":", straightening the field lines. Thus, we sug-","score":1,"type":"text"}]},{"bbox":[303,514.004150390625,558,526.0090942382812],"spans":[{"bbox":[303.30706787109375,514.004150390625,558.4290771484375,526.0090942382812],"content":"gest that the induction equation in the presence of a compressive","score":1,"type":"text"}]},{"bbox":[303,524.963134765625,558,536.9680786132812],"spans":[{"bbox":[303.30706787109375,524.963134765625,461.3536071777344,536.9680786132812],"content":"or stretching velocity field leads to the","score":1,"type":"text"},{"bbox":[461.3536071777344,526.390380859375,464.7560729980469,536.35302734375],"content":" ","score":1,"type":"text"},{"bbox":[464,525,509,536],"content":"\\phi\\,=\\,0,90^{\\circ}","score":0.91,"type":"inline_equation"},{"bbox":[511.9290771484375,524.963134765625,558.4246215820312,536.9680786132812],"content":"equilibrium","score":1,"type":"text"}]},{"bbox":[303,535.922119140625,558,547.9270629882812],"spans":[{"bbox":[303.30706787109375,535.922119140625,558.42919921875,547.9270629882812],"content":"configurations found by Soler & Hennebelle (2017), justifying","score":1,"type":"text"}]},{"bbox":[303,546.881103515625,558,558.8860473632812],"spans":[{"bbox":[303.30706787109375,546.881103515625,558.42919921875,558.8860473632812],"content":"their speculation that they may be attractors. This also suggests","score":1,"type":"text"}]},{"bbox":[303,557.840087890625,558,569.8450317382812],"spans":[{"bbox":[303.30706787109375,557.840087890625,558.4293212890625,569.8450317382812],"content":"a mechanism for the parallel alignment of the magnetic field to","score":1,"type":"text"}]},{"bbox":[303,568.799072265625,558,580.8040161132812],"spans":[{"bbox":[303.30706787109375,568.799072265625,558.4292602539062,580.8040161132812],"content":"non-self-gravitating structures and its perpendicular alignment","score":1,"type":"text"}]},{"bbox":[303,579.758056640625,543,591.7630004882812],"spans":[{"bbox":[303.30706787109375,579.758056640625,541.463134765625,591.7630004882812],"content":"to self-gravitating ones, as observed in Gómez et al. (2018).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,610,549,631],"lines":[{"bbox":[303.30706787109375,609.6058349609375,547.8319091796875,621.3228759765625],"spans":[{"bbox":[303.30706787109375,609.6058349609375,547.8319091796875,621.3228759765625],"content":"5.3. The effect of strong cooling on the development of the","score":1,"type":"text"}]},{"bbox":[322.41107177734375,620.5648803710938,343.9712219238281,632.2819213867188],"spans":[{"bbox":[322.41107177734375,620.5648803710938,343.9712219238281,632.2819213867188],"content":"NTSI","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,639.381103515625,558,760.9750366210938],"lines":[{"bbox":[303,639.381103515625,558,651.3860473632812],"spans":[{"bbox":[303.30706787109375,639.381103515625,558.4295043945312,651.3860473632812],"content":"Regarding the development of the NTSI, Vishniac (1994) found","score":1,"type":"text"}]},{"bbox":[303,650.340087890625,558,662.3450317382812],"spans":[{"bbox":[303.30706787109375,650.340087890625,558.42919921875,662.3450317382812],"content":"that the requirement for this instability to grow is that the dis-","score":1,"type":"text"}]},{"bbox":[303,661.299072265625,558,673.3040161132812],"spans":[{"bbox":[303.30706787109375,661.299072265625,558.4291381835938,673.3040161132812],"content":"placement of the cold slab is larger than its thickness. This","score":1,"type":"text"}]},{"bbox":[303,672.257080078125,558,684.2620239257812],"spans":[{"bbox":[303.30706787109375,672.257080078125,558.4293212890625,684.2620239257812],"content":"condition can only be satisfied when there is a high compres-","score":1,"type":"text"}]},{"bbox":[303,683.216064453125,558,695.2210083007812],"spans":[{"bbox":[303.30706787109375,683.216064453125,558.4292602539062,695.2210083007812],"content":"sion ratio across the shock yielding a very thin shocked layer.","score":1,"type":"text"}]},{"bbox":[303,694,558,715.2462768554688],"spans":[{"bbox":[303.30706787109375,694.175048828125,468.9551696777344,706.1799926757812],"content":"In the isothermal case, this requires that","score":1,"type":"text"},{"bbox":[468.9551696777344,694.175048828125,473.1270751953125,706.0703735351562],"content":" ","score":1,"type":"text"},{"bbox":[472,694,510,706],"content":"\\mathrm{{\\dot{M}_{s}^{2}}\\ \\gg\\ 1}","score":0.92,"type":"inline_equation"},{"bbox":[484.13885498046875,694.7528686523438,490.76806640625,715.2462768554688],"content":" ","score":1,"type":"text"},{"bbox":[490.76806640625,694.7528686523438,499.9137268066406,712.7852172851562],"content":"≫","score":1,"type":"text"},{"bbox":[555.1046142578125,694.175048828125,558.4221801757812,706.1799926757812],"content":"-","score":1,"type":"text"}]},{"bbox":[303,704,558,717.1390380859375],"spans":[{"bbox":[303.30706787109375,705.1340942382812,510.2998962402344,717.1390380859375],"content":"dimensional simulation described in Section 2 has","score":1,"type":"text"},{"bbox":[513,704,556,717],"content":"M_{\\mathrm{s}}^{2}\\;=\\;4.0","score":0.92,"type":"inline_equation"}]},{"bbox":[303,716.0930786132812,558,728.0980224609375],"spans":[{"bbox":[303.3070068359375,716.0930786132812,558.4292602539062,728.0980224609375],"content":"which is not too large. However, our simulations include strong","score":1,"type":"text"}]},{"bbox":[303,727.0520629882812,558,739.0570068359375],"spans":[{"bbox":[303.3070068359375,727.0520629882812,558.4290161132812,739.0570068359375],"content":"cooling leading to thermal instability, which produces a much","score":1,"type":"text"}]},{"bbox":[303,738.0111083984375,558,750.0160522460938],"spans":[{"bbox":[303.3070068359375,738.0111083984375,558.4292602539062,750.0160522460938],"content":"stronger compression of the condensed layer and a much thin-","score":1,"type":"text"}]},{"bbox":[303,748.9700927734375,558,760.9750366210938],"spans":[{"bbox":[303.3070068359375,748.9700927734375,558.4292602539062,760.9750366210938],"content":"ner slab dimension, even for moderate Mach numbers (Vázquez-","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[173,34,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[454,770,559,780],"lines":[{"bbox":[455.19500732421875,769.81591796875,558.4251708984375,780.6204223632812],"spans":[{"bbox":[455.19500732421875,769.81591796875,558.4251708984375,780.6204223632812],"content":"Article number, page 7 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":6,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[34,53,560,421],"blocks":[{"bbox":[90,53,504,364],"lines":[{"bbox":[90,53,504,364],"spans":[{"bbox":[90,53,504,364],"image_path":"aca9ca0eba0cfc506c1ed152a99dde59fcdfdff8ca6469b58b582da21fa829cf.jpg","score":0.9999658465385437,"type":"image"}]}],"type":"image_body"},{"bbox":[34,369,560,421],"lines":[{"bbox":[36.849998474121094,369.34027099609375,558.4263305664062,381.0055847167969],"spans":[{"bbox":[36.849998474121094,369.34027099609375,61.19377517700195,381.0055847167969],"content":"Fig. 4.","score":1,"type":"text"},{"bbox":[61.19377517700195,369.6630859375,558.4263305664062,380.46759033203125],"content":" Regions used to compute the HRO diagram and the shape parameter shown in Figure 3. The yellow surfaces are density isocountours","score":1,"type":"text"}]},{"bbox":[107.58592224121094,379,558.429443359375,390.43060302734375],"spans":[{"bbox":[107.58592224121094,379.6260986328125,172.0812225341797,390.43060302734375],"content":"s represent the m","score":1,"type":"text"},{"bbox":[247.29139709472656,379.6260986328125,328.7152099609375,390.43060302734375],"content":"p left panel correspon","score":1,"type":"text"},{"bbox":[411.03564453125,379.6260986328125,414.43402099609375,390.33197021484375],"content":" ","score":1,"type":"text"},{"bbox":[413,379,484,390],"content":"n~\\in~[10,30]~\\,\\mathrm{cm}^{-3}","score":0.89,"type":"inline_equation"},{"bbox":[483.79302978515625,379.6260986328125,558.429443359375,390.43060302734375],"content":", the top right panel","score":1,"type":"text"}]},{"bbox":[36,389,558.4212036132812,406.3383483886719],"spans":[{"bbox":[36,389,108,399],"content":"n\\,\\in\\,[30,100]\\,\\mathrm{\\cm}^{-3}","score":0.91,"type":"inline_equation"},{"bbox":[41.33323669433594,390.1091613769531,49.84602737426758,406.3383483886719],"content":" ∈","score":1,"type":"text"},{"bbox":[108.31404113769531,389.589111328125,167.57298278808594,400.39361572265625],"content":", the bottom left","score":1,"type":"text"},{"bbox":[169,389,246,399],"content":"\\bar{n\\mathrm{~\\in~}}[100,300]~\\mathrm{cm}^{-3}","score":0.91,"type":"inline_equation"},{"bbox":[174.9512481689453,390.1091613769531,183.4640350341797,406.3383483886719],"content":" ∈","score":1,"type":"text"},{"bbox":[246.4150390625,389.589111328125,326.5029602050781,400.39361572265625],"content":", and the bottom right","score":1,"type":"text"},{"bbox":[328,389,410,399],"content":"n\\,\\in\\,[\\bar{300},1000]\\,\\,\\mathrm{cm}^{-\\bar{3}}","score":0.89,"type":"inline_equation"},{"bbox":[333.88323974609375,390.1091613769531,342.3960266113281,406.3383483886719],"content":" ∈","score":1,"type":"text"},{"bbox":[409.83001708984375,389.589111328125,558.4212036132812,400.39361572265625],"content":". It can be seen that, for the four density","score":1,"type":"text"}]},{"bbox":[36.850006103515625,399.5511169433594,558.4254150390625,410.3556213378906],"spans":[{"bbox":[36.850006103515625,399.5511169433594,558.4254150390625,410.3556213378906],"content":"intervals shown here, the magnetic field is noticeably parallel to the density structures. However, the magnetic field shows a deviation from this","score":1,"type":"text"}]},{"bbox":[36.850006103515625,409.5141296386719,528.2625122070312,420.3186340332031],"spans":[{"bbox":[36.850006103515625,409.5141296386719,528.2625122070312,420.3186340332031],"content":"trend for the highest density interval in the bottom right panel. We provide animations showing these regions as complementary material.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[34,434,294,594],"blocks":[{"bbox":[39,434,285,556],"lines":[{"bbox":[39,434,285,556],"spans":[{"bbox":[39,434,285,556],"image_path":"20309197b63052a64026f18a145ddb4f27a29b93ae7e58f1c22554a3457647fe.jpg","score":0.999991774559021,"type":"image"}]}],"type":"image_body"},{"bbox":[34,562,294,594],"lines":[{"bbox":[36.849998474121094,561.5473022460938,291.9652099609375,573.2125854492188],"spans":[{"bbox":[36.849998474121094,561.5473022460938,61.66899490356445,573.2125854492188],"content":"Fig. 5.","score":1,"type":"text"},{"bbox":[61.66899490356445,561.8700561523438,291.9652099609375,572.674560546875],"content":" Initial line bending model. The magnetic field is represented","score":1,"type":"text"}]},{"bbox":[36.85000228881836,571.8330688476562,291.970947265625,582.6375732421875],"spans":[{"bbox":[36.85000228881836,571.8330688476562,291.970947265625,582.6375732421875],"content":"by the green line, while the velocity field is represented by the black","score":1,"type":"text"}]},{"bbox":[36.85000228881836,581.7960815429688,63.2650146484375,592.6005859375],"spans":[{"bbox":[36.85000228881836,581.7960815429688,63.2650146484375,592.6005859375],"content":"arrows.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,612.403564453125,291,690.1625366210938],"lines":[{"bbox":[36,612.403564453125,291,624.4085083007812],"spans":[{"bbox":[36.85000228881836,612.403564453125,184.93408203125,624.4085083007812],"content":"Semadeni et al. 1996). So, it is not di","score":1,"type":"text"},{"bbox":[184.9320068359375,614.056884765625,193.17108154296875,624.0194702148438],"content":"ffi","score":1,"type":"text"},{"bbox":[193.17100524902344,612.403564453125,291.9700927734375,624.4085083007812],"content":"cult to fulfill the require-","score":1,"type":"text"}]},{"bbox":[36,623.3626098632812,291,635.3675537109375],"spans":[{"bbox":[36.850006103515625,623.3626098632812,218.0796661376953,635.3675537109375],"content":"ment for the development of the NTSI at the","score":1,"type":"text"},{"bbox":[218.0796661376953,623.3626098632812,263.1861267089844,635.2579345703125],"content":" condensed","score":1,"type":"text"},{"bbox":[263.1860046386719,623.3626098632812,291.96795654296875,635.3675537109375],"content":", rather","score":1,"type":"text"}]},{"bbox":[36,634.3215942382812,291,646.3265380859375],"spans":[{"bbox":[36.850006103515625,634.3215942382812,291.97222900390625,646.3265380859375],"content":"than the shocked, layer (Hueckstaedt 2003), as demonstrated by","score":1,"type":"text"}]},{"bbox":[36,645.2805786132812,291,657.2855224609375],"spans":[{"bbox":[36.850006103515625,645.2805786132812,291.9722595214844,657.2855224609375],"content":"the growth of the bending mode perturbation (the increase in","score":1,"type":"text"}]},{"bbox":[36,656.2396240234375,291,668.2445678710938],"spans":[{"bbox":[36.850006103515625,656.2396240234375,291.9722595214844,668.2445678710938],"content":"the curvature) for the dense layer in our 2D simulation. This","score":1,"type":"text"}]},{"bbox":[36,667.1986083984375,291,679.2035522460938],"spans":[{"bbox":[36.850006103515625,667.1986083984375,291.97222900390625,679.2035522460938],"content":"means that NTSI can be triggered by not-so-strong shocks in","score":1,"type":"text"}]},{"bbox":[36,678.1575927734375,138.677734375,690.1625366210938],"spans":[{"bbox":[36.850006103515625,678.1575927734375,138.677734375,690.1625366210938],"content":"the strongly cooling case.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,707,273,730],"lines":[{"bbox":[36.850006103515625,708.120361328125,272.42156982421875,719.83740234375],"spans":[{"bbox":[36.850006103515625,708.120361328125,272.42156982421875,719.83740234375],"content":"5.4. The effect of the magnetic field on the NTSI and the","score":1,"type":"text"}]},{"bbox":[55.95500564575195,719.0794067382812,105.30291748046875,730.7964477539062],"spans":[{"bbox":[55.95500564575195,719.0794067382812,105.30291748046875,730.7964477539062],"content":"shear strain","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,738.0115966796875,291,760.9755249023438],"lines":[{"bbox":[36,738.0115966796875,291,750.0165405273438],"spans":[{"bbox":[36.850006103515625,738.0115966796875,291.9722595214844,750.0165405273438],"content":"The NTSI is one of the possible mechanisms yielding the shear","score":1,"type":"text"}]},{"bbox":[36,748.9705810546875,291,760.9755249023438],"spans":[{"bbox":[36.850006103515625,748.9705810546875,291.9721984863281,760.9755249023438],"content":"strain proposed by Hennebelle (2013) to be responsible for the","score":1,"type":"text"}]},{"bbox":[303,438.42962646484375,558,450.4345703125],"spans":[{"bbox":[303.3070068359375,438.42962646484375,558.42919921875,450.4345703125],"content":"elongation of filamentary CACs and the alignment of these struc-","score":1,"type":"text"}]},{"bbox":[303,449.38861083984375,558,461.3935546875],"spans":[{"bbox":[303.3070068359375,449.38861083984375,558.42919921875,461.3935546875],"content":"tures with the local magnetic field, since it produces the momen-","score":1,"type":"text"}]},{"bbox":[303,460.34759521484375,558,472.3525390625],"spans":[{"bbox":[303.3070068359375,460.34759521484375,558.4291381835938,472.3525390625],"content":"tum transport from the original inflow direction to that parallel","score":1,"type":"text"}]},{"bbox":[303,471.30657958984375,558,483.3115234375],"spans":[{"bbox":[303.3070068359375,471.30657958984375,558.4290161132812,483.3115234375],"content":"to the dense layer in the regions around the nodes, as can be","score":1,"type":"text"}]},{"bbox":[303,482.26556396484375,558,494.2705078125],"spans":[{"bbox":[303.3070068359375,482.26556396484375,558.4292602539062,494.2705078125],"content":"seen in Figure 7. However, Heitsch et al. (2007) found that when","score":1,"type":"text"}]},{"bbox":[303,493.22454833984375,558,505.2294921875],"spans":[{"bbox":[303.3070068359375,493.22454833984375,558.4292602539062,505.2294921875],"content":"the magnetic field is aligned with the inflow, it tends to weaken","score":1,"type":"text"}]},{"bbox":[303,504.18353271484375,558,516.1884765625],"spans":[{"bbox":[303.3070068359375,504.18353271484375,558.4293212890625,516.1884765625],"content":"or even suppress the NTSI due to the magnetic tension coun-","score":1,"type":"text"}]},{"bbox":[303,515.1425170898438,558,527.1474609375],"spans":[{"bbox":[303.3070068359375,515.1425170898438,558.42919921875,527.1474609375],"content":"teracting the transverse momentum transport. Nevertheless, the","score":1,"type":"text"}]},{"bbox":[303,526.1015014648438,558,538.1064453125],"spans":[{"bbox":[303.3070068359375,526.1015014648438,325.44390869140625,538.1064453125],"content":"NTSI","score":1,"type":"text"},{"bbox":[325.44390869140625,526.1015014648438,342.78399658203125,537.996826171875],"content":" can","score":1,"type":"text"},{"bbox":[342.78399658203125,526.1015014648438,558.4205322265625,538.1064453125],"content":" contribute to the change of direction of the magnetic","score":1,"type":"text"}]},{"bbox":[303,537.0604858398438,558,549.0654296875],"spans":[{"bbox":[303.3070068359375,537.0604858398438,558.4291381835938,549.0654296875],"content":"field if the flow surrounding the dense layer, remains at least","score":1,"type":"text"}]},{"bbox":[303,548.0184936523438,558,560.0234375],"spans":[{"bbox":[303.3070068359375,548.0184936523438,426.56427001953125,560.0234375],"content":"transalfvénic, so that it has su","score":1,"type":"text"},{"bbox":[426.56298828125,549.6718139648438,434.80206298828125,559.6343994140625],"content":"ffi","score":1,"type":"text"},{"bbox":[434.802001953125,548.0184936523438,558.4279174804688,560.0234375],"content":"cient energy to bend the field.","score":1,"type":"text"}]},{"bbox":[303,558.9774780273438,558,570.982421875],"spans":[{"bbox":[303.3070068359375,558.9774780273438,558.4292602539062,570.982421875],"content":"This condition is indeed satisfied by the flow between the shock","score":1,"type":"text"}]},{"bbox":[303,569.9364624023438,558,581.94140625],"spans":[{"bbox":[303.3070068359375,569.9364624023438,558.4290771484375,581.94140625],"content":"and the condensation front, as can be seen for the 2D simulation","score":1,"type":"text"}]},{"bbox":[303,580.8954467773438,558,592.900390625],"spans":[{"bbox":[303.3070068359375,580.8954467773438,558.4290161132812,592.900390625],"content":"in both panels of Figure 7. Note, incidentally, that the flow inside","score":1,"type":"text"}]},{"bbox":[303,591.8544921875,462.6687316894531,603.8594360351562],"spans":[{"bbox":[303.3070068359375,591.8544921875,462.6687316894531,603.8594360351562],"content":"the dense layer is generally subalfvénic.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,438.42962646484375,558,603.8594360351562],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,606.5044555664062,558,760.9754028320312],"lines":[{"bbox":[318.2510070800781,606.5044555664062,558,618.5093994140625],"spans":[{"bbox":[318.2510070800781,606.5044555664062,558.4293212890625,618.5093994140625],"content":"Another source of shear strain that does not require the NTSI","score":1,"type":"text"}]},{"bbox":[303,617.4634399414062,558,629.4683837890625],"spans":[{"bbox":[303.3070068359375,617.4634399414062,558.42919921875,629.4683837890625],"content":"is observed in our 3D simulation, which does not include an ini-","score":1,"type":"text"}]},{"bbox":[303,628.4224853515625,558,640.4274291992188],"spans":[{"bbox":[303.3070068359375,628.4224853515625,558.4291381835938,640.4274291992188],"content":"tial bending-mode perturbation to the locus of the collision front.","score":1,"type":"text"}]},{"bbox":[303,639.3814697265625,558,651.3864135742188],"spans":[{"bbox":[303.3070068359375,639.3814697265625,558.4292602539062,651.3864135742188],"content":"This arises later in the evolution, when the magnetic field lines","score":1,"type":"text"}]},{"bbox":[303,650.3404541015625,558,662.3453979492188],"spans":[{"bbox":[303.3070068359375,650.3404541015625,558.4293212890625,662.3453979492188],"content":"have already been dragged and bent by the compressive velocity","score":1,"type":"text"}]},{"bbox":[303,661.2994384765625,558,673.3043823242188],"spans":[{"bbox":[303.3070068359375,661.2994384765625,558.42919921875,673.3043823242188],"content":"field. At this time, the transalfvénic condition of the post-shock","score":1,"type":"text"}]},{"bbox":[303,672.2574462890625,558,684.2623901367188],"spans":[{"bbox":[303.3070068359375,672.2574462890625,558.4291381835938,684.2623901367188],"content":"flow allows the magnetic field to partially re-orient the gas flow","score":1,"type":"text"}]},{"bbox":[303,683.2164306640625,558,695.2213745117188],"spans":[{"bbox":[303.3070068359375,683.2164306640625,558.4293212890625,695.2213745117188],"content":"along them. Since the field lines have been oriented nearly par-","score":1,"type":"text"}]},{"bbox":[303,694.1754150390625,558,706.1803588867188],"spans":[{"bbox":[303.3070068359375,694.1754150390625,558.42919921875,706.1803588867188],"content":"allel to the dense layer by the compressive post-shock flow, the","score":1,"type":"text"}]},{"bbox":[303,705.1344604492188,558,717.139404296875],"spans":[{"bbox":[303.3070068359375,705.1344604492188,558.4292602539062,717.139404296875],"content":"velocity field is also oriented in a similar way, and in opposite","score":1,"type":"text"}]},{"bbox":[303,716.0934448242188,558,728.098388671875],"spans":[{"bbox":[303.3070068359375,716.0934448242188,558.4293212890625,728.098388671875],"content":"directions on each side of the dense layer, therefore adding a","score":1,"type":"text"}]},{"bbox":[303,727.0524291992188,558,739.057373046875],"spans":[{"bbox":[303.3070068359375,727.0524291992188,558.4293823242188,739.057373046875],"content":"strong shear component to the flow around the layer. We can","score":1,"type":"text"}]},{"bbox":[303,738.011474609375,558,750.0164184570312],"spans":[{"bbox":[303.3070068359375,738.011474609375,558.4292602539062,750.0164184570312],"content":"see one example of this situation in Figure 9, where the velocity","score":1,"type":"text"}]},{"bbox":[303,748.970458984375,558,760.9754028320312],"spans":[{"bbox":[303.3070068359375,748.970458984375,558.42919921875,760.9754028320312],"content":"fields are represented by dark arrows and the magnetic field lines","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[37,771,139,779],"lines":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"spans":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"content":"Article number, page 8 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[241,34,355,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":7,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,65,559,372],"blocks":[{"bbox":[76,65,519,332],"lines":[{"bbox":[76,65,519,332],"spans":[{"bbox":[76,65,519,332],"image_path":"a016e35e4123cb93083ceab6f631eedd0ca3e0cb0f667feab77b85ceaa4993ac.jpg","score":0.9999589323997498,"type":"image"}]}],"type":"image_body"},{"bbox":[35,350,559,372],"lines":[{"bbox":[36.849998474121094,350.5032653808594,558.4287719726562,362.1685791015625],"spans":[{"bbox":[36.849998474121094,350.5032653808594,60.53923034667969,362.1685791015625],"content":"Fig. 6.","score":1,"type":"text"},{"bbox":[60.53923034667969,350.8260803222656,126.00564575195312,361.6305847167969],"content":" Number density (","score":1,"type":"text"},{"bbox":[126.00900268554688,350.8260803222656,137.4680633544922,361.5319519042969],"content":"top","score":1,"type":"text"},{"bbox":[137.46800231933594,350.8260803222656,184.7119598388672,361.6305847167969],"content":"), velocities (","score":1,"type":"text"},{"bbox":[184.71400451660156,350.8260803222656,209.12054443359375,361.5319519042969],"content":"middle","score":1,"type":"text"},{"bbox":[209.12100219726562,350.8260803222656,337.914306640625,361.6305847167969],"content":"), and magnetic fields components (","score":1,"type":"text"},{"bbox":[337.9169921875,350.8260803222656,362.82568359375,361.5319519042969],"content":"bottom","score":1,"type":"text"},{"bbox":[362.8249816894531,350.8260803222656,460.3883056640625,361.6305847167969],"content":") along a ray parallel to the","score":1,"type":"text"},{"bbox":[460.3883056640625,350.8260803222656,463.2359924316406,361.5319519042969],"content":" ","score":1,"type":"text"},{"bbox":[462,353,468,360],"content":"x","score":0.79,"type":"inline_equation"},{"bbox":[467.2170715332031,350.8260803222656,511.30181884765625,361.6305847167969],"content":" axis at time","score":1,"type":"text"},{"bbox":[511.30181884765625,350.8260803222656,513.7039794921875,361.5319519042969],"content":" ","score":1,"type":"text"},{"bbox":[513,351,539,360],"content":"t=0.7","score":0.84,"type":"inline_equation"},{"bbox":[538.837158203125,350.8260803222656,558.4287719726562,361.6305847167969],"content":" Myr.","score":1,"type":"text"}]},{"bbox":[36.849945068359375,360.7890930175781,438.78662109375,371.5935974121094],"spans":[{"bbox":[36.849945068359375,360.7890930175781,438.78662109375,371.5935974121094],"content":"It can be seen that the profile of these quantities agrees with the assumptions made for the line bending analysis.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[35,386,559,679],"blocks":[{"bbox":[66,386,526,649],"lines":[{"bbox":[66,386,526,649],"spans":[{"bbox":[66,386,526,649],"image_path":"ca926a5bb8d76affe5cf74afe2fdf2a009d6f84a3c5cb864ab27dabc8bc5df1a.jpg","score":0.9999905824661255,"type":"image"}]}],"type":"image_body"},{"bbox":[35,658,559,679],"lines":[{"bbox":[36.849998474121094,658.0072631835938,558.424072265625,669.6725463867188],"spans":[{"bbox":[36.849998474121094,658.0072631835938,60.126773834228516,669.6725463867188],"content":"Fig. 7.","score":1,"type":"text"},{"bbox":[60.126773834228516,658.3300170898438,558.424072265625,669.134521484375],"content":" Two-dimensional simulation of warn atomic colliding flows with a curvilinear collision interface at 0.04 Myr (left panel) and 3.0 Myr (right","score":1,"type":"text"}]},{"bbox":[36.849998474121094,668.2930297851562,353.25634765625,679.0975341796875],"spans":[{"bbox":[36.849998474121094,668.2930297851562,353.25634765625,679.0975341796875],"content":"panel). The two color bars represent the number density and the Alfvénic Mach number.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,697.2095947265625,291,753.0494995117188],"lines":[{"bbox":[36,697.2095947265625,291,709.2145385742188],"spans":[{"bbox":[36.849998474121094,697.2095947265625,291.9722595214844,709.2145385742188],"content":"are color-coded with the Alfvénic Mach number. In this Figure,","score":1,"type":"text"}]},{"bbox":[36,708.1685791015625,291,720.1735229492188],"spans":[{"bbox":[36.849998474121094,708.1685791015625,291.9721984863281,720.1735229492188],"content":"the troughs and peaks of the CACs do not show corresponding","score":1,"type":"text"}]},{"bbox":[36,719.1275634765625,291,731.1325073242188],"spans":[{"bbox":[36.849998474121094,719.1275634765625,291.97222900390625,731.1325073242188],"content":"converging and diverging velocity fields, as would correspond to","score":1,"type":"text"}]},{"bbox":[36,730.0855712890625,291,742.0905151367188],"spans":[{"bbox":[36.849998474121094,730.0855712890625,291.9722900390625,742.0905151367188],"content":"the NTSI, and so the structure at this point appears not have been","score":1,"type":"text"}]},{"bbox":[36,741.0445556640625,139.15589904785156,753.0494995117188],"spans":[{"bbox":[36.849998474121094,741.0445556640625,139.15589904785156,753.0494995117188],"content":"formed by this instability.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,697.3953857421875,553.9365234375,709.1124267578125],"lines":[{"bbox":[303,697.3953857421875,553.9365234375,709.1124267578125],"spans":[{"bbox":[303.3070068359375,697.3953857421875,553.9365234375,709.1124267578125],"content":"5.5. Inhibition of turbulence generation by the magnetic field","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,716.0935668945312,558,760.9755249023438],"lines":[{"bbox":[303,716.0935668945312,558,728.0985107421875],"spans":[{"bbox":[303.3070068359375,716.0935668945312,558.4292602539062,728.0985107421875],"content":"It has been noticed in previous works that MHD simulations of","score":1,"type":"text"}]},{"bbox":[303,727.0526123046875,558,739.0575561523438],"spans":[{"bbox":[303.3070068359375,727.0526123046875,558.42919921875,739.0575561523438],"content":"cloud formation are less turbulent and show more filamentary","score":1,"type":"text"}]},{"bbox":[303,738.0115966796875,558,750.0165405273438],"spans":[{"bbox":[303.3070068359375,738.0115966796875,558.42919921875,750.0165405273438],"content":"structure than pure hydrodynamical simulations (e.g., Heitsch","score":1,"type":"text"}]},{"bbox":[303,748.9705810546875,558,760.9755249023438],"spans":[{"bbox":[303.3070068359375,748.9705810546875,558.4292602539062,760.9755249023438],"content":"et al. 2007, 2009; Hennebelle 2013; Zamora-Avilés et al. 2018).","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[174,34,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[455,770,558,780],"lines":[{"bbox":[455.19500732421875,769.8160400390625,558.4251708984375,780.6205444335938],"spans":[{"bbox":[455.19500732421875,769.8160400390625,558.4251708984375,780.6205444335938],"content":"Article number, page 9 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":8,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,74,560,288],"blocks":[{"bbox":[109,74,481,226],"lines":[{"bbox":[109,74,481,226],"spans":[{"bbox":[109,74,481,226],"image_path":"1f27ef2fef6114f0de68838b3cd40ce18aa5c7664de720b06628a3bbd4d0ee35.jpg","score":0.9999811053276062,"type":"image"}]}],"type":"image_body"},{"bbox":[35,266,560,288],"lines":[{"bbox":[36.849998474121094,266.5202331542969,558.4307250976562,278.185546875],"spans":[{"bbox":[36.849998474121094,266.5202331542969,60.61992645263672,278.185546875],"content":"Fig. 8.","score":1,"type":"text"},{"bbox":[60.61992645263672,266.8430480957031,558.4307250976562,277.6475524902344],"content":" Line bending model for the colliding flows with curvilinear collision interface. The left panel represents the initial state and the right one","score":1,"type":"text"}]},{"bbox":[36.849998474121094,276.8060607910156,477.6650085449219,287.6105651855469],"spans":[{"bbox":[36.849998474121094,276.8060607910156,477.6650085449219,287.6105651855469],"content":"the evolution according to the analytical model given by equation (8). In this sketch, the black arrows are the velocity field.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[35,296,560,682],"blocks":[{"bbox":[65,296,530,646],"lines":[{"bbox":[65,296,530,646],"spans":[{"bbox":[65,296,530,646],"image_path":"329815eddd82ed213d9de2f0ae154fcbb8ec8ab94130238c0b92f0f166ff1bad.jpg","score":0.9999808073043823,"type":"image"}]}],"type":"image_body"},{"bbox":[35,650,560,682],"lines":[{"bbox":[36.849998474121094,650.9202880859375,558.4234619140625,662.5855712890625],"spans":[{"bbox":[36.849998474121094,650.9202880859375,60.835121154785156,662.5855712890625],"content":"Fig. 9.","score":1,"type":"text"},{"bbox":[60.835121154785156,651.2430419921875,558.4234619140625,662.0475463867188],"content":" A couple of filamentary CACs located in the left-down corner. In the provided animation showing this region, it can be seen a turbulent","score":1,"type":"text"}]},{"bbox":[36.849998474121094,661.2060546875,558.42529296875,672.0105590820312],"spans":[{"bbox":[36.849998474121094,661.2060546875,558.42529296875,672.0105590820312],"content":"shear strain velocity field along their main axis and aligned with the local magnetic field. Note that the velocity field on the filamentary CACs is","score":1,"type":"text"}]},{"bbox":[36.849998474121094,671.1680297851562,236.56793212890625,681.9725341796875],"spans":[{"bbox":[36.849998474121094,671.1680297851562,43.82585906982422,681.9725341796875],"content":"di","score":1,"type":"text"},{"bbox":[43.82599639892578,672.6560668945312,49.20583724975586,681.6224365234375],"content":"ff","score":1,"type":"text"},{"bbox":[49.205997467041016,671.1680297851562,236.56793212890625,681.9725341796875],"content":"erent from the one expected in the case of the NTSI.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,700.0845947265625,291,755.9244995117188],"lines":[{"bbox":[36,700.0845947265625,291,712.0895385742188],"spans":[{"bbox":[36.849998474121094,700.0845947265625,291.9722595214844,712.0895385742188],"content":"The generation of turbulence in curved compressed layers is due","score":1,"type":"text"}]},{"bbox":[36,711.0435791015625,291,723.0485229492188],"spans":[{"bbox":[36.849998474121094,711.0435791015625,291.9721984863281,723.0485229492188],"content":"to the KH instability, which in turn is triggered by the shear","score":1,"type":"text"}]},{"bbox":[36,722.0025634765625,291,734.0075073242188],"spans":[{"bbox":[36.849998474121094,722.0025634765625,291.9721984863281,734.0075073242188],"content":"flow produced by the NTSI (e.g. Blondin & Marks 1996; Heitsch","score":1,"type":"text"}]},{"bbox":[36,732.9615478515625,291,744.9664916992188],"spans":[{"bbox":[36.849998474121094,732.9615478515625,291.9722595214844,744.9664916992188],"content":"et al. 2006). Therefore, the magnetic tension, which opposes the","score":1,"type":"text"}]},{"bbox":[36,743.9195556640625,291,755.9244995117188],"spans":[{"bbox":[36.849998474121094,743.9195556640625,291.9723205566406,755.9244995117188],"content":"vorticity generation by the shear flow across the dense layer, may","score":1,"type":"text"}]},{"bbox":[303,700.0845947265625,558,712.0895385742188],"spans":[{"bbox":[303.3070068359375,700.0845947265625,558.429443359375,712.0895385742188],"content":"suppress the development of the KHI and, as a consequence,","score":1,"type":"text"}]},{"bbox":[303,711.0435791015625,558,723.0485229492188],"spans":[{"bbox":[303.3070068359375,711.0435791015625,558.42919921875,723.0485229492188],"content":"the generation of turbulence. Indeed, a 2D numerical simulation","score":1,"type":"text"}]},{"bbox":[303,722.0025634765625,558,734.0075073242188],"spans":[{"bbox":[303.3070068359375,722.0025634765625,558.42919921875,734.0075073242188],"content":"without the magnetic field exhibits a much stronger turbulence","score":1,"type":"text"}]},{"bbox":[303,732.9615478515625,407.26678466796875,744.9664916992188],"spans":[{"bbox":[303.3070068359375,732.9615478515625,407.26678466796875,744.9664916992188],"content":"level, as shown in Fig. 10.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,700.0845947265625,558,744.9664916992188],"lines":[],"lines_deleted":true,"type":"text"}]},{"discarded_blocks":[{"bbox":[36,771,144,779],"lines":[{"bbox":[36.850006103515625,769.8156127929688,144.56336975097656,780.6201171875],"spans":[{"bbox":[36.850006103515625,769.8156127929688,144.56336975097656,780.6201171875],"content":"Article number, page 10 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[240,33,355,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":9,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,68,293,291],"blocks":[{"bbox":[53,68,287,260],"lines":[{"bbox":[53,68,287,260],"spans":[{"bbox":[53,68,287,260],"image_path":"f7d15609b829074edcf52302d5aa20bf41366e9877b3972fd966eb807c8644fb.jpg","score":0.9999957084655762,"type":"image"}]}],"type":"image_body"},{"bbox":[35,270,293,291],"lines":[{"bbox":[36.849998474121094,269.5072326660156,291.96533203125,281.17254638671875],"spans":[{"bbox":[36.849998474121094,269.5072326660156,67.66751861572266,281.17254638671875],"content":"Fig. 10.","score":1,"type":"text"},{"bbox":[67.66751861572266,269.8300476074219,291.96533203125,280.6345520019531],"content":" Non-magnetic version of the two-dimensional simulation","score":1,"type":"text"}]},{"bbox":[36.849998474121094,279.7930603027344,103.87384033203125,290.5975646972656],"spans":[{"bbox":[36.849998474121094,279.7930603027344,103.87384033203125,290.5975646972656],"content":"shown in Figure 7.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,310,188,319],"lines":[{"bbox":[36.849998474121094,309.3853759765625,187.3450469970703,321.1024169921875],"spans":[{"bbox":[36.849998474121094,309.3853759765625,187.3450469970703,321.1024169921875],"content":"5.6. Comparison with previous work","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,326.7995910644531,291,415.5164794921875],"lines":[{"bbox":[36,326.7995910644531,291,338.8045349121094],"spans":[{"bbox":[36.849998474121094,326.7995910644531,291.97222900390625,338.8045349121094],"content":"The superalfvénic nature of the initial inflow in our simulations,","score":1,"type":"text"}]},{"bbox":[36,337.75860595703125,291,349.7635498046875],"spans":[{"bbox":[36.849998474121094,337.75860595703125,291.9722595214844,349.7635498046875],"content":"and its continuation downstream as a transalfvénic flow, allow","score":1,"type":"text"}]},{"bbox":[36,348.71759033203125,291,360.7225341796875],"spans":[{"bbox":[36.849998474121094,348.71759033203125,291.9722900390625,360.7225341796875],"content":"the dragging and amplification of the magnetic field, in agree-","score":1,"type":"text"}]},{"bbox":[36,359.67559814453125,291,371.6805419921875],"spans":[{"bbox":[36.849998474121094,359.67559814453125,291.9721984863281,371.6805419921875],"content":"ment with Skalidis et al. (2022) whose observations reported","score":1,"type":"text"}]},{"bbox":[36,370.63458251953125,291,384.134521484375],"spans":[{"bbox":[36.849998474121094,370.63458251953125,158.52322387695312,382.6395263671875],"content":"transalfvénic turbulence in the","score":1,"type":"text"},{"bbox":[159,371,185,381],"content":"\\mathrm{H}\\mathrm{I}\\mathrm{-}\\mathrm{H}_{2}","score":0.83,"type":"inline_equation"},{"bbox":[184.9618682861328,370.63458251953125,291.97265625,384.134521484375],"content":" transition region. Accord-","score":1,"type":"text"}]},{"bbox":[36,381.59356689453125,291,393.5985107421875],"spans":[{"bbox":[36.8499755859375,381.59356689453125,291.9722595214844,393.5985107421875],"content":"ing to these authors, atomic gas might accumulate along mag-","score":1,"type":"text"}]},{"bbox":[36,392.55255126953125,291,404.5574951171875],"spans":[{"bbox":[36.8499755859375,392.55255126953125,291.97222900390625,404.5574951171875],"content":"netic field lines, which is also in agreement with our results (see","score":1,"type":"text"}]},{"bbox":[36,403.51153564453125,76.14246368408203,415.5164794921875],"spans":[{"bbox":[36.8499755859375,403.51153564453125,76.14246368408203,415.5164794921875],"content":"Figure 9).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,414.7155456542969,291,514.3914184570312],"lines":[{"bbox":[51,414.7155456542969,291,426.7204895019531],"spans":[{"bbox":[51.793975830078125,414.7155456542969,291.9723205566406,426.7204895019531],"content":"In this work, our simulations consider only the formation of","score":1,"type":"text"}]},{"bbox":[36,425.674560546875,291,437.67950439453125],"spans":[{"bbox":[36.8499755859375,425.674560546875,291.97222900390625,437.67950439453125],"content":"clouds by the collision of converging cold atomic flows. How-","score":1,"type":"text"}]},{"bbox":[36,436.633544921875,291,448.63848876953125],"spans":[{"bbox":[36.8499755859375,436.633544921875,291.9722595214844,448.63848876953125],"content":"ever, the main physical processes responsible for the alignment","score":1,"type":"text"}]},{"bbox":[36,447.592529296875,291,459.59747314453125],"spans":[{"bbox":[36.8499755859375,447.592529296875,291.9722595214844,459.59747314453125],"content":"of magnetic field lines and density structures, MHD shocks, and","score":1,"type":"text"}]},{"bbox":[36,458.551513671875,291,470.55645751953125],"spans":[{"bbox":[36.8499755859375,458.551513671875,291.9722595214844,470.55645751953125],"content":"the NTSI, can be also present at the interfaces between interact-","score":1,"type":"text"}]},{"bbox":[36,469.510498046875,291,481.51544189453125],"spans":[{"bbox":[36.8499755859375,469.510498046875,150.64280700683594,481.51544189453125],"content":"ing wind-blown bubbles and","score":1,"type":"text"},{"bbox":[150.64097595214844,471.163818359375,153.3607635498047,481.1264343261719],"content":"/","score":1,"type":"text"},{"bbox":[153.36097717285156,469.510498046875,291.9706115722656,481.51544189453125],"content":"or supernova shells. Therefore, the","score":1,"type":"text"}]},{"bbox":[36,480.468505859375,291,492.47344970703125],"spans":[{"bbox":[36.8499755859375,480.468505859375,291.9721984863281,492.47344970703125],"content":"MHD shocks and the NTSI could also be the principal physi-","score":1,"type":"text"}]},{"bbox":[36,491.427490234375,291,503.43243408203125],"spans":[{"bbox":[36.8499755859375,491.427490234375,291.97222900390625,503.43243408203125],"content":"cal mechanisms behind the magnetic field alignment with fibers","score":1,"type":"text"}]},{"bbox":[36,502.386474609375,234.97616577148438,514.3914184570312],"spans":[{"bbox":[36.8499755859375,502.386474609375,234.97616577148438,514.3914184570312],"content":"found in this type of object by Clark et al. (2014).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,534,182,545],"lines":[{"bbox":[36.8499755859375,532.9898681640625,182.31346130371094,546.006591796875],"spans":[{"bbox":[36.8499755859375,532.9898681640625,182.31346130371094,546.006591796875],"content":"6. Summary and Conclusions","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,551.219482421875,291,639.9373779296875],"lines":[{"bbox":[36,551.219482421875,291,563.2244262695312],"spans":[{"bbox":[36.8499755859375,551.219482421875,291.97222900390625,563.2244262695312],"content":"In this work, we have studied the physical mechanisms responsi-","score":1,"type":"text"}]},{"bbox":[36,562.178466796875,291,574.1834106445312],"spans":[{"bbox":[36.8499755859375,562.178466796875,291.97222900390625,574.1834106445312],"content":"ble for the observed alignment of magnetic field and cold atomic","score":1,"type":"text"}]},{"bbox":[36,573.137451171875,291,585.1423950195312],"spans":[{"bbox":[36.8499755859375,573.137451171875,291.9721984863281,585.1423950195312],"content":"gravitationally unbound density structures formed by the colli-","score":1,"type":"text"}]},{"bbox":[36,584.096435546875,291,596.1013793945312],"spans":[{"bbox":[36.8499755859375,584.096435546875,291.9722595214844,596.1013793945312],"content":"sion of converging warm atomic gas. We have tracked the evo-","score":1,"type":"text"}]},{"bbox":[36,595.055419921875,291,607.0603637695312],"spans":[{"bbox":[36.8499755859375,595.055419921875,291.9721984863281,607.0603637695312],"content":"lution of magnetic field lines in a three-dimensional simulation","score":1,"type":"text"}]},{"bbox":[36,606.0144653320312,291,618.0194091796875],"spans":[{"bbox":[36.8499755859375,606.0144653320312,291.9721374511719,618.0194091796875],"content":"having typical conditions of the warm ISM and found that they","score":1,"type":"text"}]},{"bbox":[36,616.9734497070312,291,628.9783935546875],"spans":[{"bbox":[36.8499755859375,616.9734497070312,291.97222900390625,628.9783935546875],"content":"become perpendicular to their original orientation and end up","score":1,"type":"text"}]},{"bbox":[36,627.9324340820312,161.37249755859375,639.9373779296875],"spans":[{"bbox":[36.8499755859375,627.9324340820312,161.37249755859375,639.9373779296875],"content":"aligned with density structures.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,639.136474609375,291,694.8667602539062],"lines":[{"bbox":[51,639.136474609375,291,651.1414184570312],"spans":[{"bbox":[51.793975830078125,639.136474609375,291.9723205566406,651.1414184570312],"content":"The process of the alignment of magnetic field lines with","score":1,"type":"text"}]},{"bbox":[36,650.095458984375,291,662.1004028320312],"spans":[{"bbox":[36.8499755859375,650.095458984375,122.99655151367188,662.1004028320312],"content":"the density structures","score":1,"type":"text"},{"bbox":[122.99655151367188,650.095458984375,226.50059509277344,661.9907836914062],"content":" starts at the shock fronts","score":1,"type":"text"},{"bbox":[226.50059509277344,650.095458984375,291.96734619140625,662.1004028320312],"content":" and takes place","score":1,"type":"text"}]},{"bbox":[36,661.053466796875,291,672.9487915039062],"spans":[{"bbox":[36.8499755859375,661.053466796875,291.9721984863281,672.9487915039062],"content":"in the cooling, thermally unstable gas, so that the magnetic field","score":1,"type":"text"}]},{"bbox":[36,672.012451171875,291,683.9077758789062],"spans":[{"bbox":[36.8499755859375,672.012451171875,291.97222900390625,683.9077758789062],"content":"already shows a preferred orientation when the flow forms CACs","score":1,"type":"text"}]},{"bbox":[36,682.971435546875,128.15719604492188,694.8667602539062],"spans":[{"bbox":[36.8499755859375,682.971435546875,128.15719604492188,694.8667602539062],"content":"at the condensed layer.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,694.1754150390625,291,760.9754028320312],"lines":[{"bbox":[51,694.1754150390625,291,706.1803588867188],"spans":[{"bbox":[51.793975830078125,694.1754150390625,291.9723205566406,706.1803588867188],"content":"At the position of the shocks, the magnetic field changes its","score":1,"type":"text"}]},{"bbox":[36,705.1343994140625,291,717.1393432617188],"spans":[{"bbox":[36.8499755859375,705.1343994140625,291.97216796875,717.1393432617188],"content":"direction due to the amplification of its component parallel to","score":1,"type":"text"}]},{"bbox":[36,716.0934448242188,291,728.098388671875],"spans":[{"bbox":[36.8499755859375,716.0934448242188,291.97216796875,728.098388671875],"content":"the front, which is produced by the velocity fluctuations in the","score":1,"type":"text"}]},{"bbox":[36,727.0524291992188,291,739.057373046875],"spans":[{"bbox":[36.8499755859375,727.0524291992188,291.97222900390625,739.057373046875],"content":"pre-shock region. This amplification occurs due to a fast MHD","score":1,"type":"text"}]},{"bbox":[36,738.0114135742188,291,750.016357421875],"spans":[{"bbox":[36.8499755859375,738.0114135742188,291.97222900390625,750.016357421875],"content":"shock that occurs when the upstream and downstream flows are","score":1,"type":"text"}]},{"bbox":[36,748.970458984375,168.5854034423828,760.9754028320312],"spans":[{"bbox":[36.8499755859375,748.970458984375,168.5854034423828,760.9754028320312],"content":"super– and sub-fast, respectively.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,56.56640625,558,167.2012176513672],"lines":[{"bbox":[318,56.56640625,558,68.57134246826172],"spans":[{"bbox":[318.2509765625,56.56640625,558.4293212890625,68.57134246826172],"content":"Behind the shock front, the compressive downstream veloc-","score":1,"type":"text"}]},{"bbox":[303,67.525390625,558,79.53032684326172],"spans":[{"bbox":[303.3069763183594,67.525390625,558.4292602539062,79.53032684326172],"content":"ity field further amplifies the magnetic field component parallel","score":1,"type":"text"}]},{"bbox":[303,78.484375,558,90.48931121826172],"spans":[{"bbox":[303.3069763183594,78.484375,558.4290161132812,90.48931121826172],"content":"to the shock front, increasing the curvature of the lines in this","score":1,"type":"text"}]},{"bbox":[303,89.443359375,558,101.44829559326172],"spans":[{"bbox":[303.3069763183594,89.443359375,558.4291381835938,101.44829559326172],"content":"region, and causing them to become increasingly parallel to the","score":1,"type":"text"}]},{"bbox":[303,100.40234375,558,112.40727996826172],"spans":[{"bbox":[303.3069763183594,100.40234375,558.4291381835938,112.40727996826172],"content":"condensed layer produced by the thermal instability. The ampli-","score":1,"type":"text"}]},{"bbox":[303,111.361328125,558,123.36626434326172],"spans":[{"bbox":[303.3069763183594,111.361328125,558.4292602539062,123.36626434326172],"content":"fication of the fluctuation by a compressive velocity gradient can","score":1,"type":"text"}]},{"bbox":[303,122.3203125,558,134.3252410888672],"spans":[{"bbox":[303.3069763183594,122.3203125,558.4290771484375,134.3252410888672],"content":"be understood through an analysis of the induction equation for","score":1,"type":"text"}]},{"bbox":[303,133.279296875,558,145.2842254638672],"spans":[{"bbox":[303.3069763183594,133.279296875,558.4292602539062,145.2842254638672],"content":"planar geometry (eq. [7]), which shows that the change in the","score":1,"type":"text"}]},{"bbox":[303,144.2373046875,558,156.2422332763672],"spans":[{"bbox":[303.3069763183594,144.2373046875,558.4293212890625,156.2422332763672],"content":"fluctuating field component has the same sign as the fluctuation,","score":1,"type":"text"}]},{"bbox":[303,155.1962890625,357.55328369140625,167.2012176513672],"spans":[{"bbox":[303.3069763183594,155.1962890625,357.55328369140625,167.2012176513672],"content":"amplifying it.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,166.1552734375,558,265.83209228515625],"lines":[{"bbox":[318,166.1552734375,558,178.1602020263672],"spans":[{"bbox":[318.2509765625,166.1552734375,558.429443359375,178.1602020263672],"content":"From the same equation, we concluded that a stretching ve-","score":1,"type":"text"}]},{"bbox":[303,177.1142578125,558,189.1191864013672],"spans":[{"bbox":[303.3069763183594,177.1142578125,392.9504089355469,189.1191864013672],"content":"locity gradient causes","score":1,"type":"text"},{"bbox":[392.9504089355469,177.1142578125,431.9690246582031,189.0095977783203],"content":" damping","score":1,"type":"text"},{"bbox":[431.9690246582031,177.1142578125,558.4298706054688,189.1191864013672],"content":" of the fluctuating component,","score":1,"type":"text"}]},{"bbox":[303,188.0732421875,558,200.0781707763672],"spans":[{"bbox":[303.3070068359375,188.0732421875,558.4291381835938,200.0781707763672],"content":"leading to a straightening of the field lines, thus orienting them","score":1,"type":"text"}]},{"bbox":[303,199.0322265625,558,211.0371551513672],"spans":[{"bbox":[303.3070068359375,199.0322265625,359.75506591796875,210.9275665283203],"content":"perpendicular","score":1,"type":"text"},{"bbox":[359.75506591796875,199.0322265625,558.4254760742188,211.0371551513672],"content":" to the density structures. We speculate that this is","score":1,"type":"text"}]},{"bbox":[303,209.9912109375,558,221.9961395263672],"spans":[{"bbox":[303.3070068359375,209.9912109375,558.42919921875,221.9961395263672],"content":"the mechanism occurring during the growth of self-gravitating","score":1,"type":"text"}]},{"bbox":[303,220.9501953125,558,232.9551239013672],"spans":[{"bbox":[303.3070068359375,220.9501953125,408.6913757324219,232.9551239013672],"content":"structures, where the flow","score":1,"type":"text"},{"bbox":[408.6913757324219,220.9501953125,457.3052673339844,232.8455352783203],"content":" accelerates","score":1,"type":"text"},{"bbox":[457.3052673339844,220.9501953125,558.4212646484375,232.9551239013672],"content":" inwards, thus producing","score":1,"type":"text"}]},{"bbox":[303,231.9091796875,558,243.9141082763672],"spans":[{"bbox":[303.3070068359375,231.9091796875,558.4291381835938,243.9141082763672],"content":"a tidal stretching velocity pattern, thus being a possible expla-","score":1,"type":"text"}]},{"bbox":[303,242.8681640625,558,254.8730926513672],"spans":[{"bbox":[303.3070068359375,242.8681640625,558.4290771484375,254.8730926513672],"content":"nation for the perpendicular orientation of the field lines around","score":1,"type":"text"}]},{"bbox":[303,253.8271484375,472.45196533203125,265.83209228515625],"spans":[{"bbox":[303.3070068359375,253.8271484375,472.45196533203125,265.83209228515625],"content":"self-gravitating molecular cloud filaments.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,264.78515625,558,353.50299072265625],"lines":[{"bbox":[318,264.78515625,558,276.79010009765625],"spans":[{"bbox":[318.2510070800781,264.78515625,462.8480529785156,276.79010009765625],"content":"In conclusion, we have found that a","score":1,"type":"text"},{"bbox":[462.8480529785156,264.78515625,495.1838073730469,276.6805114746094],"content":" settling","score":1,"type":"text"},{"bbox":[495.1838073730469,264.78515625,558.4208984375,276.79010009765625],"content":" (i.e., decelerat-","score":1,"type":"text"}]},{"bbox":[303,275.744140625,558,287.74908447265625],"spans":[{"bbox":[303.3070068359375,275.744140625,558.42919921875,287.74908447265625],"content":"ing) flow, such as that occurring due to the condensation of the","score":1,"type":"text"}]},{"bbox":[303,286.703125,558,298.70806884765625],"spans":[{"bbox":[303.3070068359375,286.703125,558.42919921875,298.70806884765625],"content":"gas by thermal instability orients the lines parallel to the density","score":1,"type":"text"}]},{"bbox":[303,297.662109375,558,309.66705322265625],"spans":[{"bbox":[303.3070068359375,297.662109375,378.3054504394531,309.66705322265625],"content":"structures, while a","score":1,"type":"text"},{"bbox":[378.3054504394531,297.662109375,421.25030517578125,309.5574645996094],"content":" stretching","score":1,"type":"text"},{"bbox":[421.25030517578125,297.662109375,558.4276123046875,309.66705322265625],"content":" (accelerating) one, such as infall","score":1,"type":"text"}]},{"bbox":[303,308.62109375,558,320.62603759765625],"spans":[{"bbox":[303.3070068359375,308.62109375,558.42919921875,320.62603759765625],"content":"into a potential well, orients the field lines perpendicular to the","score":1,"type":"text"}]},{"bbox":[303,319.580078125,558,331.58502197265625],"spans":[{"bbox":[303.3070068359375,319.580078125,558.4292602539062,331.58502197265625],"content":"density structures. This may be the physical mechanism behind","score":1,"type":"text"}]},{"bbox":[303,330.5390625,558,342.54400634765625],"spans":[{"bbox":[303.3070068359375,330.5390625,558.42919921875,342.54400634765625],"content":"the stationarity of these configurations found by Soler & Hen-","score":1,"type":"text"}]},{"bbox":[303,341.498046875,363.62054443359375,353.50299072265625],"spans":[{"bbox":[303.3070068359375,341.498046875,363.62054443359375,353.50299072265625],"content":"nebelle (2017).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,352.45703125,558,397.33795166015625],"lines":[{"bbox":[318,352.45703125,558,364.46197509765625],"spans":[{"bbox":[318.2510070800781,352.45703125,558.4293212890625,364.46197509765625],"content":"Finally, we also found that, under typical conditions of the","score":1,"type":"text"}]},{"bbox":[303,363.416015625,558,375.42095947265625],"spans":[{"bbox":[303.3070068359375,363.416015625,558.4293823242188,375.42095947265625],"content":"ISM, the flow upstream from the shock front is superalfvénic","score":1,"type":"text"}]},{"bbox":[303,374.3740234375,558,386.37896728515625],"spans":[{"bbox":[303.3070068359375,374.3740234375,558.4293823242188,386.37896728515625],"content":"and becomes transalfvénic downstream. This allows the velocity","score":1,"type":"text"}]},{"bbox":[303,385.3330078125,487.8741455078125,397.33795166015625],"spans":[{"bbox":[303.3070068359375,385.3330078125,487.8741455078125,397.33795166015625],"content":"field to bend and drag the magnetic field lines.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,402.0290832519531,558,464.89312744140625],"lines":[{"bbox":[303,402.0290832519531,558,411.633056640625],"spans":[{"bbox":[303.3070068359375,402.0290832519531,366.1512756347656,411.5453796386719],"content":"Acknowledgements.","score":1,"type":"text"},{"bbox":[366.1512756347656,402.0290832519531,558.4215698242188,411.633056640625],"content":" We are grateful to Susan Clark and Laura Fissel for use-","score":1,"type":"text"}]},{"bbox":[303,410.90509033203125,558,420.5090637207031],"spans":[{"bbox":[303.3070068359375,410.90509033203125,558.4219970703125,420.5090637207031],"content":"ful comments and suggestions. This research was supported by a CONACYT","score":1,"type":"text"}]},{"bbox":[303,419.7821044921875,558,429.3860778808594],"spans":[{"bbox":[303.3070068359375,419.7821044921875,558.4220581054688,429.3860778808594],"content":"scholarship. GCG and EVS acknowledge support from UNAM-PAPIIT grants","score":1,"type":"text"}]},{"bbox":[303,428.65911865234375,558,438.2630920410156],"spans":[{"bbox":[303.3070068359375,428.65911865234375,558.4220581054688,438.2630920410156],"content":"IN103822 and IG100223, respectively. In addition, we acknowledge Interstellar","score":1,"type":"text"}]},{"bbox":[303,437.5351257324219,558,447.13909912109375],"spans":[{"bbox":[303.3070068359375,437.5351257324219,558.4220581054688,447.13909912109375],"content":"Institute’s program “With Two Eyes” and the Paris-Saclay University’s Institut","score":1,"type":"text"}]},{"bbox":[303,446.4121398925781,558,456.01611328125],"spans":[{"bbox":[303.3070068359375,446.4121398925781,558.4220581054688,456.01611328125],"content":"Pascal for hosting discussions that nourished the development of the ideas behind","score":1,"type":"text"}]},{"bbox":[303,455.2891540527344,337,464.89312744140625],"spans":[{"bbox":[303.3070068359375,455.2891540527344,335.10772705078125,464.89312744140625],"content":"this work.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,492,359,503],"lines":[{"bbox":[303.3070068359375,491.6244812011719,359.0736083984375,504.64117431640625],"spans":[{"bbox":[303.3070068359375,491.6244812011719,359.0736083984375,504.64117431640625],"content":"References","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,509.4581298828125,558,760.4152221679688],"lines":[{"bbox":[303,509.4581298828125,451,519.0621337890625],"spans":[{"bbox":[303.3070068359375,509.4581298828125,451.853759765625,519.0621337890625],"content":"Audit, E. & Hennebelle, P. 2005, A&A, 433, 1","score":1,"type":"text"}]},{"bbox":[303,518.3851318359375,467.8258361816406,527.9891357421875],"spans":[{"bbox":[303.3070068359375,518.3851318359375,467.8258361816406,527.9891357421875],"content":"Blondin, J. M. & Marks, B. S. 1996, New A, 1, 235","score":1,"type":"text"}]},{"bbox":[303,527.3131713867188,558,536.9171752929688],"spans":[{"bbox":[303.3070068359375,527.3131713867188,558.4219970703125,536.9171752929688],"content":"Clark, S. E., Hill, J. C., Peek, J. E. G., Putman, M. E., & Babler, B. L. 2015,","score":1,"type":"text"}]},{"bbox":[313,536.2791748046875,434,545.8831787109375],"spans":[{"bbox":[313.2669982910156,536.2791748046875,434.1415710449219,545.8831787109375],"content":"Physical Review Letters, 115, 241302","score":1,"type":"text"}]},{"bbox":[303,545.2061767578125,508.5370178222656,554.8101806640625],"spans":[{"bbox":[303.3070068359375,545.2061767578125,508.5370178222656,554.8101806640625],"content":"Clark, S. E., Peek, J. E. G., & Putman, M. E. 2014, ApJ, 789, 82","score":1,"type":"text"}]},{"bbox":[303,554.1341552734375,539.070556640625,563.7381591796875],"spans":[{"bbox":[303.3070068359375,554.1341552734375,539.070556640625,563.7381591796875],"content":"Delmont, P. & Keppens, R. 2011, Journal of Plasma Physics, 77, 207–229","score":1,"type":"text"}]},{"bbox":[303,563.0611572265625,558,572.6651611328125],"spans":[{"bbox":[303.3070068359375,563.0611572265625,558.422119140625,572.6651611328125],"content":"Dubey, A., Antypas, K., Ganapathy, M. K., et al. 2009, Parallel Computing, 35,","score":1,"type":"text"}]},{"bbox":[313,572.0281982421875,325.2221374511719,581.6322021484375],"spans":[{"bbox":[313.2669982910156,572.0281982421875,325.2221374511719,581.6322021484375],"content":"512","score":1,"type":"text"}]},{"bbox":[303,580.9552001953125,558,590.5592041015625],"spans":[{"bbox":[303.3070068359375,580.9552001953125,558.4220581054688,590.5592041015625],"content":"Dubey, A., Reid, L. B., & Fisher, R. 2008, Physica Scripta Volume T, 132,","score":1,"type":"text"}]},{"bbox":[313,589.9221801757812,337,599.5261840820312],"spans":[{"bbox":[313.2669982910156,589.9221801757812,337.1772766113281,599.5261840820312],"content":"014046","score":1,"type":"text"}]},{"bbox":[303,598.8491821289062,407.3646240234375,608.4531860351562],"spans":[{"bbox":[303.3070068359375,598.8491821289062,407.3646240234375,608.4531860351562],"content":"Field, G. B. 1965, ApJ, 142, 531","score":1,"type":"text"}]},{"bbox":[303,607.7772216796875,526.844482421875,617.3812255859375],"spans":[{"bbox":[303.3070068359375,607.7772216796875,526.844482421875,617.3812255859375],"content":"Field, G. B., Goldsmith, D. W., & Habing, H. J. 1969, ApJ, 155, L149","score":1,"type":"text"}]},{"bbox":[303,616.7042236328125,558,626.3082275390625],"spans":[{"bbox":[303.3070068359375,616.7042236328125,558.4219970703125,626.3082275390625],"content":"Fryxell, B., Olson, K., Ricker, P., et al. 2000, The Astrophysical Journal Supple-","score":1,"type":"text"}]},{"bbox":[313,625.670166015625,382,635.274169921875],"spans":[{"bbox":[313.2669982910156,625.670166015625,382.5590515136719,635.274169921875],"content":"ment Series, 131, 273","score":1,"type":"text"}]},{"bbox":[303,634.5982055664062,482.8096618652344,644.2022094726562],"spans":[{"bbox":[303.3070068359375,634.5982055664062,482.8096618652344,644.2022094726562],"content":"Gazol, A. & Villagran, M. A. 2021, MNRAS, 501, 3099","score":1,"type":"text"}]},{"bbox":[303,643.5252075195312,558,653.1292114257812],"spans":[{"bbox":[303.3070068359375,643.5252075195312,558.422119140625,653.1292114257812],"content":"Gómez, G. C., Vázquez-Semadeni, E., & Zamora-Avilés, M. 2018, MNRAS,","score":1,"type":"text"}]},{"bbox":[313,652.4921875,345,662.09619140625],"spans":[{"bbox":[313.2669982910156,652.4921875,345.1473693847656,662.09619140625],"content":"480, 2939","score":1,"type":"text"}]},{"bbox":[303,661.419189453125,558,671.023193359375],"spans":[{"bbox":[303.3070068359375,661.419189453125,558.4222412109375,671.023193359375],"content":"Heiner, J. S., Vázquez-Semadeni, E., & Ballesteros-Paredes, J. 2015, MNRAS,","score":1,"type":"text"}]},{"bbox":[313,670.3861694335938,345,679.9901733398438],"spans":[{"bbox":[313.2669982910156,670.3861694335938,345.1473693847656,679.9901733398438],"content":"452, 1353","score":1,"type":"text"}]},{"bbox":[303,679.3131713867188,558,688.9171752929688],"spans":[{"bbox":[303.3070068359375,679.3131713867188,558.4219360351562,688.9171752929688],"content":"Heitsch, F., Slyz, A. D., Devriendt, J. E. G., Hartmann, L. W., & Burkert, A.","score":1,"type":"text"}]},{"bbox":[313,688.2791748046875,382,697.8831787109375],"spans":[{"bbox":[313.2669982910156,688.2791748046875,381.8974914550781,697.8831787109375],"content":"2006, ApJ, 648, 1052","score":1,"type":"text"}]},{"bbox":[303,697.2071533203125,558,706.8111572265625],"spans":[{"bbox":[303.3070068359375,697.2071533203125,558.4219360351562,706.8111572265625],"content":"Heitsch, F., Slyz, A. D., Devriendt, J. E. G., Hartmann, L. W., & Burkert, A.","score":1,"type":"text"}]},{"bbox":[313,706.1732177734375,377.9124450683594,715.7772216796875],"spans":[{"bbox":[313.2669982910156,706.1732177734375,377.9124450683594,715.7772216796875],"content":"2007, ApJ, 665, 445","score":1,"type":"text"}]},{"bbox":[303,715.1011962890625,512.0280151367188,724.7052001953125],"spans":[{"bbox":[303.3070068359375,715.1011962890625,512.0280151367188,724.7052001953125],"content":"Heitsch, F., Stone, J. M., & Hartmann, L. W. 2009, ApJ, 695, 248","score":1,"type":"text"}]},{"bbox":[303,724.0281982421875,426.3892822265625,733.6322021484375],"spans":[{"bbox":[303.3070068359375,724.0281982421875,426.3892822265625,733.6322021484375],"content":"Hennebelle, P. 2013, A&A, 556, A153","score":1,"type":"text"}]},{"bbox":[303,732.9561767578125,434,742.5601806640625],"spans":[{"bbox":[303.3070068359375,732.9561767578125,433.49066162109375,742.5601806640625],"content":"Hueckstaedt, R. M. 2003, New A, 8, 295","score":1,"type":"text"}]},{"bbox":[303,741.8831787109375,451,751.4871826171875],"spans":[{"bbox":[303.3070068359375,741.8831787109375,449.2713928222656,751.4871826171875],"content":"Inoue, T. & Inutsuka, S.-i. 2016, ApJ, 833, 10","score":1,"type":"text"}]},{"bbox":[303,750.8112182617188,464.1117248535156,760.4152221679688],"spans":[{"bbox":[303.3070068359375,750.8112182617188,464.1117248535156,760.4152221679688],"content":"Koyama, H. & Inutsuka, S.-i. 2002, ApJ, 564, L97","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[451,771,558,779],"lines":[{"bbox":[450.71197509765625,769.8159790039062,558.4253540039062,780.6204833984375],"spans":[{"bbox":[450.71197509765625,769.8159790039062,558.4253540039062,780.6204833984375],"content":"Article number, page 11 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[174,34,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":10,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[36,58.40766143798828,291,229.40652465820312],"lines":[{"bbox":[36,58.40766143798828,167.64723205566406,68.01163482666016],"spans":[{"bbox":[36.84999084472656,58.40766143798828,167.64723205566406,68.01163482666016],"content":"Pikel’Ner, S. B. 1968, Sov. Astr. 11, 737","score":1,"type":"text"}]},{"bbox":[36,67.37464141845703,285,76.9786148071289],"spans":[{"bbox":[36.84999084472656,67.37464141845703,285.23809814453125,76.9786148071289],"content":"Planck Collaboration, Adam, R., Ade, P. A. R., et al. 2016a, A&A, 586, A135","score":1,"type":"text"}]},{"bbox":[36,76.34064483642578,291,85.94461822509766],"spans":[{"bbox":[36.84999084472656,76.34064483642578,291.96484375,85.94461822509766],"content":"Planck Collaboration, Ade, P. A. R., Aghanim, N., et al. 2016b, A&A, 586, A138","score":1,"type":"text"}]},{"bbox":[36,85.30664825439453,260,94.9106216430664],"spans":[{"bbox":[36.84999084472656,85.30664825439453,259.36712646484375,94.9106216430664],"content":"Seifried, D., Walch, S., Girichidis, P., et al. 2017, MNRAS, 472, 4797","score":1,"type":"text"}]},{"bbox":[36,94.27362823486328,246.76638793945312,103.87760162353516],"spans":[{"bbox":[36.84999084472656,94.27362823486328,246.76638793945312,103.87760162353516],"content":"Seifried, D., Walch, S., Weis, M., et al. 2020, MNRAS, 497, 4196","score":1,"type":"text"}]},{"bbox":[36,103.23963165283203,263.9818115234375,112.8436050415039],"spans":[{"bbox":[36.84999084472656,103.23963165283203,263.9818115234375,112.8436050415039],"content":"Skalidis, R., Tassis, K., Panopoulou, G. V., et al. 2022, A&A, 665, A77","score":1,"type":"text"}]},{"bbox":[36,112.20661163330078,197.7901611328125,121.81058502197266],"spans":[{"bbox":[36.84999084472656,112.20661163330078,197.7901611328125,121.81058502197266],"content":"Soler, J. D. & Hennebelle, P. 2017, A&A, 607, A2","score":1,"type":"text"}]},{"bbox":[36,121.17261505126953,253.357666015625,130.77658081054688],"spans":[{"bbox":[36.84999084472656,121.17261505126953,253.357666015625,130.77658081054688],"content":"Soler, J. D., Hennebelle, P., Martin, P. G., et al. 2013, ApJ, 774, 128","score":1,"type":"text"}]},{"bbox":[36,130.13861083984375,285,139.74258422851562],"spans":[{"bbox":[36.84999084472656,130.13861083984375,285.41339111328125,139.74258422851562],"content":"Sullivan, B. & Kaszynski, A. 2019, Journal of Open Source Software, 4, 1450","score":1,"type":"text"}]},{"bbox":[36,139.1055908203125,291,148.70956420898438],"spans":[{"bbox":[36.84999084472656,139.1055908203125,291.96484375,148.70956420898438],"content":"Vázquez-Semadeni, E., Gómez, G. C., Jappsen, A. K., et al. 2007, ApJ, 657, 870","score":1,"type":"text"}]},{"bbox":[36,148.07159423828125,260,157.67556762695312],"spans":[{"bbox":[36.84999084472656,148.07159423828125,260.8336486816406,157.67556762695312],"content":"Vázquez-Semadeni, E., Passot, T., & Pouquet, A. 1996, ApJ, 473, 881","score":1,"type":"text"}]},{"bbox":[36,157.03759765625,291,166.64157104492188],"spans":[{"bbox":[36.84999084472656,157.03759765625,291.9649658203125,166.64157104492188],"content":"Vázquez-Semadeni, E., Ryu, D., Passot, T., Gonzalez, R. F., & Gazol, A. 2006,","score":1,"type":"text"}]},{"bbox":[46,166.00457763671875,162.7679443359375,175.60855102539062],"spans":[{"bbox":[46.81098937988281,166.00457763671875,162.7679443359375,175.60855102539062],"content":"The Astrophysical Journal, 643, 245","score":1,"type":"text"}]},{"bbox":[36,174.9705810546875,150.4557342529297,184.57455444335938],"spans":[{"bbox":[36.84999084472656,174.9705810546875,150.4557342529297,184.57455444335938],"content":"Vishniac, E. T. 1994, ApJ, 428, 186","score":1,"type":"text"}]},{"bbox":[36,183.93756103515625,291,193.54153442382812],"spans":[{"bbox":[36.84999084472656,183.93756103515625,291.96484375,193.54153442382812],"content":"Waagan, K., Federrath, C., & Klingenberg, C. 2011, Journal of Computational","score":1,"type":"text"}]},{"bbox":[46,192.903564453125,106.9931869506836,202.50753784179688],"spans":[{"bbox":[46.81098937988281,192.903564453125,106.9931869506836,202.50753784179688],"content":"Physics, 230, 3331","score":1,"type":"text"}]},{"bbox":[36,201.86956787109375,291,211.47354125976562],"spans":[{"bbox":[36.84999084472656,201.86956787109375,291.9649353027344,211.47354125976562],"content":"Zamora-Avilés, M., Vázquez-Semadeni, E., Körtgen, B., Banerjee, R., & Hart-","score":1,"type":"text"}]},{"bbox":[46,210.8365478515625,291,220.44052124023438],"spans":[{"bbox":[46.81098937988281,210.8365478515625,291.9712219238281,220.44052124023438],"content":"mann, L. 2018, Monthly Notices of the Royal Astronomical Society, 474,","score":1,"type":"text"}]},{"bbox":[46,219.80255126953125,62.751190185546875,229.40652465820312],"spans":[{"bbox":[46.81098937988281,219.80255126953125,62.751190185546875,229.40652465820312],"content":"4824","score":1,"type":"text"}]}],"type":"text"}]}],"fileName":"f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","fullMdLink":"http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=full.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","markdownUrl":["http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=0.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=1.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=2.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=3.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=4.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=5.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=6.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=7.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=8.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=9.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=10.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf"],"state":"done","status":1,"type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf&as_attachment=False"},"msg":"success","success":true}},"2":{"summary":"异常示例","value":{"code":-60004,"data":{"content":[],"fileName":"d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf","fullMdLink":"","markdownUrl":[],"state":"finished","status":1,"type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf&as_attachment=False"},"msg":"Failed to retrieve PDF parsing progress","msgZh":"无法获取PDF解析进度","success":false}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/taskQueue":{"get":{"summary":"查询当前正在进行的任务","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"array","items":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名称"},"id":{"type":"integer","title":"任务id"},"queues":{"type":"integer","title":"排队的任务总数"},"rank":{"type":"integer","title":"当前任务位次"},"state":{"type":"string","title":"任务状态","enum":["running","pending"]},"type":{"type":"string","title":"任务类型"},"url":{"type":"string","title":"文件链接"}}}},"msg":{"type":"string"},"success":{"type":"boolean"},"total":{"type":"integer"}},"required":["code","data","msg","success","total"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":[{"fileName":"f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","id":2,"queues":2,"rank":2,"state":"pending","type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf&as_attachment=False"},{"fileName":"4dae4590356a2ea04a93570cd9c29ac2fb443d7851c3ca1587877a56146b699d_layout.pdf","id":1,"queues":2,"rank":1,"state":"running","type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=4dae4590356a2ea04a93570cd9c29ac2fb443d7851c3ca1587877a56146b699d_layout.pdf&as_attachment=False"}],"msg":"success","success":true,"total":2}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/list":{"get":{"summary":"获取任务历史记录","deprecated":false,"description":"","tags":["analysis"],"parameters":[{"name":"pageNo","in":"query","description":"页码","required":true,"example":"1","schema":{"type":"string"}},{"name":"pageSize","in":"query","description":"每页显示的数量","required":true,"example":"10","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"list":{"type":"array","items":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名"},"id":{"type":"integer","title":"任务id"},"state":{"type":"string","title":"任务状态"},"type":{"type":"string","title":"任务类型"}},"required":["fileName","id","state","type"]}},"pageNo":{"type":"string","title":"页码"},"pageSize":{"type":"string","title":"每页显示的数量"},"total":{"type":"integer","title":"数据总数"}},"required":["list","pageNo","pageSize","total"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"list":[{"fileName":"d00fc780864ebbc74b6f34a6862e550bda2bc3cf8e39b4955bbc1aef1c0244fa_origin.pdf","id":2,"state":"pending","type":"pdf"},{"fileName":"ee9a3c795afbe49a57c57f65fe9ea8d4b3346c4da9ce5475828f83a8d65381c9_origin.pdf","id":1,"state":"running","type":"pdf"}],"pageNo":"1","pageSize":"10","total":2},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/task/{id}":{"delete":{"summary":"删除历史记录","deprecated":false,"description":"","tags":["analysis"],"parameters":[{"name":"id","in":"path","description":"路径参数,任务id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"id":{"type":"integer","title":"任务id"}},"required":["id"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"id":1},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}}},"components":{"schemas":{},"securitySchemes":{}},"servers":[]}, + spec: {"openapi":"3.0.1","info":{"title":"mineru-web","description":"","version":"1.0.0"},"tags":[{"name":"analysis"}],"paths":{"/api/v2/analysis/upload_pdf":{"post":{"summary":"上传pdf","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"pdfUrl":{"type":"string","description":"json参数格式支持pdf文件链接"}},"required":["pdfUrl"]},"example":{"pdfUrl":"https://arxiv.org/pdf/2405.08702"}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"file_key":{"type":"string"},"url":{"type":"string"}},"required":["file_key","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"file_key":"f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd","url":"/api/v2/analysis/upload_pdf?filename=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf&as_attachment=False"},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/task/submit":{"post":{"summary":"提交解析任务","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"fileKey":{"type":"string","title":"文件哈希"},"taskType":{"type":"string","title":"任务类型","description":"本期仅有pdf"},"isOcr":{"type":"boolean","title":"是否启用ocr","description":"PDF识别时有效"}},"required":["fileKey","taskType","isOcr"]},"example":{"fileKey":"d0ef17939a9b0fcc594d7faedc3b92c498f1d70336660060b98d79a4f006f0fc","taskType":"pdf","isOcr":false}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"fileName":{"type":"string"},"id":{"type":"integer"},"url":{"type":"string"}},"required":["fileName","id","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"fileName":"d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf","id":2,"url":"/api/v2/analysis/upload_pdf?filename=d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf&as_attachment=False"},"msg":"success","success":true}}}}},"headers":{}}},"security":[]},"put":{"summary":"重新发起任务","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"integer","title":"任务id"}},"required":["id"]},"example":{"id":2}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名称"},"id":{"type":"integer","title":"任务id"},"url":{"type":"string","title":"文件链接"}},"required":["fileName","id","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"fileName":"d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf","id":2,"url":"/api/v2/analysis/upload_pdf?filename=d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf&as_attachment=False"},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/task/progress":{"get":{"summary":"查询解析任务进度","deprecated":false,"description":"","tags":["analysis"],"parameters":[{"name":"id","in":"query","description":"解析任务id","required":true,"example":"2","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"content":{"type":"array","items":{"type":"object","properties":{"discarded_blocks":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"integer"}},"lines":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"number"}},"spans":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"number"}},"content":{"type":"string"},"score":{"type":"integer"},"type":{"type":"string"}},"required":["bbox","content","score","type"]}}},"required":["bbox","spans"]}},"type":{"type":"string"}},"required":["bbox","lines","type"]}},"page_idx":{"type":"integer"},"page_size":{"type":"array","items":{"type":"number"}},"preproc_blocks":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"integer"},{"type":"number"}]}},"lines":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"integer"},{"type":"number"}]}},"spans":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"number"},{"type":"integer"}],"type":"number"}},"content":{"type":"string"},"score":{"type":"integer"},"type":{"type":"string"},"cross_page":{"type":"boolean"}},"required":["bbox","content","score","type","cross_page"]}}},"required":["bbox","spans"]}},"type":{"type":"string"},"lines_deleted":{"type":"boolean"},"blocks":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"type":"integer"}},"lines":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"number"},{"type":"integer"}],"type":"number"}},"spans":{"type":"array","items":{"type":"object","properties":{"bbox":{"type":"array","items":{"oneOf":[{"type":"number"},{"type":"integer"}],"type":"number"}},"image_path":{"type":"string"},"score":{"type":"number"},"type":{"type":"string"},"content":{"type":"string"}},"required":["bbox","score","type","content","image_path"]}}},"required":["bbox","spans"]}},"type":{"type":"string"}},"required":["bbox","lines","type"]}}},"required":["bbox","lines","type","lines_deleted","blocks"]}}},"required":["discarded_blocks","page_idx","page_size","preproc_blocks"]}},"fileName":{"type":"string","title":"文件名称"},"fullMdLink":{"type":"string","title":"全文markdown链接"},"markdownUrl":{"type":"array","items":{"type":"string"},"title":"markdown分页链接"},"state":{"type":"string","enum":["running","pending","finished"],"title":"任务状态"},"status":{"type":"integer"},"type":{"type":"string","title":"任务类型"},"url":{"type":"string","title":"文件链接"}},"required":["content","fileName","fullMdLink","markdownUrl","state","status","type","url"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"content":[{"discarded_blocks":[{"bbox":[505,37,558,49],"lines":[{"bbox":[505.2149658203125,37.737548828125,555.0382690429688,49.74248504638672],"spans":[{"bbox":[505.2149658203125,37.737548828125,513.802734375,49.17461395263672],"content":"©","score":1,"type":"text"},{"bbox":[513.802978515625,37.737548828125,555.0382690429688,49.74248504638672],"content":"ESO 2024","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[14,234,36,635],"lines":[{"bbox":[10.940000534057617,234.38995361328125,37.619998931884766,639.8900146484375],"spans":[{"bbox":[10.940000534057617,234.38995361328125,37.619998931884766,639.8900146484375],"content":"arXiv:2405.08702v1 [astro-ph.GA] 14 May 2024","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[455,770,558,779],"lines":[{"bbox":[455.1949157714844,769.8161010742188,558.4251098632812,780.62060546875],"spans":[{"bbox":[455.1949157714844,769.8161010742188,558.4251098632812,780.62060546875],"content":"Article number, page 1 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[38,37,223,60],"lines":[{"bbox":[40.237998962402344,37.737548828125,222.8231201171875,49.74248504638672],"spans":[{"bbox":[40.237998962402344,37.737548828125,85.06969451904297,49.74248504638672],"content":"Astronomy","score":1,"type":"text"},{"bbox":[85.06969451904297,39.39087677001953,95.31089782714844,49.353477478027344],"content":" &","score":1,"type":"text"},{"bbox":[95.31089782714844,37.737548828125,149.77688598632812,49.74248504638672],"content":" Astrophysics","score":1,"type":"text"},{"bbox":[149.77688598632812,37.737548828125,222.8231201171875,49.74248504638672],"content":" manuscript no. aa","score":1,"type":"text"}]},{"bbox":[40.23797607421875,48.696533203125,95.85916137695312,60.70146942138672],"spans":[{"bbox":[40.23797607421875,48.696533203125,95.85916137695312,60.70146942138672],"content":"May 15, 2024","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":0,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[65,109,531,147],"lines":[{"bbox":[64.38899993896484,109.03148651123047,530.8878173828125,129.57286071777344],"spans":[{"bbox":[64.38899993896484,109.03148651123047,530.8878173828125,129.57286071777344],"content":"The physical mechanism behind magnetic field alignment in","score":1,"type":"text"}]},{"bbox":[227.4849853515625,128.9564666748047,367.7911682128906,149.4978485107422],"spans":[{"bbox":[227.4849853515625,128.9564666748047,367.7911682128906,149.4978485107422],"content":"interstellar clouds","score":1,"type":"text"}]}],"type":"title"},{"bbox":[124.26798248291016,153.35096740722656,470.510009765625,170.45645141601562],"lines":[{"bbox":[124.26798248291016,153.35096740722656,470.510009765625,170.45645141601562],"spans":[{"bbox":[124.26798248291016,157.3109893798828,220.91168212890625,170.45645141601562],"content":"Guido Granda-Muñoz","score":1,"type":"text"},{"bbox":[220.91098022460938,156.06658935546875,224.89602661132812,165.67056274414062],"content":"1","score":1,"type":"text"},{"bbox":[224.89598083496094,157.20840454101562,226.8885040283203,165.1785125732422],"content":",","score":1,"type":"text"},{"bbox":[232.69998168945312,157.3109893798828,357.51092529296875,170.45645141601562],"content":",Enrique Vázquez-Semadeni","score":1,"type":"text"},{"bbox":[357.510986328125,156.06658935546875,361.49603271484375,165.67056274414062],"content":"1","score":1,"type":"text"},{"bbox":[361.49603271484375,153.35096740722656,364.7209777832031,170.45645141601562],"content":" ","score":1,"type":"text"},{"bbox":[364.7209777832031,157.3109893798828,466.52459716796875,170.45645141601562],"content":"and Gilberto C. Gómez","score":1,"type":"text"},{"bbox":[466.52496337890625,156.06658935546875,470.510009765625,165.67056274414062],"content":"1","score":1,"type":"text"}]}],"type":"text"},{"bbox":[63,182.2520294189453,535,236.16256713867188],"lines":[{"bbox":[63,182.2520294189453,535,196.31155395507812],"spans":[{"bbox":[63.51275634765625,182.2520294189453,535.7510375976562,196.31155395507812],"content":" Instituto de Radioastronomía y Astrofísica, Universidad Nacional Autónoma de México, Apdo. Postal 3-72, Morelia, Michoacán","score":1,"type":"text"}]},{"bbox":[68,195.4700469970703,122.78550720214844,206.27456665039062],"spans":[{"bbox":[68.49395751953125,195.4700469970703,122.78550720214844,206.27456665039062],"content":"58089, México","score":1,"type":"text"}]},{"bbox":[68,205.43202209472656,298.5536804199219,216.23654174804688],"spans":[{"bbox":[68.49395751953125,205.43202209472656,93.89576721191406,216.23654174804688],"content":"e-mail:","score":1,"type":"text"},{"bbox":[93.89576721191406,206.3466033935547,298.5536804199219,215.3578338623047],"content":" e.vazquez@irya.unam.mx,g.gomez@irya.unam.mx","score":1,"type":"text"}]},{"bbox":[63,212.14002990722656,529,226.19955444335938],"spans":[{"bbox":[63.51275634765625,212.14002990722656,529.6361694335938,226.19955444335938],"content":" Departamento de Ciencias, Facultad de Artes Liberales, Universidad Adolfo Ibáñez, Av. Padre Hurtado 750, Viña del Mar, Chile","score":1,"type":"text"}]},{"bbox":[68,225.35804748535156,204.40634155273438,236.16256713867188],"spans":[{"bbox":[68.49395751953125,225.35804748535156,93.89576721191406,236.16256713867188],"content":"e-mail:","score":1,"type":"text"},{"bbox":[93.89576721191406,226.2726287841797,204.40634155273438,235.2838592529297],"content":" guido.granda@edu.uai.cl","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,243.29103088378906,171.95762634277344,254.09555053710938],"lines":[{"bbox":[59,243.29103088378906,171.95762634277344,254.09555053710938],"spans":[{"bbox":[59.5279541015625,243.29103088378906,171.95762634277344,254.09555053710938],"content":"Received XXX; accepted YYY","score":1,"type":"text"}]}],"type":"text"},{"bbox":[273,268,322,280],"lines":[{"bbox":[274.387939453125,269.8934020996094,320.8876953125,280.5920104980469],"spans":[{"bbox":[274.387939453125,269.8934020996094,320.8876953125,280.5920104980469],"content":"ABSTRACT","score":1,"type":"text"}]}],"type":"title"},{"bbox":[59,288.6210632324219,535,309.3875427246094],"lines":[{"bbox":[59,288.6210632324219,535,299.4255676269531],"spans":[{"bbox":[59.52793884277344,288.7883605957031,90.9934310913086,299.3336486816406],"content":"Context.","score":1,"type":"text"},{"bbox":[90.9934310913086,288.6210632324219,535.7450561523438,299.4255676269531],"content":" A tight correlation between interstellar clouds contours and their local magnetic field orientation has been widely observed.","score":1,"type":"text"}]},{"bbox":[59,298.5830383300781,355.1231994628906,309.3875427246094],"spans":[{"bbox":[59.52793884277344,298.5830383300781,355.1231994628906,309.3875427246094],"content":"However, the physical mechanisms responsible for this correlation remain unclear.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,318.5080261230469,535,349.2385559082031],"lines":[{"bbox":[59,318.5080261230469,535,329.3125305175781],"spans":[{"bbox":[59.5279426574707,318.6753234863281,94.43470764160156,329.2206115722656],"content":"Methods.","score":1,"type":"text"},{"bbox":[94.43470764160156,318.5080261230469,535.7487182617188,329.3125305175781],"content":" We perform three- and two-dimensional MHD simulations of warm gas streams in the thermally-bistable atomic interstellar","score":1,"type":"text"}]},{"bbox":[59,328.4710388183594,535,339.2755432128906],"spans":[{"bbox":[59.52794647216797,328.4710388183594,535.7512817382812,339.2755432128906],"content":"medium (ISM) colliding with velocities of the order of the velocity dispersion in the ISM. In these simulations, we follow the evolution","score":1,"type":"text"}]},{"bbox":[59,338.4340515136719,389.7962341308594,349.2385559082031],"spans":[{"bbox":[59.52794647216797,338.4340515136719,389.7962341308594,349.2385559082031],"content":"of magnetic field lines, identify and elucidate the physical processes causing their evolution.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,348.39605712890625,535,478.752685546875],"lines":[{"bbox":[59,348.39605712890625,535,359.2005615234375],"spans":[{"bbox":[59.52794647216797,348.5633544921875,90.16719818115234,359.108642578125],"content":"Results.","score":1,"type":"text"},{"bbox":[90.16719818115234,348.39605712890625,535.7520141601562,359.2005615234375],"content":" The collision produces a fast MHD shock, and a condensation front roughly one cooling length behind it, on each side","score":1,"type":"text"}]},{"bbox":[59,358.35906982421875,535,369.16357421875],"spans":[{"bbox":[59.527950286865234,358.35906982421875,535.7512817382812,369.16357421875],"content":"of the collision front. A cold dense layer forms behind the condensation front, onto which the gas settles, decelerating smoothly.","score":1,"type":"text"}]},{"bbox":[59,368.32208251953125,535,379.1265869140625],"spans":[{"bbox":[59.527950286865234,368.32208251953125,535.7512817382812,379.1265869140625],"content":"We find that the magnetic field lines, initially oriented parallel to the flow direction, are perturbed by the fast MHD shock, across","score":1,"type":"text"}]},{"bbox":[59,378.2840881347656,535,389.0885925292969],"spans":[{"bbox":[59.527950286865234,378.2840881347656,535.751220703125,389.0885925292969],"content":"which the magnetic field fluctuations parallel to the shock front are amplified. The downstream perturbations of the magnetic field","score":1,"type":"text"}]},{"bbox":[59,388.2471008300781,535,399.0516052246094],"spans":[{"bbox":[59.527950286865234,388.2471008300781,180.19773864746094,399.0516052246094],"content":"lines are further amplified by the","score":1,"type":"text"},{"bbox":[180.19773864746094,388.2471008300781,227.1071014404297,398.9529724121094],"content":" compressive","score":1,"type":"text"},{"bbox":[227.1071014404297,388.2471008300781,535.7522583007812,399.0516052246094],"content":" downstream velocity gradient between the shock and the condensation front caused","score":1,"type":"text"}]},{"bbox":[59,398.2101135253906,535,409.0146179199219],"spans":[{"bbox":[59.5279541015625,398.2101135253906,535.751220703125,409.0146179199219],"content":"by the settlement of the gas onto the dense layer. This mechanism causes the magnetic field to become increasingly parallel to the","score":1,"type":"text"}]},{"bbox":[59,408.172119140625,535,418.97662353515625],"spans":[{"bbox":[59.5279541015625,408.172119140625,535.7513427734375,418.97662353515625],"content":"dense layer, and the development of a shear flow around the latter. Furthermore, the bending-mode perturbations on the dense layer","score":1,"type":"text"}]},{"bbox":[59,418.1351318359375,535,428.93963623046875],"spans":[{"bbox":[59.5279541015625,418.1351318359375,535.7510375976562,428.93963623046875],"content":"are amplified by the non-linear thin-shell instability (NTSI), stretching the density structures formed by the thermal instability, and","score":1,"type":"text"}]},{"bbox":[59,428.09814453125,535,438.90264892578125],"spans":[{"bbox":[59.5279541015625,428.09814453125,355.9569396972656,438.90264892578125],"content":"rendering them parallel to the bent field lines. By extension, we suggest that a tidal","score":1,"type":"text"},{"bbox":[355.9569396972656,428.09814453125,393.57122802734375,438.80401611328125],"content":" stretching","score":1,"type":"text"},{"bbox":[393.57122802734375,428.09814453125,535.7483520507812,438.90264892578125],"content":" velocity gradient such as that produced","score":1,"type":"text"}]},{"bbox":[59,438.0601501464844,535,448.8646545410156],"spans":[{"bbox":[59.5279541015625,438.0601501464844,535.7513427734375,448.8646545410156],"content":"in gas infalling into a self-gravitating structure must straighten the field lines along the accretion flow, orienting them perpendicular","score":1,"type":"text"}]},{"bbox":[59,448.0231628417969,535,458.8276672363281],"spans":[{"bbox":[59.5279541015625,448.0231628417969,535.7510986328125,458.8276672363281],"content":"to the density structures. We also find that the upstream superalfvénic regime transitions to a transalfvénic regime between the shock","score":1,"type":"text"}]},{"bbox":[59,457.98516845703125,535,468.7896728515625],"spans":[{"bbox":[59.5279541015625,457.98516845703125,535.7510375976562,468.7896728515625],"content":"and the condensation front, and then to a subalfvénic regime inside the condensations. Finally, in two-dimensional simulations with a","score":1,"type":"text"}]},{"bbox":[59,467.94818115234375,524.3818969726562,478.752685546875],"spans":[{"bbox":[59.5279541015625,467.94818115234375,524.3818969726562,478.752685546875],"content":"curved collision front, the presence of the magnetic field inhibits the generation of turbulence by the shear around the dense layer.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,477.91119384765625,535,498.6777038574219],"lines":[{"bbox":[59,477.91119384765625,535,488.7156982421875],"spans":[{"bbox":[59.5279541015625,478.0784912109375,108.1572265625,488.623779296875],"content":"Conclusions.","score":1,"type":"text"},{"bbox":[108.1572265625,477.91119384765625,535.7467651367188,488.7156982421875],"content":" Our results provide a feasible physical mechanism for the observed transition from parallel to perpendicular relative","score":1,"type":"text"}]},{"bbox":[59,487.8731994628906,529,498.6777038574219],"spans":[{"bbox":[59.5279541015625,487.8731994628906,528.9368286132812,498.6777038574219],"content":"orientation of the magnetic field and the density structures as the density structures become increasingly dominated by self-gravity.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[59,503.8141784667969,420.0631103515625,514.7141723632812],"lines":[{"bbox":[59,503.8141784667969,420.0631103515625,514.7141723632812],"spans":[{"bbox":[59.5279541015625,504.0155334472656,104.37522888183594,514.7141723632812],"content":"Key words.","score":1,"type":"text"},{"bbox":[104.37522888183594,503.8141784667969,420.0631103515625,514.61865234375],"content":" Magnetic fields – ISM: clouds –ISM: magnetic fields – ISM: kinematics and dynamics","score":1,"type":"text"}]}],"type":"text"},{"bbox":[38,537,109,550],"lines":[{"bbox":[36.849952697753906,538.0780639648438,109.05316162109375,551.0947875976562],"spans":[{"bbox":[36.849952697753906,538.0780639648438,109.05316162109375,551.0947875976562],"content":"1. Introduction","score":1,"type":"text"}]}],"type":"title"},{"bbox":[37,562.668701171875,291,760.9756469726562],"lines":[{"bbox":[37,562.668701171875,291,574.6736450195312],"spans":[{"bbox":[36.849952697753906,562.668701171875,291.97222900390625,574.6736450195312],"content":"Studying the role of magnetic fields in the formation and evo-","score":1,"type":"text"}]},{"bbox":[37,573.627685546875,291,585.6326293945312],"spans":[{"bbox":[36.849952697753906,573.627685546875,291.9721984863281,585.6326293945312],"content":"lution of atomic and molecular clouds (MCs) has been an im-","score":1,"type":"text"}]},{"bbox":[37,584.586669921875,291,596.5916137695312],"spans":[{"bbox":[36.849952697753906,584.586669921875,291.97216796875,596.5916137695312],"content":"portant research topic for both observational and theoretical as-","score":1,"type":"text"}]},{"bbox":[37,595.545654296875,291,607.5505981445312],"spans":[{"bbox":[36.849952697753906,595.545654296875,291.9721374511719,607.5505981445312],"content":"tronomy. Magnetic fields are thought to be an important ingre-","score":1,"type":"text"}]},{"bbox":[37,606.5046997070312,291,618.5096435546875],"spans":[{"bbox":[36.849952697753906,606.5046997070312,291.97216796875,618.5096435546875],"content":"dient in the dynamics of the ISM, providing a possible support","score":1,"type":"text"}]},{"bbox":[37,617.4636840820312,291,629.4686279296875],"spans":[{"bbox":[36.849952697753906,617.4636840820312,291.97222900390625,629.4686279296875],"content":"mechanism against gravitational collapse, and guiding the gas","score":1,"type":"text"}]},{"bbox":[37,628.4226684570312,291,640.4276123046875],"spans":[{"bbox":[36.849952697753906,628.4226684570312,291.9721984863281,640.4276123046875],"content":"flow in the surroundings of filamentary structures, among many","score":1,"type":"text"}]},{"bbox":[37,639.3817138671875,291,651.3866577148438],"spans":[{"bbox":[36.849952697753906,639.3817138671875,65.88097381591797,651.3866577148438],"content":"other e","score":1,"type":"text"},{"bbox":[65.87995147705078,641.0350341796875,71.85751342773438,650.9976196289062],"content":"ff","score":1,"type":"text"},{"bbox":[71.85694885253906,639.3817138671875,291.9705810546875,651.3866577148438],"content":"ects. In addition, a tight correlation between the ori-","score":1,"type":"text"}]},{"bbox":[37,650.3406982421875,291,662.3456420898438],"spans":[{"bbox":[36.84994888305664,650.3406982421875,291.9721984863281,662.3456420898438],"content":"entation of the magnetic field and cold atomic clouds (CACs)","score":1,"type":"text"}]},{"bbox":[37,661.2996826171875,291,673.3046264648438],"spans":[{"bbox":[36.84994888305664,661.2996826171875,291.9721984863281,673.3046264648438],"content":"has been identified in the last decade. For example, Clark et al.","score":1,"type":"text"}]},{"bbox":[37,672.2586669921875,291,684.2636108398438],"spans":[{"bbox":[36.84994888305664,672.2586669921875,291.97222900390625,684.2636108398438],"content":"(2015) found that the plane of the sky magnetic field, measured","score":1,"type":"text"}]},{"bbox":[37,683.2166748046875,291,695.2216186523438],"spans":[{"bbox":[36.84994888305664,683.2166748046875,291.9721984863281,695.2216186523438],"content":"using polarized thermal dust emission, is aligned with atomic","score":1,"type":"text"}]},{"bbox":[37,694.1756591796875,291,706.1806030273438],"spans":[{"bbox":[36.84994888305664,694.1756591796875,291.97222900390625,706.1806030273438],"content":"hydrogen structures detected with HI emission and Clark et al.","score":1,"type":"text"}]},{"bbox":[37,705.1346435546875,291,717.1395874023438],"spans":[{"bbox":[36.84994888305664,705.1346435546875,234.73712158203125,717.1395874023438],"content":"(2014) also observed a similar alignment in HI","score":1,"type":"text"},{"bbox":[234.73712158203125,705.1346435546875,260.9491882324219,717.0299682617188],"content":" fibers","score":1,"type":"text"},{"bbox":[260.9489440917969,705.1346435546875,291.97247314453125,717.1395874023438],"content":", which","score":1,"type":"text"}]},{"bbox":[37,716.0936889648438,291,728.0986328125],"spans":[{"bbox":[36.849945068359375,716.0936889648438,291.9721984863281,728.0986328125],"content":"are thin long dense structures identified in HI emission using","score":1,"type":"text"}]},{"bbox":[37,727.0526733398438,291,739.0576171875],"spans":[{"bbox":[36.849945068359375,727.0526733398438,291.9721374511719,739.0576171875],"content":"the Rolling Hough transform. In addition, Planck Collabora-","score":1,"type":"text"}]},{"bbox":[37,738.0116577148438,291,750.0166015625],"spans":[{"bbox":[36.849945068359375,738.0116577148438,291.9721374511719,750.0166015625],"content":"tion et al. (2016a) found that the plane of the sky magnetic","score":1,"type":"text"}]},{"bbox":[37,748.970703125,291,760.9756469726562],"spans":[{"bbox":[36.849945068359375,748.970703125,291.97222900390625,760.9756469726562],"content":"field, detected using polarized thermal dust emission, is aligned","score":1,"type":"text"}]},{"bbox":[303,538.7076416015625,558,550.7125854492188],"spans":[{"bbox":[303.30694580078125,538.7076416015625,558.42919921875,550.7125854492188],"content":"with molecular structures traced by dust, and Planck Collabo-","score":1,"type":"text"}]},{"bbox":[303,549.6666870117188,558,561.671630859375],"spans":[{"bbox":[303.30694580078125,549.6666870117188,558.4290161132812,561.671630859375],"content":"ration et al. (2016b) found that the relative orientation of the","score":1,"type":"text"}]},{"bbox":[303,560.6256713867188,558,572.630615234375],"spans":[{"bbox":[303.30694580078125,560.6256713867188,558.42919921875,572.630615234375],"content":"projected magnetic field and dust filaments changes from par-","score":1,"type":"text"}]},{"bbox":[303,571.5846557617188,558,583.589599609375],"spans":[{"bbox":[303.30694580078125,571.5846557617188,558.42919921875,583.589599609375],"content":"allel to perpendicular when sampling higher density regions in","score":1,"type":"text"}]},{"bbox":[303,582.5426635742188,558,594.547607421875],"spans":[{"bbox":[303.30694580078125,582.5426635742188,558.4292602539062,594.547607421875],"content":"nearby MCs. Skalidis et al. (2022) studied the role of the mag-","score":1,"type":"text"}]},{"bbox":[303,593,558,607.0015869140625],"spans":[{"bbox":[303.30694580078125,593.5016479492188,445.662353515625,605.506591796875],"content":"netic field in the transition between ","score":1,"type":"text"},{"bbox":[445,593,478,604],"content":"\\mathrm{HI}-\\mathrm{H}_{2}","score":0.87,"type":"inline_equation"},{"bbox":[477.6148376464844,593.5016479492188,558.4295043945312,607.0015869140625],"content":" using multiple trac-","score":1,"type":"text"}]},{"bbox":[303,604.460693359375,558,616.4656372070312],"spans":[{"bbox":[303.3069152832031,604.460693359375,558.4293212890625,616.4656372070312],"content":"ers to investigate the gas properties of Ursa Minor. They found","score":1,"type":"text"}]},{"bbox":[303,615.419677734375,558,627.4246215820312],"spans":[{"bbox":[303.3069152832031,615.419677734375,558.42919921875,627.4246215820312],"content":"that turbulence is transalfvénic and that the gas probably accu-","score":1,"type":"text"}]},{"bbox":[303,626.378662109375,558,638.3836059570312],"spans":[{"bbox":[303.3069152832031,626.378662109375,558.4291381835938,638.3836059570312],"content":"mulates along magnetic field lines and generates overdensities","score":1,"type":"text"}]},{"bbox":[303,637.337646484375,426.364990234375,649.3425903320312],"spans":[{"bbox":[303.3069152832031,637.337646484375,426.364990234375,649.3425903320312],"content":"where molecular gas can form.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,538.7076416015625,558,649.3425903320312],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,650.3406982421875,558,760.9755859375],"lines":[{"bbox":[318.25091552734375,650.3406982421875,558,662.3456420898438],"spans":[{"bbox":[318.25091552734375,650.3406982421875,558.42919921875,662.3456420898438],"content":"However, the origin of these alignments remains unclear, as","score":1,"type":"text"}]},{"bbox":[303,661.2996826171875,558,673.3046264648438],"spans":[{"bbox":[303.3069152832031,661.2996826171875,558.42919921875,673.3046264648438],"content":"most of the observational evidence refers to spatial and orien-","score":1,"type":"text"}]},{"bbox":[303,672.2576904296875,558,684.2626342773438],"spans":[{"bbox":[303.3069152832031,672.2576904296875,558.4290161132812,684.2626342773438],"content":"tation correlations without a clear understanding of the causal-","score":1,"type":"text"}]},{"bbox":[303,683.2166748046875,558,695.2216186523438],"spans":[{"bbox":[303.3069152832031,683.2166748046875,558.4290161132812,695.2216186523438],"content":"ity involved. Therefore, it is crucial to understand the interplay","score":1,"type":"text"}]},{"bbox":[303,694.1756591796875,558,706.1806030273438],"spans":[{"bbox":[303.3069152832031,694.1756591796875,558.4293212890625,706.1806030273438],"content":"between the precursors of molecular clouds (MCs) and mag-","score":1,"type":"text"}]},{"bbox":[303,705.1346435546875,558,717.1395874023438],"spans":[{"bbox":[303.3069152832031,705.1346435546875,558.42919921875,717.1395874023438],"content":"netic fields. Since CACs are thought to constitute the primordial","score":1,"type":"text"}]},{"bbox":[303,716.0936279296875,558,728.0985717773438],"spans":[{"bbox":[303.3069152832031,716.0936279296875,558.4290771484375,728.0985717773438],"content":"place for the early stages of the evolution of molecular clouds","score":1,"type":"text"}]},{"bbox":[303,727.0526733398438,558,739.0576171875],"spans":[{"bbox":[303.3069152832031,727.0526733398438,558.4291381835938,739.0576171875],"content":"and, eventually, star-forming regions (e.g., Koyama & Inutsuka","score":1,"type":"text"}]},{"bbox":[303,738.0116577148438,558,750.0166015625],"spans":[{"bbox":[303.3069152832031,738.0116577148438,558.4290771484375,750.0166015625],"content":"2002; Audit & Hennebelle 2005; Vázquez-Semadeni et al. 2006;","score":1,"type":"text"}]},{"bbox":[303,748.9706420898438,558,760.9755859375],"spans":[{"bbox":[303.3069152832031,748.9706420898438,558.4292602539062,760.9755859375],"content":"Heitsch et al. 2006; Heiner et al. 2015; Seifried et al. 2017), un-","score":1,"type":"text"}]},{"bbox":[36,56.56658935546875,291,68.57152557373047],"spans":[{"bbox":[36.84999084472656,56.56658935546875,291.97222900390625,68.57152557373047],"content":"derstanding the alignment mechanism of magnetic field lines in","cross_page":true,"score":1,"type":"text"}]},{"bbox":[36,67.52557373046875,291,79.53050994873047],"spans":[{"bbox":[36.84999084472656,67.52557373046875,291.9722595214844,79.53050994873047],"content":"CACs is relevant to elucidate the role of magnetic fields in the","cross_page":true,"score":1,"type":"text"}]},{"bbox":[36,78.48455810546875,186.8269805908203,90.48949432373047],"spans":[{"bbox":[36.84999084472656,78.48455810546875,186.8269805908203,90.48949432373047],"content":"formation of MCs and star formation.","cross_page":true,"score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[303,739,558,759],"lines":[{"bbox":[305.2969970703125,736.6730346679688,558.4263305664062,750.7325439453125],"spans":[{"bbox":[305.2969970703125,739.4346923828125,308.2857971191406,746.6376953125],"content":"1","score":1,"type":"text"},{"bbox":[308.2857971191406,736.6730346679688,558.4263305664062,750.7325439453125],"content":" With the typographical corrections given in Vázquez-Semadeni et al.","score":1,"type":"text"}]},{"bbox":[303.3070068359375,749.8910522460938,327.2114562988281,760.695556640625],"spans":[{"bbox":[303.3070068359375,749.8910522460938,327.2114562988281,760.695556640625],"content":"(2007)","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[241,34,354,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[37,771,139,779],"lines":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"spans":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"content":"Article number, page 2 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":1,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[36,56.56658935546875,291,90.48949432373047],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[36,89.72857666015625,291,200.36338806152344],"lines":[{"bbox":[51,89.72857666015625,291,101.73351287841797],"spans":[{"bbox":[51.79399108886719,89.72857666015625,291.9723205566406,101.73351287841797],"content":"To study this correlation statistically, Soler et al. (2013) pro-","score":1,"type":"text"}]},{"bbox":[36,100.68756103515625,291,112.69249725341797],"spans":[{"bbox":[36.84999084472656,100.68756103515625,291.97222900390625,112.69249725341797],"content":"posed the histogram of relative orientations (HRO) and found","score":1,"type":"text"}]},{"bbox":[36,111.64556884765625,291,123.65050506591797],"spans":[{"bbox":[36.84999084472656,111.64556884765625,291.97222900390625,123.65050506591797],"content":"that the relative orientation of the magnetic field and isodensity","score":1,"type":"text"}]},{"bbox":[36,122.60455322265625,291,134.60948181152344],"spans":[{"bbox":[36.84999084472656,122.60455322265625,291.9722595214844,134.60948181152344],"content":"contours changes from parallel to perpendicular in a high mag-","score":1,"type":"text"}]},{"bbox":[36,133.56353759765625,291,145.56846618652344],"spans":[{"bbox":[36.84999084472656,133.56353759765625,79.30062866210938,145.56846618652344],"content":"netization ","score":1,"type":"text"},{"bbox":[80,134,116,145],"content":"(\\beta\\,=\\,0.1)","score":0.88,"type":"inline_equation"},{"bbox":[114.49229431152344,133.56353759765625,291.96600341796875,145.56846618652344],"content":") computer-simulated cloud. This change of","score":1,"type":"text"}]},{"bbox":[36,144.52252197265625,291,156.52745056152344],"spans":[{"bbox":[36.84999084472656,144.52252197265625,291.97216796875,156.52745056152344],"content":"orientation was studied in Soler & Hennebelle (2017) with an","score":1,"type":"text"}]},{"bbox":[36,155.48150634765625,291,167.48643493652344],"spans":[{"bbox":[36.84999084472656,155.48150634765625,291.9721984863281,167.48643493652344],"content":"analytic approach where the authors found the parallel or anti-","score":1,"type":"text"}]},{"bbox":[36,166.44049072265625,291,178.44541931152344],"spans":[{"bbox":[36.84999084472656,166.44049072265625,69.92582702636719,178.44541931152344],"content":"parallel ","score":1,"type":"text"},{"bbox":[70,167,128,178],"content":"(\\phi\\,=\\,0^{\\circ},180^{\\circ})","score":0.79,"type":"inline_equation"},{"bbox":[128.53652954101562,166.44049072265625,207.2908935546875,178.44541931152344],"content":" and perpendicular ","score":1,"type":"text"},{"bbox":[208,167,246,178],"content":"(\\phi\\,=\\,90^{\\circ})","score":0.88,"type":"inline_equation"},{"bbox":[244.50599670410156,166.44049072265625,291.9678039550781,178.44541931152344],"content":") configura-","score":1,"type":"text"}]},{"bbox":[36,177.39947509765625,291,189.40440368652344],"spans":[{"bbox":[36.84999084472656,177.39947509765625,291.9722595214844,189.40440368652344],"content":"tions are equilibrium points. Therefore, they argue, the system","score":1,"type":"text"}]},{"bbox":[36,188.35845947265625,167.9390106201172,200.36338806152344],"spans":[{"bbox":[36.84999084472656,188.35845947265625,129.78111267089844,200.36338806152344],"content":"tends to evolve to these","score":1,"type":"text"},{"bbox":[131,189,138,200],"content":"\\phi","score":0.85,"type":"inline_equation"},{"bbox":[137.75241088867188,188.35845947265625,167.9390106201172,200.36338806152344],"content":" values.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,199.6014404296875,291,288.31927490234375],"lines":[{"bbox":[51,199.6014404296875,291,211.6063690185547],"spans":[{"bbox":[51.793983459472656,199.6014404296875,291.9723205566406,211.6063690185547],"content":"More recently, Seifried et al. (2020) investigated the rela-","score":1,"type":"text"}]},{"bbox":[36,210.5604248046875,291,222.5653533935547],"spans":[{"bbox":[36.84998321533203,210.5604248046875,291.9722595214844,222.5653533935547],"content":"tive orientation of magnetic field and three- and two-dimensional","score":1,"type":"text"}]},{"bbox":[36,221.5194091796875,291,233.5243377685547],"spans":[{"bbox":[36.84998321533203,221.5194091796875,291.97222900390625,233.5243377685547],"content":"projected structures using synthetic dust polarization maps. They","score":1,"type":"text"}]},{"bbox":[36,232.4783935546875,291,244.4833221435547],"spans":[{"bbox":[36.84998321533203,232.4783935546875,291.97222900390625,244.4833221435547],"content":"found that the magnetic field changes its orientation from paral-","score":1,"type":"text"}]},{"bbox":[36,239.82135009765625,291,255.4423065185547],"spans":[{"bbox":[36.84998321533203,243.4373779296875,124.9791259765625,255.4423065185547],"content":"lel to perpendicular at","score":1,"type":"text"},{"bbox":[126,242,207,254],"content":"n\\approx10^{2}-\\mathrm{\\bar{10^{3}}}\\,\\mathrm{cm}^{-3}","score":0.92,"type":"inline_equation"},{"bbox":[206.7588653564453,239.82135009765625,210.073974609375,255.4423065185547],"content":" ","score":1,"type":"text"},{"bbox":[210.073974609375,243.4373779296875,291.9665222167969,255.4423065185547],"content":"in regions where the","score":1,"type":"text"}]},{"bbox":[36,254.3963623046875,291,266.40130615234375],"spans":[{"bbox":[36.8499755859375,254.3963623046875,291.97216796875,266.40130615234375],"content":"mass-to-flux ratio has values close to or below 1. In addition,","score":1,"type":"text"}]},{"bbox":[36,265.3553466796875,291,277.36029052734375],"spans":[{"bbox":[36.8499755859375,265.3553466796875,148.72000122070312,277.36029052734375],"content":"they found that projection e","score":1,"type":"text"},{"bbox":[148.72097778320312,267.0086669921875,154.6985321044922,276.9712829589844],"content":"ff","score":1,"type":"text"},{"bbox":[154.69798278808594,265.3553466796875,291.9726257324219,277.36029052734375],"content":"ects due to the relative orientation","score":1,"type":"text"}]},{"bbox":[36,276.3143310546875,278.6726989746094,288.31927490234375],"spans":[{"bbox":[36.84998321533203,276.3143310546875,184.43592834472656,288.31927490234375],"content":"between the cloud and the observer a","score":1,"type":"text"},{"bbox":[184.43698120117188,277.9676513671875,190.41453552246094,287.9302673339844],"content":"ff","score":1,"type":"text"},{"bbox":[190.4139862060547,276.3143310546875,278.6726989746094,288.31927490234375],"content":"ect the measurements.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,287.55731201171875,291,431.069091796875],"lines":[{"bbox":[51,287.55731201171875,291,299.562255859375],"spans":[{"bbox":[51.79399108886719,287.55731201171875,291.9722900390625,299.562255859375],"content":"The relative orientation of the magnetic field alignment with","score":1,"type":"text"}]},{"bbox":[36,298.51629638671875,291,310.521240234375],"spans":[{"bbox":[36.84999084472656,298.51629638671875,291.9723205566406,310.521240234375],"content":"CACs is, arguably, intrinsically related to the formation mecha-","score":1,"type":"text"}]},{"bbox":[36,309.47528076171875,291,321.480224609375],"spans":[{"bbox":[36.84999084472656,309.47528076171875,291.97222900390625,321.480224609375],"content":"nism of CACs. The formation of cold atomic clouds (CACs) by","score":1,"type":"text"}]},{"bbox":[36,320.43426513671875,291,332.439208984375],"spans":[{"bbox":[36.84999084472656,320.43426513671875,291.9722595214844,332.439208984375],"content":"colliding flows with pure hydrodynamic was studied in Heitsch","score":1,"type":"text"}]},{"bbox":[36,331.39324951171875,291,343.398193359375],"spans":[{"bbox":[36.84999084472656,331.39324951171875,291.9721984863281,343.398193359375],"content":"et al. (2006), where the authors performed simulations of collid-","score":1,"type":"text"}]},{"bbox":[36,342.35223388671875,291,354.357177734375],"spans":[{"bbox":[36.84999084472656,342.35223388671875,291.97222900390625,354.357177734375],"content":"ing warm neutral gas streams, including the multi-phase nature","score":1,"type":"text"}]},{"bbox":[36,353.31121826171875,291,365.316162109375],"spans":[{"bbox":[36.84999084472656,353.31121826171875,291.9722595214844,365.316162109375],"content":"of the ISM and not considering gravity nor magnetic fields. They","score":1,"type":"text"}]},{"bbox":[36,364.27020263671875,291,376.275146484375],"spans":[{"bbox":[36.84999084472656,364.27020263671875,291.9722595214844,376.275146484375],"content":"discussed three important instabilities that might play a role in","score":1,"type":"text"}]},{"bbox":[36,375.22821044921875,291,387.233154296875],"spans":[{"bbox":[36.84999084472656,375.22821044921875,291.97222900390625,387.233154296875],"content":"the formation of CACs: the thermal instability (TI), the Kelvin-","score":1,"type":"text"}]},{"bbox":[36,386.18719482421875,291,398.192138671875],"spans":[{"bbox":[36.84999084472656,386.18719482421875,291.9721984863281,398.192138671875],"content":"Helmholtz instability (KHI), and the non-linear thin-shell in-","score":1,"type":"text"}]},{"bbox":[36,397.14617919921875,291,409.151123046875],"spans":[{"bbox":[36.84999084472656,397.14617919921875,291.9723205566406,409.151123046875],"content":"stability (NTSI). They concluded that these instabilities break","score":1,"type":"text"}]},{"bbox":[36,408.10516357421875,291,420.110107421875],"spans":[{"bbox":[36.84999084472656,408.10516357421875,291.9722595214844,420.110107421875],"content":"up the coherent flows, seeding small-scale density perturbations","score":1,"type":"text"}]},{"bbox":[36,419.06414794921875,274.5974426269531,431.069091796875],"spans":[{"bbox":[36.84999084472656,419.06414794921875,274.5974426269531,431.069091796875],"content":"necessary for gravitational collapse and thus star formation.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,430.3081359863281,291,584.7779541015625],"lines":[{"bbox":[51,430.3081359863281,291,442.3130798339844],"spans":[{"bbox":[51.79399108886719,430.3081359863281,291.9722595214844,442.3130798339844],"content":"Hennebelle (2013) studied the formation of non-self-","score":1,"type":"text"}]},{"bbox":[36,441.26715087890625,291,453.2720947265625],"spans":[{"bbox":[36.84999084472656,441.26715087890625,291.97222900390625,453.2720947265625],"content":"gravitating CACs in the ISM. This author focused on finding","score":1,"type":"text"}]},{"bbox":[36,452.22515869140625,291,464.2301025390625],"spans":[{"bbox":[36.84999084472656,452.22515869140625,291.97222900390625,464.2301025390625],"content":"the mechanism responsible for the elongation of CACs and con-","score":1,"type":"text"}]},{"bbox":[36,463.18414306640625,291,475.1890869140625],"spans":[{"bbox":[36.84999084472656,463.18414306640625,291.97222900390625,475.1890869140625],"content":"cluded that the clouds are generated by the stretching induced","score":1,"type":"text"}]},{"bbox":[36,474.14312744140625,291,486.1480712890625],"spans":[{"bbox":[36.84999084472656,474.14312744140625,291.9722900390625,486.1480712890625],"content":"by turbulence because they are aligned with the strain. More-","score":1,"type":"text"}]},{"bbox":[36,485.10211181640625,291,497.1070556640625],"spans":[{"bbox":[36.84999084472656,485.10211181640625,291.97222900390625,497.1070556640625],"content":"over, the author also found that the Lorentz force confines CACs.","score":1,"type":"text"}]},{"bbox":[36,496.06109619140625,291,508.0660400390625],"spans":[{"bbox":[36.84999084472656,496.06109619140625,291.9721984863281,508.0660400390625],"content":"Inoue & Inutsuka (2016), in agreement with the previous work,","score":1,"type":"text"}]},{"bbox":[36,507.02008056640625,291,519.0250244140625],"spans":[{"bbox":[36.84999084472656,507.02008056640625,291.9721374511719,519.0250244140625],"content":"found that the strain is also the origin of the magnetic field align-","score":1,"type":"text"}]},{"bbox":[36,517.9790649414062,291,529.9840087890625],"spans":[{"bbox":[36.84999084472656,517.9790649414062,291.9722595214844,529.9840087890625],"content":"ment with fibers in HI clouds formed in a shock-compressed","score":1,"type":"text"}]},{"bbox":[36,528.9380493164062,291,540.9429931640625],"spans":[{"bbox":[36.84999084472656,528.9380493164062,291.97222900390625,540.9429931640625],"content":"layer using simulations resembling the local bubble. More re-","score":1,"type":"text"}]},{"bbox":[36,539.8970336914062,291,551.9019775390625],"spans":[{"bbox":[36.84999084472656,539.8970336914062,291.97216796875,551.9019775390625],"content":"cently, Gazol & Villagran (2021) studied the morphology of","score":1,"type":"text"}]},{"bbox":[36,550.8560180664062,291,562.8609619140625],"spans":[{"bbox":[36.84999084472656,550.8560180664062,291.97222900390625,562.8609619140625],"content":"CACs in forced magnetized and hydrodynamical simulations,","score":1,"type":"text"}]},{"bbox":[36,561.8140258789062,291,573.8189697265625],"spans":[{"bbox":[36.84999084472656,561.8140258789062,291.9722595214844,573.8189697265625],"content":"finding that the presence of the magnetic field increases the prob-","score":1,"type":"text"}]},{"bbox":[36,572.7730102539062,149.91551208496094,584.7779541015625],"spans":[{"bbox":[36.84999084472656,572.7730102539062,149.91551208496094,584.7779541015625],"content":"ability of filamentary CACs.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,584.0170288085938,291,650.8159790039062],"lines":[{"bbox":[51,584.0170288085938,291,596.02197265625],"spans":[{"bbox":[51.79399108886719,584.0170288085938,291.9723815917969,596.02197265625],"content":"A consequence of the supersonic gas streams forming CACs","score":1,"type":"text"}]},{"bbox":[36,594.9760131835938,291,606.98095703125],"spans":[{"bbox":[36.84999084472656,594.9760131835938,291.9721984863281,606.98095703125],"content":"is the formation of shocks. Shocks form wherever there are","score":1,"type":"text"}]},{"bbox":[36,605.9349975585938,291,617.93994140625],"spans":[{"bbox":[36.84999084472656,605.9349975585938,129.21324157714844,617.93994140625],"content":"supersonic velocity di","score":1,"type":"text"},{"bbox":[129.208984375,607.5883178710938,135.18653869628906,617.5509033203125],"content":"ff","score":1,"type":"text"},{"bbox":[135.1859893798828,605.9349975585938,291.9674377441406,617.93994140625],"content":"erences between two nearby regions.","score":1,"type":"text"}]},{"bbox":[36,616.89404296875,291,628.8989868164062],"spans":[{"bbox":[36.84999084472656,616.89404296875,291.9722595214844,628.8989868164062],"content":"Since the velocity dispersions in the neutral ISM are supersonic,","score":1,"type":"text"}]},{"bbox":[36,627.85302734375,291,639.8579711914062],"spans":[{"bbox":[36.84999084472656,627.85302734375,291.9721984863281,639.8579711914062],"content":"shocks are ubiquitous in the ISM, which, in general, produce","score":1,"type":"text"}]},{"bbox":[36,638.81103515625,205.6861572265625,650.8159790039062],"spans":[{"bbox":[36.84999084472656,638.81103515625,205.6861572265625,650.8159790039062],"content":"density fluctuations of various amplitudes.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,650.0549926757812,291,727.8129272460938],"lines":[{"bbox":[51,650.0549926757812,291,662.0599365234375],"spans":[{"bbox":[51.79399108886719,650.0549926757812,291.9723205566406,662.0599365234375],"content":"The formation of CACs out of the warm neutral medium","score":1,"type":"text"}]},{"bbox":[36,661.0140380859375,291,673.0189819335938],"spans":[{"bbox":[36.84999084472656,661.0140380859375,291.9721984863281,673.0189819335938],"content":"(WNM) in the Galactic ISM requires strong cooling in addition","score":1,"type":"text"}]},{"bbox":[36,671.9730224609375,291,683.9779663085938],"spans":[{"bbox":[36.84999084472656,671.9730224609375,291.9721984863281,683.9779663085938],"content":"to the presence of shocks. Such cooling often causes TI (Field","score":1,"type":"text"}]},{"bbox":[36,682.9320068359375,291,694.9369506835938],"spans":[{"bbox":[36.84999084472656,682.9320068359375,291.97222900390625,694.9369506835938],"content":"1965; Pikel’Ner 1968; Field et al. 1969), and in general produces","score":1,"type":"text"}]},{"bbox":[36,693.8909912109375,291,705.8959350585938],"spans":[{"bbox":[36.84999084472656,693.8909912109375,291.97216796875,705.8959350585938],"content":"large density jumps without the need for very strongly super-","score":1,"type":"text"}]},{"bbox":[36,704.8499755859375,291,716.8549194335938],"spans":[{"bbox":[36.84999084472656,704.8499755859375,291.9722595214844,716.8549194335938],"content":"sonic flows (Vázquez-Semadeni et al. 1996; Vázquez-Semadeni","score":1,"type":"text"}]},{"bbox":[36,715.8079833984375,84.44132232666016,727.8129272460938],"spans":[{"bbox":[36.84999084472656,715.8079833984375,84.44132232666016,727.8129272460938],"content":"et al. 2006).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,727.052001953125,291,760.9749755859375],"lines":[{"bbox":[51,727.052001953125,291,739.0569458007812],"spans":[{"bbox":[51.79399108886719,727.052001953125,291.9722595214844,739.0569458007812],"content":"In the presence of supersonic flows and cooling, simulations","score":1,"type":"text"}]},{"bbox":[36,738.010986328125,291,750.0159301757812],"spans":[{"bbox":[36.84999084472656,738.010986328125,291.9722595214844,750.0159301757812],"content":"show that shocked unstable gas, in transition between the WNM","score":1,"type":"text"}]},{"bbox":[36,748.9700317382812,291,760.9749755859375],"spans":[{"bbox":[36.84999084472656,748.9700317382812,291.97222900390625,760.9749755859375],"content":"and the CNM, lies between the shock front and the condensation","score":1,"type":"text"}]},{"bbox":[303,56.5660400390625,559,68.57097625732422],"spans":[{"bbox":[303.3070068359375,56.5660400390625,558.4293212890625,68.57097625732422],"content":"layer and that the separation among them is due to the cooling","score":1,"type":"text"}]},{"bbox":[303,67.5250244140625,559,79.52996063232422],"spans":[{"bbox":[303.3070068359375,67.5250244140625,558.4293823242188,79.52996063232422],"content":"time necessary to produce the condensation resulting from TI.","score":1,"type":"text"}]},{"bbox":[303,78.4840087890625,453.5331115722656,90.48894500732422],"spans":[{"bbox":[303.3070068359375,78.4840087890625,453.5331115722656,90.48894500732422],"content":"(e.g., Vázquez-Semadeni et al. 2006).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,56.5660400390625,559,90.48894500732422],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,90.93798828125,559,214.0258026123047],"lines":[{"bbox":[318,90.93798828125,559,102.94292449951172],"spans":[{"bbox":[318.2510070800781,90.93798828125,558.429443359375,102.94292449951172],"content":"In this paper, we focus on studying the alignment of mag-","score":1,"type":"text"}]},{"bbox":[303,101.89599609375,559,113.90093231201172],"spans":[{"bbox":[303.3070068359375,101.89599609375,558.4291381835938,113.90093231201172],"content":"netic fields and filamentary CACs by following the simultane-","score":1,"type":"text"}]},{"bbox":[303,112.85498046875,559,124.85991668701172],"spans":[{"bbox":[303.3070068359375,112.85498046875,558.4291381835938,124.85991668701172],"content":"ous evolution of magnetic field lines. This approach allows us to","score":1,"type":"text"}]},{"bbox":[303,123.81396484375,559,135.8188934326172],"spans":[{"bbox":[303.3070068359375,123.81396484375,558.4293212890625,135.8188934326172],"content":"understand the physical processes responsible and the role they","score":1,"type":"text"}]},{"bbox":[303,134.77294921875,559,146.7778778076172],"spans":[{"bbox":[303.3070068359375,134.77294921875,556.7854614257812,146.7778778076172],"content":"play in the alignment of magnetic fields with density structures.","score":1,"type":"text"}]},{"bbox":[318,147.2269287109375,559,159.2318572998047],"spans":[{"bbox":[318.2510070800781,147.2269287109375,558.4293823242188,159.2318572998047],"content":"The paper is organized as follows. We describe the simula-","score":1,"type":"text"}]},{"bbox":[303,158.1859130859375,559,170.1908416748047],"spans":[{"bbox":[303.3070068359375,158.1859130859375,558.4291381835938,170.1908416748047],"content":"tions used in this article in Section 2. In section 4, we show and","score":1,"type":"text"}]},{"bbox":[303,169.1439208984375,559,181.1488494873047],"spans":[{"bbox":[303.3070068359375,169.1439208984375,558.42919921875,181.1488494873047],"content":"explain the evolution of the 3D magnetic field lines that yield the","score":1,"type":"text"}]},{"bbox":[303,180.1029052734375,559,192.1078338623047],"spans":[{"bbox":[303.3070068359375,180.1029052734375,558.42919921875,192.1078338623047],"content":"alignment of CACs with their local magnetic field. We discuss","score":1,"type":"text"}]},{"bbox":[303,191.0618896484375,559,203.0668182373047],"spans":[{"bbox":[303.3070068359375,191.0618896484375,558.42919921875,203.0668182373047],"content":"the implications of our results in Section 5. Finally, in section 6,","score":1,"type":"text"}]},{"bbox":[303,202.0208740234375,469.32379150390625,214.0258026123047],"spans":[{"bbox":[303.3070068359375,202.0208740234375,469.32379150390625,214.0258026123047],"content":"we present the summary and conclusions.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,239,465,250],"lines":[{"bbox":[303.3070068359375,238.87228393554688,465.1552734375,251.8889617919922],"spans":[{"bbox":[303.3070068359375,238.87228393554688,465.1552734375,251.8889617919922],"content":"2. Cold atomic cloud simulations","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,258.35089111328125,559,511.4515380859375],"lines":[{"bbox":[303,258.35089111328125,559,270.3558349609375],"spans":[{"bbox":[303.3070068359375,258.35089111328125,558.4293212890625,270.3558349609375],"content":"We have performed 2D and 3D numerical simulations of cold","score":1,"type":"text"}]},{"bbox":[303,269.30987548828125,559,281.3148193359375],"spans":[{"bbox":[303.3070068359375,269.30987548828125,558.4291381835938,281.3148193359375],"content":"atomic clouds formed by the collision of warm atomic gas flow-","score":1,"type":"text"}]},{"bbox":[303,280.26885986328125,559,292.2738037109375],"spans":[{"bbox":[303.3070068359375,280.26885986328125,355.7401123046875,292.2738037109375],"content":"ing along the","score":1,"type":"text"},{"bbox":[357,282,364,290],"content":"x","score":0.77,"type":"inline_equation"},{"bbox":[363.38702392578125,280.26885986328125,558.4248657226562,292.2738037109375],"content":"-axis, and colliding at the center of the computa-","score":1,"type":"text"}]},{"bbox":[303,291.22784423828125,559,303.2327880859375],"spans":[{"bbox":[303.3070068359375,291.22784423828125,558.4293212890625,303.2327880859375],"content":"tional domain. The simulations were performed using the adap-","score":1,"type":"text"}]},{"bbox":[303,302.18682861328125,559,314.1917724609375],"spans":[{"bbox":[303.3070068359375,302.18682861328125,455.0971984863281,314.1917724609375],"content":"tive mesh refinement (AMR) code F","score":1,"type":"text"},{"bbox":[455.1000061035156,303.3537292480469,472.8832702636719,313.3163146972656],"content":"lash","score":1,"type":"text"},{"bbox":[472.8832702636719,302.18682861328125,558.4229736328125,314.1917724609375],"content":" version 4.5 (Fryxell","score":1,"type":"text"}]},{"bbox":[303,313.14581298828125,559,325.1507568359375],"spans":[{"bbox":[303.3070068359375,313.14581298828125,558.4291381835938,325.1507568359375],"content":"et al. 2000; Dubey et al. 2008; Dubey et al. 2009), and the ideal","score":1,"type":"text"}]},{"bbox":[303,324.10479736328125,559,336.1097412109375],"spans":[{"bbox":[303.3070068359375,324.10479736328125,558.4292602539062,336.1097412109375],"content":"MHD multi-wave HLL-type solver (Waagan et al. 2011). Since","score":1,"type":"text"}]},{"bbox":[303,335.06280517578125,559,347.0677490234375],"spans":[{"bbox":[303.3070068359375,335.06280517578125,558.42919921875,347.0677490234375],"content":"our goal is to study the alignment of the magnetic field with","score":1,"type":"text"}]},{"bbox":[303,346.02178955078125,559,358.0267333984375],"spans":[{"bbox":[303.3070068359375,346.02178955078125,558.42919921875,358.0267333984375],"content":"CACs before self-gravity becomes dominant, neither self-gravity","score":1,"type":"text"}]},{"bbox":[303,356.98077392578125,559,368.9857177734375],"spans":[{"bbox":[303.3070068359375,356.98077392578125,558.428955078125,368.9857177734375],"content":"nor any external gravitational potential is included in these sim-","score":1,"type":"text"}]},{"bbox":[303,367.93975830078125,559,379.9447021484375],"spans":[{"bbox":[303.3070068359375,367.93975830078125,558.4293212890625,379.9447021484375],"content":"ulations. These simulations consider inflow boundary condi-","score":1,"type":"text"}]},{"bbox":[303,378.89874267578125,559,390.9036865234375],"spans":[{"bbox":[303.3070068359375,378.89874267578125,347.979248046875,390.9036865234375],"content":"tions in the","score":1,"type":"text"},{"bbox":[349,380,357,389],"content":"x","score":0.76,"type":"inline_equation"},{"bbox":[358.3030090332031,378.89874267578125,558.421630859375,390.9036865234375],"content":"direction, and periodic boundary conditions in the","score":1,"type":"text"}]},{"bbox":[303,389.85772705078125,559,401.8626708984375],"spans":[{"bbox":[303.3070068359375,389.85772705078125,558.4290161132812,401.8626708984375],"content":"other directions. The initial conditions for both kinds of simu-","score":1,"type":"text"}]},{"bbox":[303,400.81671142578125,559,412.8216552734375],"spans":[{"bbox":[303.3070068359375,400.81671142578125,558.42919921875,412.8216552734375],"content":"lations consist of gas in thermal equilibrium with temperature","score":1,"type":"text"}]},{"bbox":[303,407.7427062988281,559,424],"spans":[{"bbox":[303,412,371,423],"content":"T_{0}=5006.25\\,^{\\circ}\\mathrm{K}","score":0.91,"type":"inline_equation"},{"bbox":[370.3069763183594,411.77569580078125,468.6976013183594,423.7806396484375],"content":", implying a sound speed","score":1,"type":"text"},{"bbox":[468.6976013183594,411.77569580078125,470.9539794921875,423.6710510253906],"content":" ","score":1,"type":"text"},{"bbox":[470,411,544,424],"content":"c_{\\mathrm{s},0}=7.36~\\mathrm{km}\\,\\mathrm{s}^{-1}","score":0.91,"type":"inline_equation"},{"bbox":[544.057861328125,407.7427062988281,546.8089599609375,423.7806396484375],"content":" ","score":1,"type":"text"},{"bbox":[546.8089599609375,411.77569580078125,558.4254150390625,423.7806396484375],"content":"for","score":1,"type":"text"}]},{"bbox":[303,422.73468017578125,559,434.7396240234375],"spans":[{"bbox":[303.30694580078125,422.73468017578125,397.134765625,434.7396240234375],"content":"a mean particle mass of ","score":1,"type":"text"},{"bbox":[397,423,427,433],"content":"1.27m_{\\mathrm{H}}","score":0.89,"type":"inline_equation"},{"bbox":[427.2909240722656,422.73468017578125,558.4287719726562,434.7396240234375],"content":", and an atomic hydrogen number","score":1,"type":"text"}]},{"bbox":[303,433,559,445.6986083984375],"spans":[{"bbox":[303.3069152832031,433.69366455078125,332.0888366699219,445.6986083984375],"content":"density","score":1,"type":"text"},{"bbox":[333,433,389,445],"content":"\\dot{n}_{H,0}=1\\,\\mathrm{cm}^{-3}","score":0.92,"type":"inline_equation"},{"bbox":[389.3669128417969,433.69366455078125,558.4223022460938,445.6986083984375],"content":". For the 3D simulation, the box size of the","score":1,"type":"text"}]},{"bbox":[303,444.65167236328125,559,456.6566162109375],"spans":[{"bbox":[303.3069152832031,444.65167236328125,354.2356872558594,456.6566162109375],"content":"simulation is","score":1,"type":"text"},{"bbox":[355,445,385,455],"content":"L=64","score":0.68,"type":"inline_equation"},{"bbox":[385.7642517089844,444.65167236328125,508.0650329589844,456.6566162109375],"content":"pc and the highest resolution is","score":1,"type":"text"},{"bbox":[509,445,557,455],"content":"0.03125~\\mathrm{pc}","score":0.32,"type":"inline_equation"},{"bbox":[555.9354858398438,444.65167236328125,558.4261474609375,456.6566162109375],"content":".","score":1,"type":"text"}]},{"bbox":[303,455.61065673828125,559,467.6156005859375],"spans":[{"bbox":[303.3069152832031,455.61065673828125,441.99615478515625,467.6156005859375],"content":"The gas inside a cylinder of radius","score":1,"type":"text"},{"bbox":[443,456,485,467],"content":"R=16\\,\\mathrm{{pc}}","score":0.88,"type":"inline_equation"},{"bbox":[484.7799377441406,455.61065673828125,514.9367065429688,467.6156005859375],"content":", length","score":1,"type":"text"},{"bbox":[514.9367065429688,457.0379333496094,517.7078857421875,467.0005187988281],"content":" ","score":1,"type":"text"},{"bbox":[517,456,556,467],"content":"\\ell=64\\,\\mathrm{pc}","score":0.85,"type":"inline_equation"},{"bbox":[555.93701171875,455.61065673828125,558.4276733398438,467.6156005859375],"content":",","score":1,"type":"text"}]},{"bbox":[303,466.56964111328125,559,478.5745849609375],"spans":[{"bbox":[303.306884765625,466.56964111328125,558.428955078125,478.5745849609375],"content":"and centered in the middle of the computational domain, has a","score":1,"type":"text"}]},{"bbox":[303,473.4956359863281,535.7941284179688,489.5335693359375],"spans":[{"bbox":[303.306884765625,477.52862548828125,335.25689697265625,489.5335693359375],"content":"velocity","score":1,"type":"text"},{"bbox":[335.25689697265625,477.52862548828125,337.9588928222656,489.4239807128906],"content":" ","score":1,"type":"text"},{"bbox":[337,477,412,489],"content":"u_{0}=\\pm14.7\\,\\mathrm{km\\,s^{-1}}","score":0.91,"type":"inline_equation"},{"bbox":[412.0307922363281,473.4956359863281,415.2298889160156,489.5335693359375],"content":" ","score":1,"type":"text"},{"bbox":[415.2298889160156,477.52862548828125,452.24090576171875,489.5335693359375],"content":"along the","score":1,"type":"text"},{"bbox":[452.24090576171875,477.52862548828125,455.4429016113281,489.4239807128906],"content":" ","score":1,"type":"text"},{"bbox":[454,479,461,487],"content":"x","score":0.75,"type":"inline_equation"},{"bbox":[459.8663024902344,477.52862548828125,535.7941284179688,489.5335693359375],"content":" direction, with the","score":1,"type":"text"}]},{"bbox":[303,488.48760986328125,559,500.4925537109375],"spans":[{"bbox":[303.306884765625,488.48760986328125,534.598388671875,500.4925537109375],"content":"tive and negative values applying to the left and right of the","score":1,"type":"text"},{"bbox":[534.598388671875,488.48760986328125,541.5432739257812,500.3829650878906],"content":" x","score":1,"type":"text"},{"bbox":[536,489,559,498],"content":"x=0","score":0.9,"type":"inline_equation"}]},{"bbox":[303,499.44659423828125,379.45098876953125,511.4515380859375],"spans":[{"bbox":[303.3068542480469,499.44659423828125,379.45098876953125,511.4515380859375],"content":"plane, respectively.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,511.89959716796875,559,692.2505493164062],"lines":[{"bbox":[318,511.89959716796875,559,523.904541015625],"spans":[{"bbox":[318.2508544921875,511.89959716796875,479.0671081542969,523.904541015625],"content":"For the 2D simulation, the box size is","score":1,"type":"text"},{"bbox":[479.0671081542969,511.89959716796875,483.4498596191406,523.794921875],"content":" ","score":1,"type":"text"},{"bbox":[482,512,528,523],"content":"L~=~20\\,\\mathrm{pc}","score":0.86,"type":"inline_equation"},{"bbox":[528.0169677734375,511.89959716796875,558.4227905273438,523.904541015625],"content":" with a","score":1,"type":"text"}]},{"bbox":[303,522.8585815429688,559,534.863525390625],"spans":[{"bbox":[303.306884765625,522.8585815429688,558.4290771484375,534.863525390625],"content":"uniform grid and 512 cells per dimension, resulting in a reso-","score":1,"type":"text"}]},{"bbox":[303,533.8175659179688,559,545.822509765625],"spans":[{"bbox":[303.306884765625,533.8175659179688,446.2601013183594,545.822509765625],"content":"lution of 0.039 pc, and the main di","score":1,"type":"text"},{"bbox":[446.2598876953125,535.4708862304688,452.2374572753906,545.4334716796875],"content":"ff","score":1,"type":"text"},{"bbox":[452.2378845214844,533.8175659179688,558.42919921875,545.822509765625],"content":"erence is that the collision","score":1,"type":"text"}]},{"bbox":[303,544.7765502929688,559,556.781494140625],"spans":[{"bbox":[303.306884765625,544.7765502929688,558.4290771484375,556.781494140625],"content":"front in this simulation has a sinusoidal shape, in order to trigger","score":1,"type":"text"}]},{"bbox":[303,555.7355346679688,559,567.740478515625],"spans":[{"bbox":[303.306884765625,555.7355346679688,558.428955078125,567.740478515625],"content":"the nonlinear thin-shell instability (NTSI) described in Vishniac","score":1,"type":"text"}]},{"bbox":[303,566.6945190429688,559,578.699462890625],"spans":[{"bbox":[303.306884765625,566.6945190429688,558.4290771484375,578.699462890625],"content":"(1994). This interface is accomplished by requiring that simula-","score":1,"type":"text"}]},{"bbox":[303,577,559,592],"spans":[{"bbox":[303.306884765625,579.3465576171875,365.0251159667969,591.3515014648438],"content":"tion points with","score":1,"type":"text"},{"bbox":[366,577,429,591],"content":"\\begin{array}{r}{x<3.0\\sin(\\frac{8\\pi y}{20})}\\end{array}","score":0.91,"type":"inline_equation"},{"bbox":[425.6000061035156,579.3485717773438,456.4342346191406,591.353515625],"content":") pc and","score":1,"type":"text"},{"bbox":[457,578,521,592],"content":"\\begin{array}{r}{x>3.0\\sin(\\frac{8\\pi y}{20})}\\end{array}","score":0.91,"type":"inline_equation"},{"bbox":[517.0180053710938,579.3485717773438,558.4226684570312,591.353515625],"content":") pc have a","score":1,"type":"text"}]},{"bbox":[415.79901123046875,585.5472412109375,422.7728271484375,593.95068359375],"spans":[{"bbox":[415.79901123046875,585.5472412109375,422.7728271484375,593.95068359375],"content":"20","score":1,"type":"text"}]},{"bbox":[303,588.5415649414062,559,604.5785522460938],"spans":[{"bbox":[303.3070068359375,592.5736083984375,335.25701904296875,604.5785522460938],"content":"velocity","score":1,"type":"text"},{"bbox":[335.25701904296875,592.5736083984375,338.02301025390625,604.4689331054688],"content":" ","score":1,"type":"text"},{"bbox":[337,592,413,604],"content":"u_{0}=\\pm14.7\\,\\mathrm{km\\,s^{-1}}","score":0.91,"type":"inline_equation"},{"bbox":[412.3329162597656,588.5415649414062,415.5970153808594,604.5785522460938],"content":" ","score":1,"type":"text"},{"bbox":[415.5970153808594,592.5736083984375,558.4208374023438,604.5785522460938],"content":"respectively. In addition, for the 3D","score":1,"type":"text"}]},{"bbox":[303,603.5325927734375,559,615.5375366210938],"spans":[{"bbox":[303.3070068359375,603.5325927734375,558.4293823242188,615.5375366210938],"content":"simulation, we add to each velocity component a pseudo-random","score":1,"type":"text"}]},{"bbox":[303,614.4915771484375,559,626.4965209960938],"spans":[{"bbox":[303.3070068359375,614.4915771484375,558.4290771484375,626.4965209960938],"content":"velocity fluctuation obtained from a Gaussian distribution with","score":1,"type":"text"}]},{"bbox":[303,625,559,637.4555053710938],"spans":[{"bbox":[303.3070068359375,625.4505615234375,464.5815124511719,637.4555053710938],"content":"zero mean and a standard deviation of ","score":1,"type":"text"},{"bbox":[463,625,511,636],"content":"2.85\\,\\mathrm{km}\\;\\mathrm{s}^{-1}","score":0.9,"type":"inline_equation"},{"bbox":[511.197021484375,625.4505615234375,558.4297485351562,637.4555053710938],"content":". These ini-","score":1,"type":"text"}]},{"bbox":[303,636,559,648.4144897460938],"spans":[{"bbox":[303.3070068359375,636.4095458984375,499.58001708984375,648.4144897460938],"content":"tial conditions imply an initial Mach number of","score":1,"type":"text"},{"bbox":[499.58001708984375,636.4095458984375,503.6050109863281,648.3048706054688],"content":" ","score":1,"type":"text"},{"bbox":[502,636,544,647],"content":"M_{\\mathrm{s}}~\\approx~2.0","score":0.91,"type":"inline_equation"},{"bbox":[543.2803344726562,636.4095458984375,558.4235229492188,648.4144897460938],"content":" for","score":1,"type":"text"}]},{"bbox":[303,647.3685913085938,559,659.37353515625],"spans":[{"bbox":[303.3070068359375,647.3685913085938,558.4291381835938,659.37353515625],"content":"both the 2D and 3D simulations. Furthermore, both simulations","score":1,"type":"text"}]},{"bbox":[303,658.3275756835938,559,670.33251953125],"spans":[{"bbox":[303.3070068359375,658.3275756835938,558.4292602539062,670.33251953125],"content":"incorporate the multi-phase nature of the interstellar medium by","score":1,"type":"text"}]},{"bbox":[303,669.2865600585938,559,681.29150390625],"spans":[{"bbox":[303.3070068359375,669.2865600585938,558.4290771484375,681.29150390625],"content":"including the net cooling function provided in Koyama & Inut-","score":1,"type":"text"}]},{"bbox":[303,680,357.09564208984375,692.2505493164062],"spans":[{"bbox":[303.3070068359375,680.24560546875,324.0591125488281,692.2505493164062],"content":"suka ","score":1,"type":"text"},{"bbox":[323,680,354,692],"content":"(2\\breve{00}2)^{1}","score":0.48,"type":"inline_equation"},{"bbox":[354.60498046875,680.24560546875,357.09564208984375,692.2505493164062],"content":".","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,692.6986083984375,559,726.6215209960938],"lines":[{"bbox":[318,692.6986083984375,559,704.7035522460938],"spans":[{"bbox":[318.2509765625,692.6986083984375,434.0362854003906,704.7035522460938],"content":"The initial magnetic field is","score":1,"type":"text"},{"bbox":[434.0362854003906,692.6986083984375,438.43096923828125,704.5939331054688],"content":" ","score":1,"type":"text"},{"bbox":[437,693,486,704],"content":"\\mathit{B}_{0}~=~3\\,\\mu\\mathrm{G}","score":0.91,"type":"inline_equation"},{"bbox":[485.1809387207031,692.6986083984375,527.5718383789062,704.7035522460938],"content":" along the","score":1,"type":"text"},{"bbox":[527.5718383789062,692.6986083984375,532.1139526367188,704.5939331054688],"content":" ","score":1,"type":"text"},{"bbox":[530,695,537,703],"content":"x","score":0.74,"type":"inline_equation"},{"bbox":[536.5669555664062,692.6986083984375,558.4249267578125,704.7035522460938],"content":"-axis,","score":1,"type":"text"}]},{"bbox":[303,699.6245727539062,559,715.6625366210938],"spans":[{"bbox":[303.30694580078125,703.6575927734375,452.0683288574219,715.6625366210938],"content":"implying an initial Alfvén speed of ","score":1,"type":"text"},{"bbox":[451,703,499,714],"content":"6.54\\,\\mathrm{km}\\,\\mathrm{s}^{-1}","score":0.86,"type":"inline_equation"},{"bbox":[498.1858825683594,699.6245727539062,502.261962890625,715.6625366210938],"content":" ","score":1,"type":"text"},{"bbox":[502.261962890625,703.6575927734375,558.4212036132812,715.6625366210938],"content":"and an inflow","score":1,"type":"text"}]},{"bbox":[303,714.6165771484375,559,726.6215209960938],"spans":[{"bbox":[303.30694580078125,714.6165771484375,410.27532958984375,726.6215209960938],"content":"Alfvénic Mach number of","score":1,"type":"text"},{"bbox":[410.27532958984375,714.6165771484375,414.33294677734375,726.5119018554688],"content":" ","score":1,"type":"text"},{"bbox":[413,715,465,726],"content":"M_{\\mathrm{A}}~\\approx~2.25","score":0.89,"type":"inline_equation"},{"bbox":[455.0389404296875,714.6165771484375,558.4209594726562,726.6215209960938],"content":"25. The magnetization of","score":1,"type":"text"}]},{"bbox":[35,56.56658935546875,190.52383422851562,68.57152557373047],"spans":[{"bbox":[36.84999084472656,56.56658935546875,172.1819305419922,68.57152557373047],"content":"this simulation results in a plasma","cross_page":true,"score":1,"type":"text"},{"bbox":[172,57,180,68],"content":"\\beta","cross_page":true,"score":0.86,"type":"inline_equation"},{"bbox":[179.73500061035156,56.56658935546875,190.52383422851562,68.57152557373047],"content":" of","cross_page":true,"score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[36,700,292,760],"lines":[{"bbox":[38.84000015258789,696.5070190429688,291.97021484375,710.5665283203125],"spans":[{"bbox":[38.84000015258789,699.2686767578125,41.828800201416016,706.4716796875],"content":"2","score":1,"type":"text"},{"bbox":[41.828800201416016,696.5070190429688,291.97021484375,710.5665283203125],"content":" This and the other three-dimensional figures were done with the help","score":1,"type":"text"}]},{"bbox":[36.849998474121094,709.7240600585938,179.613037109375,720.528564453125],"spans":[{"bbox":[36.849998474121094,709.7240600585938,179.613037109375,720.528564453125],"content":"of Pyvista (Sullivan & Kaszynski 2019)","score":1,"type":"text"}]},{"bbox":[38.84000015258789,716.748046875,291.9703063964844,730.8075561523438],"spans":[{"bbox":[38.84000015258789,719.5097045898438,41.828800201416016,726.7127075195312],"content":"3","score":1,"type":"text"},{"bbox":[41.828800201416016,716.748046875,291.9703063964844,730.8075561523438],"content":" Note that in this study, we focus in simulations and do not explore","score":1,"type":"text"}]},{"bbox":[36.849998474121094,729.9660034179688,291.96661376953125,740.7705078125],"spans":[{"bbox":[36.849998474121094,729.9660034179688,54.388282775878906,740.7705078125],"content":"the e","score":1,"type":"text"},{"bbox":[54.391998291015625,731.4540405273438,59.7718391418457,740.42041015625],"content":"ff","score":1,"type":"text"},{"bbox":[59.77199935913086,729.9660034179688,141.06137084960938,740.7705078125],"content":"ects of observational e","score":1,"type":"text"},{"bbox":[141.06199645996094,731.4540405273438,146.44183349609375,740.42041015625],"content":"ff","score":1,"type":"text"},{"bbox":[146.44200134277344,729.9660034179688,291.96661376953125,740.7705078125],"content":"ects like the constraint of only detecting","score":1,"type":"text"}]},{"bbox":[36.849998474121094,739.9280395507812,291.970947265625,750.7325439453125],"spans":[{"bbox":[36.849998474121094,739.9280395507812,291.970947265625,750.7325439453125],"content":"the plane of the sky magnetic field and the relative orientation between","score":1,"type":"text"}]},{"bbox":[36.849998474121094,749.8910522460938,133.57952880859375,760.695556640625],"spans":[{"bbox":[36.849998474121094,749.8910522460938,133.57952880859375,760.695556640625],"content":"the observer and the cloud.","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[174,33,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[456,771,558,779],"lines":[{"bbox":[455.1949157714844,769.8156127929688,558.4251098632812,780.6201171875],"spans":[{"bbox":[455.1949157714844,769.8156127929688,558.4251098632812,780.6201171875],"content":"Article number, page 3 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":2,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,56.56658935546875,190.52383422851562,68.57152557373047],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[34,75,136,106],"lines":[{"bbox":[34,75,136,106],"spans":[{"bbox":[34,75,136,106],"content":"\\beta\\equiv{\\frac{P_{\\mathrm{th}}}{P_{\\mathrm{mag}}}}={\\frac{2c_{\\mathrm{s}}^{2}}{u_{\\mathrm{A}}^{2}}}=2.54.","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,113.78759765625,291,158.6685028076172],"lines":[{"bbox":[35,113.78759765625,291,125.79253387451172],"spans":[{"bbox":[36.84999084472656,113.78759765625,74.61820220947266,125.79253387451172],"content":"Note that","score":1,"type":"text"},{"bbox":[76,114,84,125],"content":"\\beta","score":0.85,"type":"inline_equation"},{"bbox":[83.12799072265625,113.78759765625,291.9689636230469,125.79253387451172],"content":" is formally defined as the ratio of the thermal and","score":1,"type":"text"}]},{"bbox":[35,124.74560546875,291,136.7505340576172],"spans":[{"bbox":[36.8499870300293,124.74560546875,291.9721984863281,136.7505340576172],"content":"magnetic pressures, which introduces the factor of 2 in the nu-","score":1,"type":"text"}]},{"bbox":[35,135.70458984375,291,147.7095184326172],"spans":[{"bbox":[36.8499870300293,135.70458984375,291.97222900390625,147.7095184326172],"content":"merator. However, this additional factor is often omitted in the","score":1,"type":"text"}]},{"bbox":[35,146.66357421875,75.30561828613281,158.6685028076172],"spans":[{"bbox":[36.8499870300293,146.66357421875,75.30561828613281,158.6685028076172],"content":"literature.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,158.00054931640625,291,290.5533447265625],"lines":[{"bbox":[51,158.00054931640625,291,170.00547790527344],"spans":[{"bbox":[51.79398727416992,158.00054931640625,291.9723205566406,170.00547790527344],"content":"Therefore, the initial condition of this simulation is super-","score":1,"type":"text"}]},{"bbox":[35,168.95953369140625,291,180.96446228027344],"spans":[{"bbox":[36.8499870300293,168.95953369140625,291.9721984863281,180.96446228027344],"content":"sonic, superalfvénic, and with intermediate magnetization. In","score":1,"type":"text"}]},{"bbox":[35,179.91851806640625,291,191.92344665527344],"spans":[{"bbox":[36.8499870300293,179.91851806640625,291.9721984863281,191.92344665527344],"content":"Figure 1, we show face-on and edge-on column densities of","score":1,"type":"text"}]},{"bbox":[35,190.87750244140625,291,202.88243103027344],"spans":[{"bbox":[36.8499870300293,190.87750244140625,291.9721984863281,202.88243103027344],"content":"the resulting evolution after 5 Myr. In the following discussion,","score":1,"type":"text"}]},{"bbox":[99.21585083007812,201.83648681640625,291,213.84141540527344],"spans":[{"bbox":[99.21585083007812,201.83648681640625,138.69764709472656,213.84141540527344],"content":" white re","score":1,"type":"text"},{"bbox":[194.63763427734375,201.83648681640625,202.38853454589844,213.84141540527344],"content":"in","score":1,"type":"text"},{"bbox":[202.38853454589844,201.83648681640625,207.69198608398438,213.73182678222656],"content":" ","score":1,"type":"text"},{"bbox":[206,202,274,213],"content":"x~\\in~[-3.0,3.0]","score":0.89,"type":"inline_equation"},{"bbox":[273.60980224609375,201.83648681640625,291.97088623046875,213.84141540527344],"content":" pc,","score":1,"type":"text"}]},{"bbox":[35,212.79547119140625,291,231.40560913085938],"spans":[{"bbox":[35,213,100,224],"content":"y~\\in~[-1.0,3.0]","score":0.88,"type":"inline_equation"},{"bbox":[41.27336883544922,213.37330627441406,52.29393005371094,231.40560913085938],"content":" ∈","score":1,"type":"text"},{"bbox":[61.29197692871094,213.37330627441406,67.62818908691406,231.40560913085938],"content":"−","score":1,"type":"text"},{"bbox":[91.7039794921875,212.79547119140625,136.07737731933594,224.80039978027344],"content":"0] pc, and","score":1,"type":"text"},{"bbox":[138,213,196,224],"content":"z~\\in~[2.3,6.3]","score":0.85,"type":"inline_equation"},{"bbox":[144.01243591308594,213.37330627441406,155.03292846679688,231.40560913085938],"content":" ∈","score":1,"type":"text"},{"bbox":[188.1069793701172,212.79547119140625,291.967041015625,224.80039978027344],"content":"3] pc will be referred to","score":1,"type":"text"}]},{"bbox":[35,223.75445556640625,291,235.75938415527344],"spans":[{"bbox":[36.8499755859375,223.75445556640625,291.9722595214844,235.75938415527344],"content":"as R1, whose three-dimensional density structure and magnetic","score":1,"type":"text"}]},{"bbox":[35,231.096435546875,291,246.71836853027344],"spans":[{"bbox":[36.8499755859375,234.71343994140625,168.80458068847656,246.71836853027344],"content":"field lines are shown in Figure 2,","score":1,"type":"text"},{"bbox":[172.2898712158203,231.096435546875,175.49798583984375,246.71836853027344],"content":" ","score":1,"type":"text"},{"bbox":[175.49798583984375,234.71343994140625,291.970703125,246.71836853027344],"content":"in which the shock fronts are","score":1,"type":"text"}]},{"bbox":[35,245.67242431640625,291,257.6773681640625],"spans":[{"bbox":[36.84999084472656,245.67242431640625,291.9723205566406,257.6773681640625],"content":"visible as shaded vertical sheets. We note that the magnetic field","score":1,"type":"text"}]},{"bbox":[35,256.63140869140625,291,268.6363525390625],"spans":[{"bbox":[36.84999084472656,256.63140869140625,291.9721984863281,268.6363525390625],"content":"lines start to bend at the shock fronts. Additionally, the magnetic","score":1,"type":"text"}]},{"bbox":[35,267.58941650390625,291,279.5943603515625],"spans":[{"bbox":[36.84999084472656,267.58941650390625,291.97222900390625,279.5943603515625],"content":"field has become almost perpendicular to its original orientation","score":1,"type":"text"}]},{"bbox":[35,278.54840087890625,135.72882080078125,290.5533447265625],"spans":[{"bbox":[36.84999084472656,278.54840087890625,40.167537689208984,290.5533447265625],"content":"(","score":1,"type":"text"},{"bbox":[39,280,45,288],"content":"\\cdot_{x}","score":0.62,"type":"inline_equation"},{"bbox":[45.11899185180664,278.54840087890625,135.72882080078125,290.5533447265625],"content":"-axis) in some regions.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,310,259,334],"lines":[{"bbox":[36.84999084472656,309.8177795410156,258.9005432128906,322.83447265625],"spans":[{"bbox":[36.84999084472656,309.8177795410156,258.9005432128906,322.83447265625],"content":"3. Alignment of magnetic field lines with cold","score":1,"type":"text"}]},{"bbox":[48.81098937988281,322.769775390625,118.28856658935547,335.78643798828125],"spans":[{"bbox":[48.81098937988281,322.769775390625,118.28856658935547,335.78643798828125],"content":"atomic clouds","score":1,"type":"text"}]}],"type":"title"},{"bbox":[35,341.13238525390625,291,550.3970947265625],"lines":[{"bbox":[35,341.13238525390625,291,353.1373291015625],"spans":[{"bbox":[36.84999084472656,341.13238525390625,274.866455078125,353.1373291015625],"content":"To quantify the alignment of magnetic field lines, we use the","score":1,"type":"text"},{"bbox":[274.866455078125,341.13238525390625,291.9688720703125,353.0277404785156],"content":" his-","score":1,"type":"text"}]},{"bbox":[35,352.09136962890625,291,364.0963134765625],"spans":[{"bbox":[36.84999084472656,352.09136962890625,159.99766540527344,363.9867248535156],"content":"togram of relative orientations","score":1,"type":"text"},{"bbox":[159.99766540527344,352.09136962890625,291.96636962890625,364.0963134765625],"content":" (HRO; Soler et al. 2013), which","score":1,"type":"text"}]},{"bbox":[35,363,291,375.0552978515625],"spans":[{"bbox":[36.849998474121094,363.05035400390625,203.5740966796875,375.0552978515625],"content":"is a statistical tool to measure the angle ","score":1,"type":"text"},{"bbox":[202,363,216,375],"content":"(\\phi)","score":0.77,"type":"inline_equation"},{"bbox":[215.69354248046875,363.05035400390625,291.96722412109375,375.0552978515625],"content":" between the mag-","score":1,"type":"text"}]},{"bbox":[35,374.00933837890625,291,386.0142822265625],"spans":[{"bbox":[36.84999084472656,374.00933837890625,291.9722900390625,386.0142822265625],"content":"netic field and the density gradient of structures in the ISM, over","score":1,"type":"text"}]},{"bbox":[35,381.351318359375,291,396.9732666015625],"spans":[{"bbox":[36.84999084472656,384.96832275390625,136.6553192138672,396.9732666015625],"content":"number density intervals","score":1,"type":"text"},{"bbox":[136.65499877929688,384.11297607421875,140.1418914794922,392.5163879394531],"content":"3","score":1,"type":"text"},{"bbox":[140.1418914794922,381.351318359375,143.90199279785156,396.9732666015625],"content":" ","score":1,"type":"text"},{"bbox":[143.90199279785156,384.96832275390625,291.9661560058594,396.9732666015625],"content":"relevant to the multi-phase nature of","score":1,"type":"text"}]},{"bbox":[35,395.92633056640625,291,407.9312744140625],"spans":[{"bbox":[36.84999084472656,395.92633056640625,291.9722595214844,407.9312744140625],"content":"CACs. These intervals comprise the densities of the post-shock","score":1,"type":"text"}]},{"bbox":[35,406,291,418.8902587890625],"spans":[{"bbox":[36.84999084472656,406.88531494140625,83.08641052246094,418.8902587890625],"content":"warm neutr","score":1,"type":"text"},{"bbox":[129,406,202,417],"content":"\\bar{(n\\in[3,10]\\ \\mathrm{cm}^{-3})}","score":0.9,"type":"inline_equation"},{"bbox":[200.50498962402344,406.88531494140625,291.9715881347656,418.8902587890625],"content":"), the low-density cold","score":1,"type":"text"}]},{"bbox":[35,417,291,429.8492431640625],"spans":[{"bbox":[36.84999084472656,417.84429931640625,81.05404663085938,429.8492431640625],"content":"neutral gas","score":1,"type":"text"},{"bbox":[83,417,183,429],"content":"(n\\,\\in\\,[10,3\\times10^{1}]\\;\\mathrm{cm}^{-3})","score":0.87,"type":"inline_equation"},{"bbox":[182.13999938964844,417.84429931640625,291.9676818847656,429.8492431640625],"content":"), the medium-density cold","score":1,"type":"text"}]},{"bbox":[82,428.80328369140625,291,440.8082275390625],"spans":[{"bbox":[82,429,178,439],"content":"(n\\in[3{\\times}10^{1},10^{2}]\\,\\mathrm{cm}^{-3})","score":0.84,"type":"inline_equation"},{"bbox":[175.00701904296875,428.80328369140625,291.9678955078125,440.8082275390625],"content":"), the high-density neutral gas","score":1,"type":"text"}]},{"bbox":[35,439,291,458.3724060058594],"spans":[{"bbox":[36,439,133,451],"content":"(n\\in[10^{2},3\\times10^{2}]\\,\\mathrm{cm}^{-3})","score":0.86,"type":"inline_equation"},{"bbox":[45.149322509765625,440.340087890625,53.25697708129883,458.3724060058594],"content":" ∈","score":1,"type":"text"},{"bbox":[154.26364135742188,439.76226806640625,291.9666442871094,451.7672119140625],"content":" the density range of the central re-","score":1,"type":"text"}]},{"bbox":[35,450.72125244140625,291,469.3313903808594],"spans":[{"bbox":[36.85002136230469,450.72125244140625,59.98318099975586,462.7261962890625],"content":"gion (","score":1,"type":"text"},{"bbox":[56,451,152,462],"content":"(n\\in[3{\\times}10^{2},10^{3}]\\,\\mathrm{cm}^{-3})","score":0.87,"type":"inline_equation"},{"bbox":[64.96131896972656,451.299072265625,73.0689697265625,469.3313903808594],"content":" ∈","score":1,"type":"text"},{"bbox":[84.89701843261719,451.299072265625,91.23323059082031,469.3313903808594],"content":"×","score":1,"type":"text"},{"bbox":[150.0530242919922,450.72125244140625,167.36802673339844,462.7261962890625],"content":"). W","score":1,"type":"text"},{"bbox":[186.6855010986328,450.72125244140625,235.15357971191406,462.7261962890625],"content":"w the resulti","score":1,"type":"text"},{"bbox":[272.7125549316406,450.72125244140625,291.9702453613281,462.7261962890625],"content":"n the","score":1,"type":"text"}]},{"bbox":[35,461.68023681640625,291,473.6851806640625],"spans":[{"bbox":[36.85002136230469,461.68023681640625,178.42855834960938,473.6851806640625],"content":"left panel of Figure 3 in terms of cos","score":1,"type":"text"},{"bbox":[185.56402587890625,461.68023681640625,251.31716918945312,473.6851806640625],"content":". Thus, when cos","score":1,"type":"text"},{"bbox":[237,462,275,473],"content":"\\cos\\phi=0","score":0.73,"type":"inline_equation"},{"bbox":[267.56024169921875,461.68023681640625,291.9657897949219,473.6851806640625],"content":" 0, the","score":1,"type":"text"}]},{"bbox":[35,472.63922119140625,291,484.6441650390625],"spans":[{"bbox":[36.85002136230469,472.63922119140625,291.9722595214844,484.6441650390625],"content":"magnetic field is parallel to the density isocontours, while, when","score":1,"type":"text"}]},{"bbox":[35,483.59820556640625,291,495.6031494140625],"spans":[{"bbox":[36,484,84,495],"content":"\\cos\\phi\\;=\\;\\pm1","score":0.91,"type":"inline_equation"},{"bbox":[84.43132781982422,483.59820556640625,291.9721984863281,495.6031494140625],"content":", the magnetic field is perpendicular to the density","score":1,"type":"text"}]},{"bbox":[35,494.55718994140625,291,506.5621337890625],"spans":[{"bbox":[36.85002899169922,494.55718994140625,291.9722595214844,506.5621337890625],"content":"isocontours. We keep this convention to compare to the three-","score":1,"type":"text"}]},{"bbox":[35,505.51617431640625,291,517.5211181640625],"spans":[{"bbox":[36.85002899169922,505.51617431640625,291.9722900390625,517.5211181640625],"content":"dimensional HRO diagram presented in Soler et al. (2013). We","score":1,"type":"text"}]},{"bbox":[35,516.4741821289062,291,528.4791259765625],"spans":[{"bbox":[36.85002899169922,516.4741821289062,246.95132446289062,528.4791259765625],"content":"can see that the HRO for all density intervals peaks at ","score":1,"type":"text"},{"bbox":[246,517,289,528],"content":"\\cos(\\phi)=0","score":0.91,"type":"inline_equation"},{"bbox":[289.19830322265625,516.4741821289062,291.9678955078125,528.4791259765625],"content":";","score":1,"type":"text"}]},{"bbox":[35,527.4331665039062,291,539.4381103515625],"spans":[{"bbox":[36.850006103515625,527.4331665039062,291.9723205566406,539.4381103515625],"content":"in other words, the magnetic field tends to be parallel to the den-","score":1,"type":"text"}]},{"bbox":[35,538.3921508789062,270.9013671875,550.3970947265625],"spans":[{"bbox":[36.850006103515625,538.3921508789062,270.9013671875,550.3970947265625],"content":"sity structures throughout the density range we investigate.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,549.7291259765625,291,572.693115234375],"lines":[{"bbox":[51,549.7291259765625,291,561.7340698242188],"spans":[{"bbox":[51.79400634765625,549.7291259765625,291.9723205566406,561.7340698242188],"content":"In order to quantify the HRO, Soler et al. (2013) introduced","score":1,"type":"text"}]},{"bbox":[35,560.6881713867188,168.5063934326172,572.693115234375],"spans":[{"bbox":[36.850006103515625,560.6881713867188,49.0243034362793,572.693115234375],"content":"the","score":1,"type":"text"},{"bbox":[49.0243034362793,560.6881713867188,118.6031494140625,572.58349609375],"content":" shape parameter","score":1,"type":"text"},{"bbox":[119,561,127,572],"content":"\\zeta","score":0.81,"type":"inline_equation"},{"bbox":[128.3870086669922,560.6881713867188,168.5063934326172,572.693115234375],"content":"defined as","score":1,"type":"text"}]}],"type":"text"},{"bbox":[34,579,90,605],"lines":[{"bbox":[34,579,90,605],"spans":[{"bbox":[34,579,90,605],"content":"\\zeta\\equiv\\frac{A_{c}-A_{e}}{A_{c}+A_{e}},","score":0.91,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,613.1615600585938,291,697.5257568359375],"lines":[{"bbox":[35,613.1615600585938,291,626.6614990234375],"spans":[{"bbox":[36.84999084472656,613.1615600585938,61.188621520996094,625.16650390625],"content":"where","score":1,"type":"text"},{"bbox":[62,614,73,624],"content":"A_{c}","score":0.88,"type":"inline_equation"},{"bbox":[73.23035430908203,613.1615600585938,291.9684753417969,626.6614990234375],"content":" is the central area under the HRO diagram located be-","score":1,"type":"text"}]},{"bbox":[35,624,291,636.1255493164062],"spans":[{"bbox":[36.84999084472656,624.12060546875,60.64067840576172,636.1255493164062],"content":"tween","score":1,"type":"text"},{"bbox":[60.64067840576172,625.5478515625,64.25199127197266,635.510498046875],"content":" ","score":1,"type":"text"},{"bbox":[63,624,153,635],"content":"\\phi\\:\\in\\:[75.52^{\\circ},104.48^{\\circ}]","score":0.76,"type":"inline_equation"},{"bbox":[153.2815399169922,624.12060546875,291.9708557128906,636.1255493164062],"content":", corresponding to mostly parallel","score":1,"type":"text"}]},{"bbox":[35,635.07958984375,291,648.5795288085938],"spans":[{"bbox":[36.84999084472656,635.07958984375,121.2730484008789,647.0845336914062],"content":"magnetic field, while","score":1,"type":"text"},{"bbox":[122,636,134,646],"content":"A_{e}","score":0.87,"type":"inline_equation"},{"bbox":[133.49037170410156,635.07958984375,291.9674377441406,648.5795288085938],"content":" is the area under the HRO in the range","score":1,"type":"text"}]},{"bbox":[35,646,291,658.0435180664062],"spans":[{"bbox":[35,646,168,657],"content":"\\phi\\in[0^{\\circ},41.41^{\\circ}]\\cup[138.59^{\\circ},180^{\\circ}","score":0.85,"type":"inline_equation"},{"bbox":[288.6490478515625,646.03857421875,291.9665832519531,658.0435180664062],"content":"-","score":1,"type":"text"}]},{"bbox":[35,656.99755859375,291,669.0025024414062],"spans":[{"bbox":[36.85099792480469,656.99755859375,254.05560302734375,669.0025024414062],"content":"pendicular field. Thus for a given density interval, if 0","score":1,"type":"text"},{"bbox":[248,657,289,669],"content":"0<\\zeta<1","score":0.92,"type":"inline_equation"}]},{"bbox":[35,667.95654296875,291,679.9614868164062],"spans":[{"bbox":[36.85101318359375,667.95654296875,291.96331787109375,679.9614868164062],"content":"the magnetic field lines are parallel to the density gradients,","score":1,"type":"text"}]},{"bbox":[35,678.9155883789062,291,697.5257568359375],"spans":[{"bbox":[36.85101318359375,678.9155883789062,68.13357543945312,690.9205322265625],"content":"while if","score":1,"type":"text"},{"bbox":[68.13357543945312,679.493408203125,71.20001220703125,697.5257568359375],"content":" ","score":1,"type":"text"},{"bbox":[70,679,120,690],"content":"-1\\,<\\,\\zeta\\,<\\,0","score":0.92,"type":"inline_equation"},{"bbox":[120.28131103515625,678.9155883789062,291.966796875,690.9205322265625],"content":", the magnetic field is perpendicular to the","score":1,"type":"text"}]},{"bbox":[302,56.56658935546875,558,68.57152557373047],"spans":[{"bbox":[303.3070068359375,56.56658935546875,406.43975830078125,68.57152557373047],"content":"density gradients. Finally,","score":1,"type":"text"},{"bbox":[406.43975830078125,57.99385452270508,409.0670166015625,67.95645904541016],"content":" ","score":1,"type":"text"},{"bbox":[408,57,415,68],"content":"\\zeta","score":0.81,"type":"inline_equation"},{"bbox":[416.49700927734375,56.56658935546875,558.4242553710938,68.57152557373047],"content":"close to zero happens when there is","score":1,"type":"text"}]},{"bbox":[302,67.52557373046875,443.1619567871094,79.53050994873047],"spans":[{"bbox":[303.3070068359375,67.52557373046875,443.1619567871094,79.53050994873047],"content":"no clear tendency in the alignment.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,56.56658935546875,558,79.53050994873047],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[302,80.96856689453125,558,136.80943298339844],"lines":[{"bbox":[318,80.96856689453125,558,92.97350311279297],"spans":[{"bbox":[318.2510070800781,80.96856689453125,477.65240478515625,92.97350311279297],"content":"In the bottom panel of Figure 3, we plot","score":1,"type":"text"},{"bbox":[477.65240478515625,82.39583587646484,480.17999267578125,92.35843658447266],"content":" ","score":1,"type":"text"},{"bbox":[479,82,486,92],"content":"\\zeta","score":0.79,"type":"inline_equation"},{"bbox":[487.5090026855469,80.96856689453125,558.4227294921875,92.97350311279297],"content":"for the simulation","score":1,"type":"text"}]},{"bbox":[302,91.92755126953125,558,103.93248748779297],"spans":[{"bbox":[303.3070068359375,91.92755126953125,558.42919921875,103.93248748779297],"content":"in the density ranges defined above, showing that the magnetic","score":1,"type":"text"}]},{"bbox":[302,102.88653564453125,558,114.89147186279297],"spans":[{"bbox":[303.3070068359375,102.88653564453125,558.4290771484375,114.89147186279297],"content":"field becomes increasingly parallel to the density gradient as the","score":1,"type":"text"}]},{"bbox":[302,113,558,125.85045623779297],"spans":[{"bbox":[303.3070068359375,113.84552001953125,395.9392395019531,125.85045623779297],"content":"density increases up to ","score":1,"type":"text"},{"bbox":[395,113,447,124],"content":"\\bar{3}\\,\\dot{\\times}\\,\\dot{1}0^{2}\\,\\mathrm{cm}^{-3}","score":0.92,"type":"inline_equation"},{"bbox":[447.2489929199219,113.84552001953125,558.4218139648438,125.85045623779297],"content":", and then the degree of par-","score":1,"type":"text"}]},{"bbox":[302,124.80450439453125,483.72967529296875,136.80943298339844],"spans":[{"bbox":[303.3070068359375,124.80450439453125,483.72967529296875,136.80943298339844],"content":"allel alignment decreases for the last interval.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,138.24749755859375,558,336.55322265625],"lines":[{"bbox":[318,138.24749755859375,558,150.25242614746094],"spans":[{"bbox":[318.2510070800781,138.24749755859375,558.4293823242188,150.25242614746094],"content":"The trend of the shape parameter shown in Figure 6 of","score":1,"type":"text"}]},{"bbox":[302,149.20648193359375,558,161.21141052246094],"spans":[{"bbox":[303.3070068359375,149.20648193359375,558.42919921875,161.21141052246094],"content":"Soler et al. (2013) indicates that the alignment of the magnetic","score":1,"type":"text"}]},{"bbox":[302,160.16448974609375,558,172.16941833496094],"spans":[{"bbox":[303.3070068359375,160.16448974609375,558.4292602539062,172.16941833496094],"content":"field and isodensity contours becomes less parallel as the den-","score":1,"type":"text"}]},{"bbox":[302,171.12347412109375,558,183.12840270996094],"spans":[{"bbox":[303.3070068359375,171.12347412109375,558.42919921875,183.12840270996094],"content":"sity increases. In that work, the authors sample density values","score":1,"type":"text"}]},{"bbox":[302,178.4664306640625,558,194.08738708496094],"spans":[{"bbox":[301,181,440,193],"content":"n\\ \\stackrel{\\cdot}{\\in}\\ [1.6\\times10^{2},3.16\\times10^{6}]\\ \\ \\mathrm{cm}^{3}","score":0.68,"type":"inline_equation"},{"bbox":[438.8199157714844,178.4664306640625,443.08001708984375,194.08738708496094],"content":" ","score":1,"type":"text"},{"bbox":[443.08001708984375,182.08245849609375,558.427001953125,194.08738708496094],"content":"in isothermal simulations of","score":1,"type":"text"}]},{"bbox":[302,193.04144287109375,558,205.04637145996094],"spans":[{"bbox":[303.3070068359375,193.04144287109375,558.4293212890625,205.04637145996094],"content":"cold molecular gas. In contrast, since we are interested in under-","score":1,"type":"text"}]},{"bbox":[302,204.00042724609375,558,216.00535583496094],"spans":[{"bbox":[303.3070068359375,204.00042724609375,558.42919921875,216.00535583496094],"content":"standing how this correlation arises as the cloud is assembled,","score":1,"type":"text"}]},{"bbox":[302,214.95941162109375,558,226.96434020996094],"spans":[{"bbox":[303.3070068359375,214.95941162109375,558.4292602539062,226.96434020996094],"content":"our simulation starts with warm atomic gas leading to density","score":1,"type":"text"}]},{"bbox":[302,225,558,237.92332458496094],"spans":[{"bbox":[303.3070068359375,225.91839599609375,362.1659851074219,237.92332458496094],"content":"structures with","score":1,"type":"text"},{"bbox":[363,225,483,237],"content":"n\\in[6\\times10^{-1},2.2\\times10^{3}]~\\bar{\\mathrm{cm}}^{3}.","score":0.73,"type":"inline_equation"},{"bbox":[483.9856262207031,225.91839599609375,558.4263305664062,237.92332458496094],"content":" Therefore, the ob-","score":1,"type":"text"}]},{"bbox":[302,236.87738037109375,558,248.88230895996094],"spans":[{"bbox":[303.30694580078125,236.87738037109375,558.42919921875,248.88230895996094],"content":"tained HRO shape parameter in Figure 3 complements the one","score":1,"type":"text"}]},{"bbox":[302,247.83636474609375,558,259.84130859375],"spans":[{"bbox":[303.30694580078125,247.83636474609375,558.4290161132812,259.84130859375],"content":"obtained by Soler et al. (2013), as it corresponds to gas that can","score":1,"type":"text"}]},{"bbox":[302,258.79534912109375,558,270.80029296875],"spans":[{"bbox":[303.30694580078125,258.79534912109375,558.4290771484375,270.80029296875],"content":"be considered the precursor of a molecular cloud. Specifically,","score":1,"type":"text"}]},{"bbox":[302,269.75335693359375,558,281.75830078125],"spans":[{"bbox":[303.30694580078125,269.75335693359375,558.4291381835938,281.75830078125],"content":"the HRO and shape parameter obtained in Figure 3 shows an","score":1,"type":"text"}]},{"bbox":[302,280.71234130859375,558,292.71728515625],"spans":[{"bbox":[303.30694580078125,280.71234130859375,558.4292602539062,292.71728515625],"content":"increase in the degree of parallel alignment for the first four den-","score":1,"type":"text"}]},{"bbox":[302,291.67132568359375,558,303.67626953125],"spans":[{"bbox":[303.30694580078125,291.67132568359375,558.4291381835938,303.67626953125],"content":"sity intervals, while for the last one, we can appreciate a change","score":1,"type":"text"}]},{"bbox":[302,302.63031005859375,558,314.63525390625],"spans":[{"bbox":[303.30694580078125,302.63031005859375,558.4290771484375,314.63525390625],"content":"of this tendency towards a non-preferential orientation, which","score":1,"type":"text"}]},{"bbox":[302,313.58929443359375,558,325.59423828125],"spans":[{"bbox":[303.30694580078125,313.58929443359375,558.4291381835938,325.59423828125],"content":"corresponds to the lowest density interval in the results of Soler","score":1,"type":"text"}]},{"bbox":[302,324.54827880859375,354.2158203125,336.55322265625],"spans":[{"bbox":[303.30694580078125,324.54827880859375,354.2158203125,336.55322265625],"content":"et al. (2013).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,337.99127197265625,558,426.7081298828125],"lines":[{"bbox":[318,337.99127197265625,558,349.9962158203125],"spans":[{"bbox":[318.2509460449219,337.99127197265625,558.4293212890625,349.9962158203125],"content":"In Figure 4, we show the density structures between the four","score":1,"type":"text"}]},{"bbox":[302,348.95025634765625,558,360.9552001953125],"spans":[{"bbox":[303.30694580078125,348.95025634765625,558.4291381835938,360.9552001953125],"content":"highest density intervals used to obtain the HRO and shape pa-","score":1,"type":"text"}]},{"bbox":[302,359.90924072265625,558,371.9141845703125],"spans":[{"bbox":[303.30694580078125,359.90924072265625,558.4292602539062,371.9141845703125],"content":"rameter of Figure 3. It can be seen from this figure that the mag-","score":1,"type":"text"}]},{"bbox":[302,370.86822509765625,558,382.8731689453125],"spans":[{"bbox":[303.30694580078125,370.86822509765625,558.4290771484375,382.8731689453125],"content":"netic field (black arrows) tends to be parallel to the density struc-","score":1,"type":"text"}]},{"bbox":[302,381.82623291015625,558,393.8311767578125],"spans":[{"bbox":[303.30694580078125,381.82623291015625,558.4292602539062,393.8311767578125],"content":"tures for the four density intervals. However, for the highest den-","score":1,"type":"text"}]},{"bbox":[302,392.78521728515625,558,404.7901611328125],"spans":[{"bbox":[303.30694580078125,392.78521728515625,558.42919921875,404.7901611328125],"content":"sity interval, the magnetic field does not follow this general trend","score":1,"type":"text"}]},{"bbox":[302,403.74420166015625,558,415.7491455078125],"spans":[{"bbox":[303.30694580078125,403.74420166015625,558.4291381835938,415.7491455078125],"content":"in some regions, leading to the observed change in the shape pa-","score":1,"type":"text"}]},{"bbox":[302,414.70318603515625,335.6754455566406,426.7081298828125],"spans":[{"bbox":[303.30694580078125,414.70318603515625,335.6754455566406,426.7081298828125],"content":"rameter.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,456,453,468],"lines":[{"bbox":[303.30694580078125,456.5015869140625,453.48583984375,469.51824951171875],"spans":[{"bbox":[303.30694580078125,456.5015869140625,453.48583984375,469.51824951171875],"content":"4. Magnetic field line evolution","score":1,"type":"text"}]}],"type":"title"},{"bbox":[302,476.9701843261719,558,576.6460571289062],"lines":[{"bbox":[302,476.9701843261719,558,488.9751281738281],"spans":[{"bbox":[303.30694580078125,476.9701843261719,558.4291381835938,488.9751281738281],"content":"To understand the alignment of the magnetic field with CACs","score":1,"type":"text"}]},{"bbox":[302,487.92919921875,558,499.93414306640625],"spans":[{"bbox":[303.30694580078125,487.92919921875,558.42919921875,499.93414306640625],"content":"shown in the previous section, we followed the evolution of the","score":1,"type":"text"}]},{"bbox":[302,498.88720703125,558,510.89215087890625],"spans":[{"bbox":[303.30694580078125,498.88720703125,558.42919921875,510.89215087890625],"content":"magnetic field lines. The resulting configuration of the three-","score":1,"type":"text"}]},{"bbox":[302,509.84619140625,558,521.8511352539062],"spans":[{"bbox":[303.30694580078125,509.84619140625,558.42919921875,521.8511352539062],"content":"dimensional density structures and magnetic field lines of Re-","score":1,"type":"text"}]},{"bbox":[302,520.80517578125,558,532.8101196289062],"spans":[{"bbox":[303.30694580078125,520.80517578125,558.42919921875,532.8101196289062],"content":"gion R1 after 5 Myr of evolution is shown in Figure 2, where","score":1,"type":"text"}]},{"bbox":[302,531.76416015625,558,543.7691040039062],"spans":[{"bbox":[303.30694580078125,531.76416015625,558.4293823242188,543.7691040039062],"content":"we can see the shock fronts at each side of the central condensa-","score":1,"type":"text"}]},{"bbox":[302,542.72314453125,558,554.7280883789062],"spans":[{"bbox":[303.30694580078125,542.72314453125,558.4290161132812,554.7280883789062],"content":"tion region. The magnetic field lines start bending at these shock","score":1,"type":"text"}]},{"bbox":[302,553.68212890625,558,565.6870727539062],"spans":[{"bbox":[303.30694580078125,553.68212890625,558.42919921875,565.6870727539062],"content":"fronts along their way from the center of the computational do-","score":1,"type":"text"}]},{"bbox":[302,564.64111328125,326,576.6460571289062],"spans":[{"bbox":[303.30694580078125,564.64111328125,325.7228088378906,576.6460571289062],"content":"main.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,578.0841064453125,558,633.924072265625],"lines":[{"bbox":[318,578.0841064453125,558,590.0890502929688],"spans":[{"bbox":[318.2509460449219,578.0841064453125,558.4293823242188,590.0890502929688],"content":"As can be seen in the provided animation (Fig. 2), the mag-","score":1,"type":"text"}]},{"bbox":[302,589.0430908203125,558,601.0480346679688],"spans":[{"bbox":[303.30694580078125,589.0430908203125,558.4290771484375,601.0480346679688],"content":"netic field lines change their direction from being nearly parallel","score":1,"type":"text"}]},{"bbox":[302,600.0020751953125,558,612.0070190429688],"spans":[{"bbox":[303.30694580078125,600.0020751953125,325.4039611816406,612.0070190429688],"content":"to the","score":1,"type":"text"},{"bbox":[326,602,333,610],"content":"x\\cdot","score":0.72,"type":"inline_equation"},{"bbox":[332.52294921875,600.0020751953125,558.4248657226562,612.0070190429688],"content":"-axis at early times to being mostly perpendicular to it af-","score":1,"type":"text"}]},{"bbox":[302,610.9600830078125,558,622.9650268554688],"spans":[{"bbox":[303.30694580078125,610.9600830078125,558.4290161132812,622.9650268554688],"content":"ter 5 Myr in the neighborhood of the dense layer. In this section,","score":1,"type":"text"}]},{"bbox":[302,621.9191284179688,427.25164794921875,633.924072265625],"spans":[{"bbox":[303.30694580078125,621.9191284179688,427.25164794921875,633.924072265625],"content":"we investigate how this occurs.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,653,505,664],"lines":[{"bbox":[303.30694580078125,652.6038818359375,504.53167724609375,664.3209228515625],"spans":[{"bbox":[303.30694580078125,652.6038818359375,504.53167724609375,664.3209228515625],"content":"4.1. Magnetic field amplification by MHD shocks","score":1,"type":"text"}]}],"type":"title"},{"bbox":[302,672.2571411132812,558,760.9750366210938],"lines":[{"bbox":[302,672.2571411132812,558,684.2620849609375],"spans":[{"bbox":[303.30694580078125,672.2571411132812,558.42919921875,684.2620849609375],"content":"As seen in Figure 2, and considering the shock front located at","score":1,"type":"text"}]},{"bbox":[302,683.2161254882812,558,695.2210693359375],"spans":[{"bbox":[303.30694580078125,683.2161254882812,558.42919921875,695.2210693359375],"content":"the right of the condensation layer, we see that the angle between","score":1,"type":"text"}]},{"bbox":[302,694.1751098632812,558,706.1800537109375],"spans":[{"bbox":[303.30694580078125,694.1751098632812,558.4292602539062,706.1800537109375],"content":"the upstream magnetic field and the normal to the shock front","score":1,"type":"text"}]},{"bbox":[302,705,558,717.1390991210938],"spans":[{"bbox":[303.30694580078125,705.1341552734375,334.8585205078125,717.1390991210938],"content":"satisfies","score":1,"type":"text"},{"bbox":[336,705,361,715],"content":"\\theta\\approx0","score":0.89,"type":"inline_equation"},{"bbox":[360.19122314453125,705.1341552734375,558.427001953125,717.1390991210938],"content":" for all the magnetic lines shown. The small vari-","score":1,"type":"text"}]},{"bbox":[302,716.0931396484375,558,728.0980834960938],"spans":[{"bbox":[303.30694580078125,716.0931396484375,337.97674560546875,728.0980834960938],"content":"ations of","score":1,"type":"text"},{"bbox":[337.97674560546875,717.5203857421875,344.9245300292969,727.4830322265625],"content":" θ","score":1,"type":"text"},{"bbox":[344.9245300292969,716.0931396484375,558.4246215820312,728.0980834960938],"content":" around zero are due to the fact that the shock front is","score":1,"type":"text"}]},{"bbox":[302,727.0521240234375,558,739.0570678710938],"spans":[{"bbox":[303.3069152832031,727.0521240234375,558.4290771484375,739.0570678710938],"content":"not a plane when it moves away from the central region because","score":1,"type":"text"}]},{"bbox":[302,738.0111083984375,558,750.0160522460938],"spans":[{"bbox":[303.3069152832031,738.0111083984375,558.428955078125,750.0160522460938],"content":"of the fluctuations added to the inflow velocity in the simulation","score":1,"type":"text"}]},{"bbox":[302,748.9700927734375,326,760.9750366210938],"spans":[{"bbox":[303.3069152832031,748.9700927734375,326.82861328125,760.9750366210938],"content":"setup.","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[241,34,355,42],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[36,771,139,779],"lines":[{"bbox":[36.849700927734375,769.81591796875,140.07986450195312,780.6204223632812],"spans":[{"bbox":[36.849700927734375,769.81591796875,140.07986450195312,780.6204223632812],"content":"Article number, page 4 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":3,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[33,84,560,344],"blocks":[{"bbox":[33,84,553,303],"lines":[{"bbox":[33,84,553,303],"spans":[{"bbox":[33,84,553,303],"image_path":"f58693ef236783809189fc9ccee7f9b0cfc65496fed0f0ca6bee2a745507dd5b.jpg","score":0.9997164011001587,"type":"image"}]}],"type":"image_body"},{"bbox":[36,322,560,344],"lines":[{"bbox":[36.849998474121094,322.947265625,558.4275512695312,334.6125793457031],"spans":[{"bbox":[36.849998474121094,322.947265625,61.39103698730469,334.6125793457031],"content":"Fig. 1.","score":1,"type":"text"},{"bbox":[61.39103698730469,323.27008056640625,558.4275512695312,334.0745849609375],"content":" Column density of the cold atomic cloud’s simulation at 5 Myr. The highlighted region (R1) is examined in 3D in order to show the","score":1,"type":"text"}]},{"bbox":[36.84999465942383,333.23309326171875,178.97640991210938,344.03759765625],"spans":[{"bbox":[36.84999465942383,333.23309326171875,178.97640991210938,344.03759765625],"content":"magnetic field and density morphology.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[35,362.14959716796875,291,386.6075439453125],"lines":[{"bbox":[51,362.14959716796875,291,374.154541015625],"spans":[{"bbox":[51.79399490356445,362.14959716796875,291.97235107421875,374.154541015625],"content":"Following Delmont & Keppens (2011), the fast magne-","score":1,"type":"text"}]},{"bbox":[35,373.10760498046875,157.29669189453125,386.6075439453125],"spans":[{"bbox":[36.84999465942383,373.10760498046875,90.80743408203125,385.112548828125],"content":"tosonic speed","score":1,"type":"text"},{"bbox":[92,375,103,385],"content":"\\boldsymbol{u}_{f}","score":0.87,"type":"inline_equation"},{"bbox":[101.26470947265625,373.10760498046875,157.29669189453125,386.6075439453125],"content":" is defined as:","score":1,"type":"text"}]}],"type":"text"},{"bbox":[34,396,210,420],"lines":[{"bbox":[34,396,210,420],"spans":[{"bbox":[34,396,210,420],"content":"u_{f}^{2}=\\frac{1}{2}\\left(c_{s}^{2}+u_{\\mathrm{A}}^{2}+\\,\\sqrt{(c_{s}^{2}+u_{\\mathrm{A}}^{2})^{2}-4u_{\\mathrm{A,n}}^{2}c_{s}^{2}}\\right),","score":0.92,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,431.6135559082031,291,531.2894287109375],"lines":[{"bbox":[35,431.6135559082031,291,445.11248779296875],"spans":[{"bbox":[36.85002136230469,431.6135559082031,61.18865203857422,443.6184997558594],"content":"where","score":1,"type":"text"},{"bbox":[61.18865203857422,431.6135559082031,65.31902313232422,443.5089111328125],"content":" ","score":1,"type":"text"},{"bbox":[64,433,75,443],"content":"u_{A}","score":0.86,"type":"inline_equation"},{"bbox":[74.73601531982422,431.6135559082031,179.4383087158203,445.11248779296875],"content":" is the Alfvén speed and","score":1,"type":"text"},{"bbox":[179.4383087158203,431.6135559082031,183.57101440429688,443.5089111328125],"content":" ","score":1,"type":"text"},{"bbox":[182,433,199,443],"content":"u_{A,n}","score":0.89,"type":"inline_equation"},{"bbox":[198.21791076660156,431.6135559082031,291.9714050292969,445.11248779296875],"content":" is its component nor-","score":1,"type":"text"}]},{"bbox":[35,442.57257080078125,291,456.0715026855469],"spans":[{"bbox":[36.85002136230469,442.57257080078125,170.99639892578125,454.5775146484375],"content":"mal to the shock front. Defining","score":1,"type":"text"},{"bbox":[170.99639892578125,442.57257080078125,174.85702514648438,454.4679260253906],"content":" ","score":1,"type":"text"},{"bbox":[173,444,184,453],"content":"u_{n}","score":0.85,"type":"inline_equation"},{"bbox":[183.32492065429688,442.57257080078125,291.9715270996094,456.0715026855469],"content":" as the flow speed normal","score":1,"type":"text"}]},{"bbox":[35,453.53155517578125,291,467.0304870605469],"spans":[{"bbox":[36.85003662109375,453.53155517578125,59.475101470947266,465.5364990234375],"content":"to the","score":1,"type":"text"},{"bbox":[98.36908721923828,453.53155517578125,116.01285552978516,465.5364990234375],"content":"e flo","score":1,"type":"text"},{"bbox":[150.49343872070312,453.53155517578125,187.9827117919922,465.5364990234375],"content":"rred to as","score":1,"type":"text"},{"bbox":[187.9827117919922,453.53155517578125,227.222900390625,465.4269104003906],"content":" superfast","score":1,"type":"text"},{"bbox":[227.222900390625,453.53155517578125,251.68402099609375,465.5364990234375],"content":" when","score":1,"type":"text"},{"bbox":[253,454,290,466],"content":"|u_{n}|>u_{f}","score":0.91,"type":"inline_equation"},{"bbox":[289.4779968261719,453.53155517578125,291.9686584472656,467.0304870605469],"content":".","score":1,"type":"text"}]},{"bbox":[35,464.49053955078125,291,484.59466552734375],"spans":[{"bbox":[36.84999084472656,464.49053955078125,58.98688888549805,476.4954833984375],"content":"Since","score":1,"type":"text"},{"bbox":[60,466,100,476],"content":"u_{A,n}\\,\\approx\\,u_{A}","score":0.9,"type":"inline_equation"},{"bbox":[76.50289916992188,465.068359375,86.80421447753906,484.59466552734375],"content":" ≈","score":1,"type":"text"},{"bbox":[99.68799591064453,464.49053955078125,117.43999481201172,477.9894714355469],"content":" and","score":1,"type":"text"},{"bbox":[117.43999481201172,464.49053955078125,125.29029846191406,476.3858947753906],"content":" u","score":1,"type":"text"},{"bbox":[119,466,151,475],"content":"u_{n}\\approx u_{0}","score":0.89,"type":"inline_equation"},{"bbox":[128.7769012451172,465.068359375,139.07821655273438,484.59466552734375],"content":" ≈","score":1,"type":"text"},{"bbox":[151.0128936767578,464.49053955078125,291.9634704589844,477.9894714355469],"content":" for the preshock flow in the three-","score":1,"type":"text"}]},{"bbox":[35,475.44854736328125,291,487.4534912109375],"spans":[{"bbox":[36.850006103515625,475.44854736328125,291.9722595214844,487.4534912109375],"content":"dimensional simulation described in Section 2, it can be seen","score":1,"type":"text"}]},{"bbox":[35,486.40753173828125,291,498.4124755859375],"spans":[{"bbox":[36.850006103515625,486.40753173828125,291.97222900390625,498.4124755859375],"content":"from equation (3) that this flow is superfast. The downstream","score":1,"type":"text"}]},{"bbox":[35,497.36651611328125,291,509.3714599609375],"spans":[{"bbox":[36.850006103515625,497.36651611328125,291.9722900390625,509.3714599609375],"content":"flow, just after the shock front, becomes transalfvénic as we can","score":1,"type":"text"}]},{"bbox":[35,508.32550048828125,291,520.3304443359375],"spans":[{"bbox":[36.850006103515625,508.32550048828125,198.93157958984375,520.3304443359375],"content":"see from Figure 2. Therefore the relation","score":1,"type":"text"},{"bbox":[200,509,263,520],"content":"u_{f}>|u_{n}|>u_{A,n}","score":0.94,"type":"inline_equation"},{"bbox":[262.69195556640625,508.32550048828125,291.9720153808594,520.3304443359375],"content":", which","score":1,"type":"text"}]},{"bbox":[35,519.2844848632812,245.88519287109375,531.2894287109375],"spans":[{"bbox":[36.84996032714844,519.2844848632812,245.88519287109375,531.2894287109375],"content":"characterizes a subfast flow, is satisfied downstream.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,531.407470703125,291,587.2483520507812],"lines":[{"bbox":[51,531.407470703125,291,543.4124145507812],"spans":[{"bbox":[51.79396057128906,531.407470703125,291.9722900390625,543.4124145507812],"content":"Such MHD shock, going from a superfast to a subfast flow,","score":1,"type":"text"}]},{"bbox":[35,542.366455078125,291,554.3713989257812],"spans":[{"bbox":[36.84996032714844,542.366455078125,291.9721984863281,554.3713989257812],"content":"is called a fast MHD shock (Delmont & Keppens 2011), whose","score":1,"type":"text"}]},{"bbox":[35,553.325439453125,291,565.3303833007812],"spans":[{"bbox":[36.84996032714844,553.325439453125,291.97222900390625,565.3303833007812],"content":"main feature is that it refracts the magnetic field away from the","score":1,"type":"text"}]},{"bbox":[35,564.284423828125,291,576.2893676757812],"spans":[{"bbox":[36.84996032714844,564.284423828125,291.9721984863281,576.2893676757812],"content":"shock normal due to the amplification of the magnetic field com-","score":1,"type":"text"}]},{"bbox":[35,575.243408203125,291,587.2483520507812],"spans":[{"bbox":[36.84996032714844,575.243408203125,291.9721984863281,587.2483520507812],"content":"ponent parallel to the shock front. This amplification is given by","score":1,"type":"text"}]}],"type":"text"},{"bbox":[34,606,152,640],"lines":[{"bbox":[34,606,152,640],"spans":[{"bbox":[34,606,152,640],"content":"B_{\\parallel,2}=\\frac{r_{\\rho}B_{\\parallel,1}(M_{A,1}^{2}-\\cos^{2}\\theta)}{M_{A,1}^{2}-r_{\\rho}\\cos^{2}\\theta},","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[35,650.340576171875,291,760.9755249023438],"lines":[{"bbox":[35,650.340576171875,291,663.8395385742188],"spans":[{"bbox":[36.84999084472656,650.340576171875,61.188621520996094,662.3455200195312],"content":"where","score":1,"type":"text"},{"bbox":[62,651,101,662],"content":"B_{\\parallel,1}=B_{1}","score":0.7,"type":"inline_equation"},{"bbox":[100.79489135742188,650.340576171875,114.5803451538086,663.8395385742188],"content":" sin","score":1,"type":"text"},{"bbox":[115,651,121,660],"content":"\\theta","score":0.26,"type":"inline_equation"},{"bbox":[120.61357879638672,650.340576171875,137.7509765625,662.3455200195312],"content":" and","score":1,"type":"text"},{"bbox":[139,651,155,662],"content":"B_{\\parallel,2}","score":0.9,"type":"inline_equation"},{"bbox":[154.71788024902344,650.340576171875,291.96343994140625,663.8395385742188],"content":" are the upstream and downstream","score":1,"type":"text"}]},{"bbox":[35,661.299560546875,291,673.3045043945312],"spans":[{"bbox":[36.84998321533203,661.299560546875,247.74826049804688,673.3045043945312],"content":"magnetic field components parallel to the shock front,","score":1,"type":"text"},{"bbox":[248,662,291,673],"content":"r_{\\rho}=\\rho_{2}/\\rho_{1}","score":0.91,"type":"inline_equation"}]},{"bbox":[35,672.258544921875,291,684.2634887695312],"spans":[{"bbox":[36.850006103515625,672.258544921875,157.5967254638672,684.2634887695312],"content":"is the ratio of the downstream","score":1,"type":"text"},{"bbox":[159,673,176,684],"content":"(\\rho_{2})","score":0.87,"type":"inline_equation"},{"bbox":[176.2245635986328,672.258544921875,235.98023986816406,684.2634887695312],"content":" and upstream ","score":1,"type":"text"},{"bbox":[235,673,251,684],"content":"(\\rho_{1})","score":0.85,"type":"inline_equation"},{"bbox":[251.6605682373047,672.258544921875,291.96923828125,684.2634887695312],"content":" densities,","score":1,"type":"text"}]},{"bbox":[35,683,291,696.7164916992188],"spans":[{"bbox":[35,683,55,695],"content":"M_{A,1}","score":0.91,"type":"inline_equation"},{"bbox":[55.312923431396484,683.216552734375,275.6275329589844,696.7164916992188],"content":" is the Alfvénic Mach number of the upstream gas, and","score":1,"type":"text"},{"bbox":[275.6275329589844,684.643798828125,278.2190246582031,694.6064453125],"content":" ","score":1,"type":"text"},{"bbox":[277,684,283,693],"content":"\\theta","score":0.73,"type":"inline_equation"},{"bbox":[282.5926208496094,683.216552734375,291.96807861328125,695.2214965820312],"content":" is","score":1,"type":"text"}]},{"bbox":[35,694.1755981445312,291,706.1805419921875],"spans":[{"bbox":[36.85002136230469,694.1755981445312,291.9722595214844,706.1805419921875],"content":"the angle between the vector normal to the front-shock and the","score":1,"type":"text"}]},{"bbox":[35,705,291,717.1395263671875],"spans":[{"bbox":[36.85002136230469,705.1345825195312,131.99282836914062,717.1395263671875],"content":"upstream magnetic field","score":1,"type":"text"},{"bbox":[133,705,147,716],"content":"B_{1}","score":0.88,"type":"inline_equation"},{"bbox":[146.79803466796875,705.1345825195312,291.9730224609375,717.1395263671875],"content":". Since this amplification depends on","score":1,"type":"text"}]},{"bbox":[35,716.0935668945312,291,728.0985107421875],"spans":[{"bbox":[36.85003662109375,716.0935668945312,73.0840072631836,728.0985107421875],"content":"the angle","score":1,"type":"text"},{"bbox":[74,717,80,726],"content":"\\theta","score":0.69,"type":"inline_equation"},{"bbox":[80.0860366821289,716.0935668945312,275.1337585449219,728.0985107421875],"content":", the fluctuating curvature of the shock front at di","score":1,"type":"text"},{"bbox":[275.1320495605469,717.7468872070312,281.109619140625,727.70947265625],"content":"ff","score":1,"type":"text"},{"bbox":[281.1090393066406,716.0935668945312,291.96826171875,728.0985107421875],"content":"er-","score":1,"type":"text"}]},{"bbox":[35,727.0526123046875,291,739.0575561523438],"spans":[{"bbox":[36.85003662109375,727.0526123046875,291.97222900390625,739.0575561523438],"content":"ent positions yields the inhomogeneous downstream magnetic","score":1,"type":"text"}]},{"bbox":[35,738.0115966796875,291,750.0165405273438],"spans":[{"bbox":[36.85003662109375,738.0115966796875,291.9723205566406,750.0165405273438],"content":"field pattern when the shock front travels away from the central","score":1,"type":"text"}]},{"bbox":[35,748.9705810546875,236.03228759765625,760.9755249023438],"spans":[{"bbox":[36.85003662109375,748.9705810546875,236.03228759765625,760.9755249023438],"content":"region, early in the evolution times (see Figure 2).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,362.3353271484375,413.41705322265625,374.0523986816406],"lines":[{"bbox":[302,362.3353271484375,413.41705322265625,374.0523986816406],"spans":[{"bbox":[303.3070373535156,362.3353271484375,413.41705322265625,374.0523986816406],"content":"4.2. Line bending analysis","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,379.50457763671875,558,413.426513671875],"lines":[{"bbox":[302,379.50457763671875,558,391.509521484375],"spans":[{"bbox":[303.3070373535156,379.50457763671875,558.4293212890625,391.509521484375],"content":"To understand how magnetic field lines change their original di-","score":1,"type":"text"}]},{"bbox":[302,390.46258544921875,558,402.467529296875],"spans":[{"bbox":[303.3070373535156,390.46258544921875,558.4292602539062,402.467529296875],"content":"rection in the post-shock region, we consider the induction equa-","score":1,"type":"text"}]},{"bbox":[302,401.42156982421875,379.1323547363281,413.426513671875],"spans":[{"bbox":[303.3070373535156,401.42156982421875,379.1323547363281,413.426513671875],"content":"tion in ideal MHD,","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,418,465,443],"lines":[{"bbox":[302,418,465,443],"spans":[{"bbox":[302,418,465,443],"content":"\\frac{\\partial\\pmb{B}}{\\partial t}=-\\pmb{B}\\nabla\\cdot\\pmb{u}-(\\pmb{u}\\cdot\\nabla)\\pmb{B}+(\\pmb{B}\\cdot\\nabla)\\pmb{u}.","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[303,458,480,469],"lines":[{"bbox":[303.306884765625,457.82830810546875,479.6495056152344,469.5453796386719],"spans":[{"bbox":[303.306884765625,457.82830810546875,479.6495056152344,469.5453796386719],"content":"4.2.1. Line bending by a compressive flow","score":1,"type":"text"}]}],"type":"title"},{"bbox":[302,474.99755859375,558,563.7153930664062],"lines":[{"bbox":[302,474.99755859375,558,487.00250244140625],"spans":[{"bbox":[303.306884765625,474.99755859375,558.4292602539062,487.00250244140625],"content":"This analysis takes place after the magnetic field component par-","score":1,"type":"text"}]},{"bbox":[302,485.95654296875,558,497.96148681640625],"spans":[{"bbox":[303.306884765625,485.95654296875,558.4290161132812,497.96148681640625],"content":"allel to the shock front is amplified by the fast MHD shock, i.e.,","score":1,"type":"text"}]},{"bbox":[302,496.91552734375,558,508.92047119140625],"spans":[{"bbox":[303.306884765625,496.91552734375,558.4290161132812,508.92047119140625],"content":"in a region containing cooling and thermally unstable gas. Af-","score":1,"type":"text"}]},{"bbox":[302,507.87451171875,558,519.8794555664062],"spans":[{"bbox":[303.306884765625,507.87451171875,558.4292602539062,519.8794555664062],"content":"ter the amplification, magnetic field lines adopt the shape repre-","score":1,"type":"text"}]},{"bbox":[302,518.83349609375,558,530.8384399414062],"spans":[{"bbox":[303.306884765625,518.83349609375,558.42919921875,530.8384399414062],"content":"sented in Figure 5, where the magnetic field component parallel","score":1,"type":"text"}]},{"bbox":[302,529.79248046875,558,541.7974243164062],"spans":[{"bbox":[303.306884765625,529.79248046875,375.05743408203125,541.7974243164062],"content":"to the shock front,","score":1,"type":"text"},{"bbox":[376,530,387,541],"content":"B_{y}","score":0.86,"type":"inline_equation"},{"bbox":[387.2288818359375,529.79248046875,558.4262084960938,541.7974243164062],"content":", has been amplified, and the magnetic field","score":1,"type":"text"}]},{"bbox":[302,540.75146484375,558,554.2504272460938],"spans":[{"bbox":[303.306884765625,540.75146484375,475.9286804199219,552.7564086914062],"content":"component perpendicular to the shock front","score":1,"type":"text"},{"bbox":[477,541,489,552],"content":"B_{x}","score":0.88,"type":"inline_equation"},{"bbox":[487.91326904296875,540.75146484375,558.4244384765625,554.2504272460938],"content":" stays constant, in","score":1,"type":"text"}]},{"bbox":[302,551.71044921875,533.2536010742188,563.7153930664062],"spans":[{"bbox":[303.306884765625,551.71044921875,533.2536010742188,563.7153930664062],"content":"agreement with the jump condition for the magnetic field.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[302,562.66845703125,558,761],"lines":[{"bbox":[318.2508850097656,562.66845703125,558,574.6734008789062],"spans":[{"bbox":[318.2508850097656,562.66845703125,558.42919921875,574.6734008789062],"content":"Furthermore, we assume that the flow speed decreases along","score":1,"type":"text"}]},{"bbox":[302,573.62744140625,558,585.6323852539062],"spans":[{"bbox":[302,576,309,583],"content":"x","score":0.72,"type":"inline_equation"},{"bbox":[308.228271484375,573.62744140625,433.30572509765625,585.6323852539062],"content":" in the post-shock region; i.e.,","score":1,"type":"text"},{"bbox":[433.30572509765625,573.62744140625,437.1528625488281,585.5227661132812],"content":" ","score":1,"type":"text"},{"bbox":[436,574,484,585],"content":"u_{x}~=~u_{x}(x)","score":0.92,"type":"inline_equation"},{"bbox":[483.5093688964844,573.62744140625,501.74090576171875,585.6323852539062],"content":" and","score":1,"type":"text"},{"bbox":[501.74090576171875,575.0546875,505.58184814453125,585.017333984375],"content":" ","score":1,"type":"text"},{"bbox":[504,574,556,585],"content":"\\partial u_{x}/\\partial x\\ <\\ 0","score":0.92,"type":"inline_equation"},{"bbox":[555.9341430664062,573.62744140625,558.4248046875,585.6323852539062],"content":",","score":1,"type":"text"}]},{"bbox":[302,584.58642578125,558,596.5913696289062],"spans":[{"bbox":[303.30682373046875,584.58642578125,558.4291381835938,596.5913696289062],"content":"which represents the compression caused by the cooling of the","score":1,"type":"text"}]},{"bbox":[302,595.54541015625,558,607.5503540039062],"spans":[{"bbox":[303.30682373046875,595.54541015625,558.4291381835938,607.5503540039062],"content":"gas as it travels downstream. Finally, we disregard the down-","score":1,"type":"text"}]},{"bbox":[302,606.5044555664062,558,618.5093994140625],"spans":[{"bbox":[303.30682373046875,606.5044555664062,547.0120239257812,618.5093994140625],"content":"stream component of the velocity parallel to the shock front,","score":1,"type":"text"},{"bbox":[547.0120239257812,606.5044555664062,549.8488159179688,618.3997802734375],"content":" ","score":1,"type":"text"},{"bbox":[549,608,559,618],"content":"u_{y}","score":0.83,"type":"inline_equation"}]},{"bbox":[302,617.4634399414062,558,629.4683837890625],"spans":[{"bbox":[303.30682373046875,617.4634399414062,317.69281005859375,629.4683837890625],"content":"and","score":1,"type":"text"},{"bbox":[319,619,329,629],"content":"u_{z}","score":0.86,"type":"inline_equation"},{"bbox":[329.02081298828125,617.4634399414062,398.8287353515625,629.4683837890625],"content":", to analyze the e","score":1,"type":"text"},{"bbox":[398.82781982421875,619.1167602539062,404.8053894042969,629.079345703125],"content":"ff","score":1,"type":"text"},{"bbox":[404.8048095703125,617.4634399414062,558.4281616210938,629.4683837890625],"content":"ect of the compression alone. To vali-","score":1,"type":"text"}]},{"bbox":[302,628.4224243164062,558,640.4273681640625],"spans":[{"bbox":[303.30682373046875,628.4224243164062,558.4290161132812,640.4273681640625],"content":"date these assumptions, in Figure 6 we plot the relevant physical","score":1,"type":"text"}]},{"bbox":[302,639.3814697265625,558,651.3864135742188],"spans":[{"bbox":[303.30682373046875,639.3814697265625,373.01507568359375,651.3864135742188],"content":"quantities at time","score":1,"type":"text"},{"bbox":[373.01507568359375,639.3814697265625,376.04083251953125,651.2767944335938],"content":" ","score":1,"type":"text"},{"bbox":[375,640,405,650],"content":"t=0.7","score":0.8,"type":"inline_equation"},{"bbox":[405.3020935058594,639.3814697265625,531.3687744140625,651.3864135742188],"content":" Myr along a ray parallel to the","score":1,"type":"text"},{"bbox":[533,641,540,650],"content":"x","score":0.79,"type":"inline_equation"},{"bbox":[539.3181762695312,639.3814697265625,558.4244995117188,651.3864135742188],"content":" axis","score":1,"type":"text"}]},{"bbox":[302,650.3404541015625,558,662.3453979492188],"spans":[{"bbox":[303.3067626953125,650.3404541015625,558.428955078125,662.3453979492188],"content":"passing through a region in which this amplification becomes","score":1,"type":"text"}]},{"bbox":[302,661.2994384765625,558,673.3043823242188],"spans":[{"bbox":[303.3067626953125,661.2994384765625,558.428955078125,673.3043823242188],"content":"large at later evolutionary times. In the top panel, the shock front","score":1,"type":"text"}]},{"bbox":[302,672.2574462890625,558,684.2623901367188],"spans":[{"bbox":[303.3067626953125,672.2574462890625,558.4288940429688,684.2623901367188],"content":"and condensed region are clearly visible in the gas density pro-","score":1,"type":"text"}]},{"bbox":[302,683.2164306640625,558,695.2213745117188],"spans":[{"bbox":[303.3067626953125,683.2164306640625,558.4290771484375,695.2213745117188],"content":"file. The middle panel shows that, in addition to the discontinuity","score":1,"type":"text"}]},{"bbox":[302,694.1754150390625,558,707.6753540039062],"spans":[{"bbox":[303.3067626953125,694.1754150390625,436.84539794921875,706.1803588867188],"content":"at the shocks, the inflow velocity","score":1,"type":"text"},{"bbox":[438,696,450,705],"content":"u_{x}","score":0.85,"type":"inline_equation"},{"bbox":[448.3121032714844,694.1754150390625,558.4247436523438,707.6753540039062],"content":" smoothly decreases down-","score":1,"type":"text"}]},{"bbox":[302,705.1344604492188,558,717.139404296875],"spans":[{"bbox":[303.3067321777344,705.1344604492188,558.428955078125,717.139404296875],"content":"stream from the shock, in sync with the density increase. Also,","score":1,"type":"text"}]},{"bbox":[302,716.0934448242188,558,728.098388671875],"spans":[{"bbox":[302,718,312,728],"content":"u_{y}","score":0.71,"type":"inline_equation"},{"bbox":[311.8827209472656,717.5206909179688,314.3733825683594,727.4833374023438],"content":",","score":1,"type":"text"},{"bbox":[314.3733825683594,716.0934448242188,319.3457336425781,727.98876953125],"content":" ","score":1,"type":"text"},{"bbox":[318,717,348,727],"content":"u_{z}\\,\\approx\\,0","score":0.89,"type":"inline_equation"},{"bbox":[347.4330139160156,716.0934448242188,482.147216796875,728.098388671875],"content":", in agreement with our assumpti","score":1,"type":"text"},{"bbox":[495.9852600097656,716.0934448242188,558.4208984375,728.098388671875],"content":". Finally, in the","score":1,"type":"text"}]},{"bbox":[302,727,558,740.5513916015625],"spans":[{"bbox":[303.3067321777344,727.0524291992188,481.1788635253906,739.057373046875],"content":"bottom panel, we see that the fluctuation of","score":1,"type":"text"},{"bbox":[483,727,495,738],"content":"B_{x}","score":0.89,"type":"inline_equation"},{"bbox":[494.2731018066406,727.0524291992188,558.4292602539062,740.5513916015625],"content":" remains within","score":1,"type":"text"}]},{"bbox":[302,738,558,750.0164184570312],"spans":[{"bbox":[302,738,333,749],"content":"\\lesssim\\,20\\%","score":0.89,"type":"inline_equation"},{"bbox":[332.7591552734375,738.011474609375,558.421875,750.0164184570312],"content":" of its mean value, so it is negligible to the first order.","score":1,"type":"text"}]},{"bbox":[302,748.970458984375,558,761],"spans":[{"bbox":[303.30670166015625,748.970458984375,413.0945129394531,760.9754028320312],"content":"Therefore, the assumptions","score":1,"type":"text"},{"bbox":[413.0945129394531,748.970458984375,416.74169921875,760.8657836914062],"content":" ","score":1,"type":"text"},{"bbox":[415,749,463,761],"content":"B_{y}\\,=\\,B_{y}(x)","score":0.76,"type":"inline_equation"},{"bbox":[462.6882629394531,748.970458984375,465.1789245605469,760.9754028320312],"content":",","score":1,"type":"text"},{"bbox":[465.1789245605469,748.970458984375,468.8227233886719,760.8657836914062],"content":" ","score":1,"type":"text"},{"bbox":[467,749,500,760],"content":"B_{x}\\,=\\,C","score":0.59,"type":"inline_equation"},{"bbox":[500.4847412109375,748.970458984375,530.6116943359375,760.9754028320312],"content":", where","score":1,"type":"text"},{"bbox":[530.6116943359375,748.970458984375,533.6547241210938,760.8657836914062],"content":" ","score":1,"type":"text"},{"bbox":[533,749,541,759],"content":"C","score":0.78,"type":"inline_equation"},{"bbox":[540.2998046875,748.970458984375,558.427734375,760.9754028320312],"content":" is a","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[174,34,420,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[456,771,558,779],"lines":[{"bbox":[455.1949157714844,769.8160400390625,558.4251098632812,780.6205444335938],"spans":[{"bbox":[455.1949157714844,769.8160400390625,558.4251098632812,780.6205444335938],"content":"Article number, page 5 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":4,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[37,54,558,419],"blocks":[{"bbox":[92,54,503,363],"lines":[{"bbox":[92,54,503,363],"spans":[{"bbox":[92,54,503,363],"image_path":"70d48a8caa72e2a1fb2dba440b843dccd872512362f2236fb151e9e6e515c87a.jpg","score":0.9999694228172302,"type":"image"}]}],"type":"image_body"},{"bbox":[37,370,558,419],"lines":[{"bbox":[36.849998474121094,369.34027099609375,558.4281616210938,381.0055847167969],"spans":[{"bbox":[36.849998474121094,369.34027099609375,60.386802673339844,381.0055847167969],"content":"Fig. 2.","score":1,"type":"text"},{"bbox":[60.386802673339844,369.6630859375,558.4281616210938,380.46759033203125],"content":" The density structure and magnetic field lines of the region R1 are shown after 5 Myr of evolution. The magnetic field lines are colored by","score":1,"type":"text"}]},{"bbox":[36.849998474121094,379.6260986328125,558.42529296875,390.43060302734375],"spans":[{"bbox":[36.849998474121094,379.6260986328125,558.42529296875,390.43060302734375],"content":"the Alfvénic Mach number. Note that at this evolution time, magnetic field lines are almost perpendicular to their original orientation along the","score":1,"type":"text"}]},{"bbox":[36,389.589111328125,558.4230346679688,400.39361572265625],"spans":[{"bbox":[36,391,42,398],"content":"x","score":0.73,"type":"inline_equation"},{"bbox":[41.28008270263672,389.589111328125,558.4230346679688,400.39361572265625],"content":" axis and the change from superalfvénic to transalfvénic of magnetic field lines across the shock. The dark-shaded regions at both sides of the","score":1,"type":"text"}]},{"bbox":[36.849998474121094,399.5511169433594,558.4254760742188,410.3556213378906],"spans":[{"bbox":[36.849998474121094,399.5511169433594,558.4254760742188,410.3556213378906],"content":"center are the shock fronts where magnetic field lines start to bend. We provide an animation showing the evolution of this region as supplementary","score":1,"type":"text"}]},{"bbox":[36.849998474121094,409.5141296386719,68.47449493408203,420.3186340332031],"spans":[{"bbox":[36.849998474121094,409.5141296386719,68.47449493408203,420.3186340332031],"content":"material.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,436.59661865234375,291,461.0545349121094],"lines":[{"bbox":[36,436.59661865234375,291,448.6015625],"spans":[{"bbox":[36.849998474121094,436.59661865234375,62.304439544677734,448.6015625],"content":"consta","score":1,"type":"text"},{"bbox":[72.54598236083984,436.59661865234375,75.4949951171875,448.4919738769531],"content":" ","score":1,"type":"text"},{"bbox":[74,437,118,448],"content":"u_{x}=u_{x}(x)","score":0.92,"type":"inline_equation"},{"bbox":[118.53955078125,436.59661865234375,141.692626953125,448.6015625],"content":", with","score":1,"type":"text"},{"bbox":[143,437,192,448],"content":"\\partial u_{x}/\\partial x<0","score":0.8,"type":"inline_equation"},{"bbox":[191.6802978515625,436.59661865234375,194.1709442138672,448.6015625],"content":",","score":1,"type":"text"},{"bbox":[194.1709442138672,436.59661865234375,197.12001037597656,448.4919738769531],"content":" ","score":1,"type":"text"},{"bbox":[196,437,240,448],"content":"u_{y},u_{z}\\,\\rightarrow\\,0","score":0.81,"type":"inline_equation"},{"bbox":[239.85430908203125,436.59661865234375,291.9686279296875,448.6015625],"content":", and solving","score":1,"type":"text"}]},{"bbox":[36,447.55560302734375,214.99986267089844,461.0545349121094],"spans":[{"bbox":[36.85002136230469,447.55560302734375,63.13136291503906,459.560546875],"content":"for the","score":1,"type":"text"},{"bbox":[63.13136291503906,447.55560302734375,72.05817413330078,459.4509582519531],"content":" B","score":1,"type":"text"},{"bbox":[71.95902252197266,451.8112487792969,75.05538940429688,460.1379699707031],"content":"y","score":1,"type":"text"},{"bbox":[75.05538940429688,447.55560302734375,214.99986267089844,461.0545349121094],"content":" component, reduce equation (5) to","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,467,139,493],"lines":[{"bbox":[35,467,139,493],"spans":[{"bbox":[35,467,139,493],"content":"\\frac{\\partial B_{y}}{\\partial t}=-B_{y}\\frac{\\partial u_{x}}{\\partial x}-u_{x}\\frac{\\partial B_{y}}{\\partial x}.","score":0.93,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[36,499.0665588378906,259.58380126953125,511.0715026855469],"lines":[{"bbox":[36,499.0665588378906,259.58380126953125,511.0715026855469],"spans":[{"bbox":[36.84999084472656,499.0665588378906,259.58380126953125,511.0715026855469],"content":"This equation can also be written in Lagrangian form as","score":1,"type":"text"}]}],"type":"text"},{"bbox":[35,518,103,543],"lines":[{"bbox":[35,518,103,543],"spans":[{"bbox":[35,518,103,543],"content":"\\frac{d B_{y}}{d t}=-B_{y}\\frac{\\partial u_{x}}{\\partial x}.","score":0.92,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[36,549.8035888671875,291,605.6434936523438],"lines":[{"bbox":[36,549.8035888671875,291,561.8085327148438],"spans":[{"bbox":[36.84999084472656,549.8035888671875,82.03038024902344,561.8085327148438],"content":"Thus, since","score":1,"type":"text"},{"bbox":[83,550,130,561],"content":"\\partial u_{x}/\\partial x<0","score":0.92,"type":"inline_equation"},{"bbox":[129.6632843017578,549.8035888671875,209.10507202148438,561.8085327148438],"content":", eq. (7) implies that","score":1,"type":"text"},{"bbox":[210,550,239,561],"content":"d B_{y}/d t","score":0.9,"type":"inline_equation"},{"bbox":[238.99288940429688,549.8035888671875,291.971435546875,561.8085327148438],"content":" has the same","score":1,"type":"text"}]},{"bbox":[36,560.7625732421875,291,574.2615356445312],"spans":[{"bbox":[36.850006103515625,560.7625732421875,64.45636749267578,572.7675170898438],"content":"sign as","score":1,"type":"text"},{"bbox":[64.45636749267578,560.7625732421875,67.50200653076172,572.6578979492188],"content":" ","score":1,"type":"text"},{"bbox":[66,561,77,573],"content":"B_{y}","score":0.87,"type":"inline_equation"},{"bbox":[77.0840072631836,560.7625732421875,256.7893371582031,572.7675170898438],"content":", and therefore the magnetic field component","score":1,"type":"text"},{"bbox":[258,561,269,573],"content":"B_{y}","score":0.88,"type":"inline_equation"},{"bbox":[268.91839599609375,560.7625732421875,291.970458984375,574.2615356445312],"content":" is al-","score":1,"type":"text"}]},{"bbox":[36,571.7215576171875,291,583.7265014648438],"spans":[{"bbox":[36.85002136230469,571.7215576171875,291.97222900390625,583.7265014648438],"content":"ways amplified by the downstream compressive velocity gradi-","score":1,"type":"text"}]},{"bbox":[36,582.6795654296875,291,594.6845092773438],"spans":[{"bbox":[36.85002136230469,582.6795654296875,291.9722595214844,594.6845092773438],"content":"ent. This amplification results in the magnetic field aligning to","score":1,"type":"text"}]},{"bbox":[36,593.6385498046875,205.7858123779297,605.6434936523438],"spans":[{"bbox":[36.85002136230469,593.6385498046875,205.7858123779297,605.6434936523438],"content":"the condensation plane where CACs form.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,623,203,633],"lines":[{"bbox":[36.85002136230469,622.0263671875,203.02777099609375,633.743408203125],"spans":[{"bbox":[36.85002136230469,622.0263671875,203.02777099609375,633.743408203125],"content":"4.2.2. Line bending at curved interfaces","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,639.381591796875,291,760.9755249023438],"lines":[{"bbox":[36,639.381591796875,291,651.3865356445312],"spans":[{"bbox":[36.85002136230469,639.381591796875,291.9722595214844,651.3865356445312],"content":"Another possible mechanism for aligning the magnetic field","score":1,"type":"text"}]},{"bbox":[36,650.340576171875,291,662.3455200195312],"spans":[{"bbox":[36.85002136230469,650.340576171875,291.9722595214844,662.3455200195312],"content":"with the density structures occurs when the collision interface","score":1,"type":"text"}]},{"bbox":[36,661.299560546875,291,673.3045043945312],"spans":[{"bbox":[36.85002136230469,661.299560546875,291.9722900390625,673.3045043945312],"content":"is curved rather than flat, as, for example, in the case of the","score":1,"type":"text"}]},{"bbox":[36,672.258544921875,291,684.2634887695312],"spans":[{"bbox":[36.85002136230469,672.258544921875,291.97222900390625,684.2634887695312],"content":"NTSI (Vishniac 1994). To investigate this, we also ran two-","score":1,"type":"text"}]},{"bbox":[36,683.216552734375,291,695.2214965820312],"spans":[{"bbox":[36.85002136230469,683.216552734375,291.9722900390625,695.2214965820312],"content":"dimensional simulations with the same initial conditions and","score":1,"type":"text"}]},{"bbox":[36,694.175537109375,291,706.1804809570312],"spans":[{"bbox":[36.85002136230469,694.175537109375,291.9722900390625,706.1804809570312],"content":"physics as the three-dimensional simulation described in Sec-","score":1,"type":"text"}]},{"bbox":[36,705.134521484375,291,717.1394653320312],"spans":[{"bbox":[36.85002136230469,705.134521484375,291.9722595214844,717.1394653320312],"content":"tion 2 but with a curved collision interface, obtained by adding","score":1,"type":"text"}]},{"bbox":[36,716.0935668945312,291,728.0985107421875],"spans":[{"bbox":[36.85002136230469,716.0935668945312,291.9722595214844,728.0985107421875],"content":"a sinusoidal displacement perturbation (a “bending mode” per-","score":1,"type":"text"}]},{"bbox":[36,727.0525512695312,291,739.0574951171875],"spans":[{"bbox":[36.85002136230469,727.0525512695312,291.9721984863281,739.0574951171875],"content":"turbation). In the left panel of Figure 7, we show a very early","score":1,"type":"text"}]},{"bbox":[36,738.0115356445312,291,750.0164794921875],"spans":[{"bbox":[36.85002136230469,738.0115356445312,291.9721984863281,750.0164794921875],"content":"stage of this simulation. In this case, the obliqueness of the in-","score":1,"type":"text"}]},{"bbox":[36,748.9705810546875,291,760.9755249023438],"spans":[{"bbox":[36.85002136230469,748.9705810546875,291.9722595214844,760.9755249023438],"content":"terface implies the existence of a component of the incoming","score":1,"type":"text"}]},{"bbox":[303,436.5965576171875,558,448.60150146484375],"spans":[{"bbox":[303.3070068359375,436.5965576171875,558.4292602539062,448.60150146484375],"content":"flow tangential to it, while the perpendicular component is re-","score":1,"type":"text"}]},{"bbox":[303,447.5555419921875,558,459.56048583984375],"spans":[{"bbox":[303.3070068359375,447.5555419921875,558.4293823242188,459.56048583984375],"content":"duced across the shock. This causes the flow to change direction","score":1,"type":"text"}]},{"bbox":[303,458.5145263671875,558,470.51947021484375],"spans":[{"bbox":[303.3070068359375,458.5145263671875,558.4290161132812,470.51947021484375],"content":"at the interface, being now oblique to the original magnetic field","score":1,"type":"text"}]},{"bbox":[303,469.4725341796875,558,481.47747802734375],"spans":[{"bbox":[303.3070068359375,469.4725341796875,558.4290771484375,481.47747802734375],"content":"direction. Being transalfvénic, this oblique post-shock flow can","score":1,"type":"text"}]},{"bbox":[303,480.4315185546875,558,492.43646240234375],"spans":[{"bbox":[303.3070068359375,480.4315185546875,558.4293212890625,492.43646240234375],"content":"begin bending the field lines. The situation is symmetric on both","score":1,"type":"text"}]},{"bbox":[303,491.3905029296875,558,503.39544677734375],"spans":[{"bbox":[303.3070068359375,491.3905029296875,558.4291381835938,503.39544677734375],"content":"sides of the layer, thus generating a shearing velocity field with","score":1,"type":"text"}]},{"bbox":[303,502.3494873046875,558,514.3544311523438],"spans":[{"bbox":[303.3070068359375,502.3494873046875,498.7630920410156,514.3544311523438],"content":"opposite directions at opposite sides due to the di","score":1,"type":"text"},{"bbox":[498.76702880859375,504.0028076171875,504.7445983886719,513.9653930664062],"content":"ff","score":1,"type":"text"},{"bbox":[504.7450256347656,502.3494873046875,558.423583984375,514.3544311523438],"content":"erent concav-","score":1,"type":"text"}]},{"bbox":[303,513.3084716796875,558,525.3134155273438],"spans":[{"bbox":[303.3070068359375,513.3084716796875,558.42919921875,525.3134155273438],"content":"ity of the collision interface. This generates an “S” shape of the","score":1,"type":"text"}]},{"bbox":[303,524.2674560546875,558,536.2723999023438],"spans":[{"bbox":[303.3070068359375,524.2674560546875,558.4293212890625,536.2723999023438],"content":"magnetic field lines across the shocked layer. A later stage of","score":1,"type":"text"}]},{"bbox":[303,535.2264404296875,558,547.2313842773438],"spans":[{"bbox":[303.3070068359375,535.2264404296875,558.4291381835938,547.2313842773438],"content":"this simulation is shown in the right panel of Figure 7, showing","score":1,"type":"text"}]},{"bbox":[303,546.1854248046875,558,558.1903686523438],"spans":[{"bbox":[303.3070068359375,546.1854248046875,558.4293823242188,558.1903686523438],"content":"that the flow tends to be subalfvénic in the condensed regions.","score":1,"type":"text"}]},{"bbox":[303,557.1444091796875,558,569.1493530273438],"spans":[{"bbox":[303.3070068359375,557.1444091796875,519.4454345703125,569.1493530273438],"content":"For this collision interface, the line-bending analysis di","score":1,"type":"text"},{"bbox":[519.447998046875,558.7977294921875,525.425537109375,568.7603149414062],"content":"ff","score":1,"type":"text"},{"bbox":[525.426025390625,557.1444091796875,558.4222412109375,569.1493530273438],"content":"ers from","score":1,"type":"text"}]},{"bbox":[303,568.1033935546875,558,580.1083374023438],"spans":[{"bbox":[303.3070068359375,568.1033935546875,558.4293823242188,580.1083374023438],"content":"that described in Section 4.2. In this case, we will have a ve-","score":1,"type":"text"}]},{"bbox":[303,579.0614013671875,558,591.0663452148438],"spans":[{"bbox":[303.3070068359375,579.0614013671875,558.4291381835938,591.0663452148438],"content":"locity field like the one represented in Figure 8, where the left","score":1,"type":"text"}]},{"bbox":[303,590.0203857421875,558,602.0253295898438],"spans":[{"bbox":[303.3070068359375,590.0203857421875,558.42919921875,602.0253295898438],"content":"panel represents an unperturbed downstream magnetic field line","score":1,"type":"text"}]},{"bbox":[303,600.9793701171875,558,612.9843139648438],"spans":[{"bbox":[303.3070068359375,600.9793701171875,558.4290161132812,612.9843139648438],"content":"and the right panel represents a perturbed one. In the left panel,","score":1,"type":"text"}]},{"bbox":[303,611.9384155273438,558,623.943359375],"spans":[{"bbox":[303.3070068359375,611.9384155273438,558.4293212890625,623.943359375],"content":"we consider a local system of coordinates centered at the point","score":1,"type":"text"}]},{"bbox":[303,622.8973999023438,558,636.3963623046875],"spans":[{"bbox":[303.3070068359375,622.8973999023438,342.1412048339844,634.90234375],"content":"where the","score":1,"type":"text"},{"bbox":[343,624,353,635],"content":"u_{y}","score":0.86,"type":"inline_equation"},{"bbox":[352.54736328125,622.8973999023438,558.4288330078125,636.3963623046875],"content":" is maximum. The magnetic field line is represented","score":1,"type":"text"}]},{"bbox":[303,633.8563842773438,558,645.861328125],"spans":[{"bbox":[303.3070068359375,633.8563842773438,353.4188537597656,645.861328125],"content":"in green, the","score":1,"type":"text"},{"bbox":[355,636,362,644],"content":"x","score":0.73,"type":"inline_equation"},{"bbox":[361.1570129394531,633.8563842773438,503.79144287109375,645.861328125],"content":"-axis is parallel to the field line, the","score":1,"type":"text"},{"bbox":[505,636,512,645],"content":"y","score":0.73,"type":"inline_equation"},{"bbox":[511.00201416015625,633.8563842773438,558.4240112304688,645.861328125],"content":"-axis is per-","score":1,"type":"text"}]},{"bbox":[303,644.8154296875,558,656.8203735351562],"spans":[{"bbox":[303.3070068359375,644.8154296875,558.4292602539062,656.8203735351562],"content":"pendicular to it, and the velocity field is represented by black","score":1,"type":"text"}]},{"bbox":[303,655.7744140625,558,668],"spans":[{"bbox":[303.3070068359375,655.7744140625,394.39501953125,667.7793579101562],"content":"arrows. Thus, initially,","score":1,"type":"text"},{"bbox":[396,656,428,668],"content":"B_{y}\\,=\\,0","score":0.92,"type":"inline_equation"},{"bbox":[427.1573181152344,655.7744140625,444.77117919921875,667.7793579101562],"content":" and","score":1,"type":"text"},{"bbox":[444.77117919921875,655.7744140625,448.3580322265625,667.6697387695312],"content":" ","score":1,"type":"text"},{"bbox":[447,656,480,667],"content":"B_{x}\\,=\\,C","score":0.92,"type":"inline_equation"},{"bbox":[479.7940368652344,655.7744140625,509.8611755371094,667.7793579101562],"content":", where","score":1,"type":"text"},{"bbox":[509.8611755371094,655.7744140625,512.841064453125,667.6697387695312],"content":" ","score":1,"type":"text"},{"bbox":[512,656,521,665],"content":"C","score":0.78,"type":"inline_equation"},{"bbox":[519.4861450195312,655.7744140625,558.4248657226562,667.7793579101562],"content":" is a con-","score":1,"type":"text"}]},{"bbox":[303,666.7333984375,558,679],"spans":[{"bbox":[303.30706787109375,666.7333984375,399.7848205566406,678.7383422851562],"content":"stant. Then, considering","score":1,"type":"text"},{"bbox":[401,669,412,678],"content":"u_{x}","score":0.47,"type":"inline_equation"},{"bbox":[411.5950622558594,666.7333984375,414.0857238769531,678.7383422851562],"content":",","score":1,"type":"text"},{"bbox":[415,668,447,678],"content":"u_{z}\\rightarrow0","score":0.83,"type":"inline_equation"},{"bbox":[446.6263427734375,666.7333984375,466.36224365234375,678.7383422851562],"content":", and","score":1,"type":"text"},{"bbox":[466.36224365234375,666.7333984375,469.2230529785156,678.6287231445312],"content":" ","score":1,"type":"text"},{"bbox":[468,667,511,679],"content":"u_{y}=u_{y}(x)","score":0.93,"type":"inline_equation"},{"bbox":[511.2005615234375,666.7333984375,558.42333984375,678.7383422851562],"content":", we obtain,","score":1,"type":"text"}]},{"bbox":[303,677.6923828125,376.07379150390625,689.6973266601562],"spans":[{"bbox":[303.3070068359375,677.6923828125,376.07379150390625,689.6973266601562],"content":"from equation (5),","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,436.5965576171875,558,689.6973266601562],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[302,695,362,721],"lines":[{"bbox":[302,695,362,721],"spans":[{"bbox":[302,695,362,721],"content":"\\frac{\\partial B_{y}}{\\partial t}=B_{x}\\frac{\\partial u_{y}}{\\partial x}.","score":0.92,"type":"interline_equation"}]}],"type":"interline_equation"},{"bbox":[303,727.0525512695312,558,761],"lines":[{"bbox":[303,727.0525512695312,558,739.0574951171875],"spans":[{"bbox":[303.30694580078125,727.0525512695312,532.5363159179688,739.0574951171875],"content":"We can then consider the previous equation in three di","score":1,"type":"text"},{"bbox":[532.531982421875,728.7058715820312,538.509521484375,738.66845703125],"content":"ff","score":1,"type":"text"},{"bbox":[538.510009765625,727.0525512695312,558.42529296875,739.0574951171875],"content":"erent","score":1,"type":"text"}]},{"bbox":[303,738,558,750.0164794921875],"spans":[{"bbox":[303.3070068359375,738.0115356445312,337.7775573730469,750.0164794921875],"content":"regions i","score":1,"type":"text"},{"bbox":[390.1608581542969,738.0115356445312,418.99261474609375,750.0164794921875],"content":"el of Fi","score":1,"type":"text"},{"bbox":[470.2900085449219,738.0115356445312,512.8103637695312,750.0164794921875],"content":" the region","score":1,"type":"text"},{"bbox":[514,738,556,749],"content":"x\\in[x_{1},0]","score":0.91,"type":"inline_equation"},{"bbox":[555.934814453125,738.0115356445312,558.4254760742188,750.0164794921875],"content":",","score":1,"type":"text"}]},{"bbox":[303,748.9705810546875,558,761],"spans":[{"bbox":[303.30694580078125,748.9705810546875,335.7252502441406,760.9755249023438],"content":"we have","score":1,"type":"text"},{"bbox":[337,749,388,761],"content":"\\partial u_{y}/\\partial x\\;>\\;0","score":0.92,"type":"inline_equation"},{"bbox":[377.6401672363281,748.9705810546875,418.1480712890625,760.9755249023438],"content":" 0, and so","score":1,"type":"text"},{"bbox":[419,749,470,761],"content":"\\partial B_{y}/\\partial t\\;>\\;0","score":0.9,"type":"inline_equation"},{"bbox":[459.4171447753906,748.9705810546875,558.425537109375,760.9755249023438],"content":" 0. Second, in the region","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[37,771,139,779],"lines":[{"bbox":[36.850006103515625,769.8155517578125,140.08016967773438,780.6200561523438],"spans":[{"bbox":[36.850006103515625,769.8155517578125,140.08016967773438,780.6200561523438],"content":"Article number, page 6 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[241,34,354,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":5,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[36,100,291,511],"blocks":[{"bbox":[40,100,271,444],"lines":[{"bbox":[40,100,271,444],"spans":[{"bbox":[40,100,271,444],"image_path":"589cf2f214965f4b5a2a42f180b28d9214ef254adce92adc06c7af46bb46d9a1.jpg","score":0.9999798536300659,"type":"image"}]}],"type":"image_body"},{"bbox":[36,471,291,511],"lines":[{"bbox":[36.849998474121094,470.33526611328125,291.9695739746094,482.0005798339844],"spans":[{"bbox":[36.849998474121094,470.33526611328125,60.91581726074219,482.0005798339844],"content":"Fig. 3.","score":1,"type":"text"},{"bbox":[60.91581726074219,470.6580810546875,174.13414001464844,481.46258544921875],"content":" Top: HRO diagram for four di","score":1,"type":"text"},{"bbox":[174.13299560546875,472.1460876464844,179.51283264160156,481.11248779296875],"content":"ff","score":1,"type":"text"},{"bbox":[179.51300048828125,470.6580810546875,291.9695739746094,481.46258544921875],"content":"erent number density intervals.","score":1,"type":"text"}]},{"bbox":[36.850006103515625,480.62109375,291.9709777832031,491.42559814453125],"spans":[{"bbox":[36.850006103515625,480.62109375,291.9709777832031,491.42559814453125],"content":"Bottom: shape parameter (see eq. 4.3) versus number density. As we","score":1,"type":"text"}]},{"bbox":[36.850006103515625,490.5830993652344,291.970947265625,501.3876037597656],"spans":[{"bbox":[36.850006103515625,490.5830993652344,291.970947265625,501.3876037597656],"content":"can see in this figure, the magnetic field is increasingly parallel for the","score":1,"type":"text"}]},{"bbox":[36.850006103515625,500.5461120605469,291.9709167480469,511.3506164550781],"spans":[{"bbox":[36.850006103515625,500.5461120605469,291.9709167480469,511.3506164550781],"content":"first three intervals, but there is a change in the trend for the last interval.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,529.7105712890625,291,559.27978515625],"lines":[{"bbox":[36,529.7105712890625,291,541.7155151367188],"spans":[{"bbox":[36,530,77,541],"content":"x\\in[0,x_{2}]","score":0.91,"type":"inline_equation"},{"bbox":[77.4885482788086,529.7105712890625,119.6502685546875,541.7155151367188],"content":", we see th","score":1,"type":"text"},{"bbox":[128,530,180,541],"content":"\\partial u_{y}/\\partial x\\ <\\ 0","score":0.9,"type":"inline_equation"},{"bbox":[179.54129028320312,529.7105712890625,237.43397521972656,541.7155151367188],"content":", and therefore","score":1,"type":"text"},{"bbox":[237.43397521972656,531.1378173828125,239.95700073242188,541.1004638671875],"content":" ","score":1,"type":"text"},{"bbox":[239,530,290,541],"content":"\\partial B_{y}/\\partial t\\ <\\ 0","score":0.89,"type":"inline_equation"},{"bbox":[289.477294921875,529.7105712890625,291.96795654296875,541.7155151367188],"content":".","score":1,"type":"text"}]},{"bbox":[36,540.6696166992188,291,559.27978515625],"spans":[{"bbox":[36.850006103515625,540.6696166992188,118.15476989746094,552.674560546875],"content":"Finally, in the region","score":1,"type":"text"},{"bbox":[119,541,218,552],"content":"x\\in\\check{[x_{2},x_{3}]},\\partial u_{y}/\\partial x\\,>\\,0","score":0.77,"type":"inline_equation"},{"bbox":[125.08039855957031,541.2474365234375,133.21795654296875,559.27978515625],"content":" ∈","score":1,"type":"text"},{"bbox":[208.30221557617188,540.6696166992188,230.2953338623047,552.674560546875],"content":" 0, th","score":1,"type":"text"},{"bbox":[240,541,290,552],"content":"\\partial\\dot{B_{y}}/\\partial t\\;>\\;0","score":0.87,"type":"inline_equation"}]}],"type":"text"},{"bbox":[36,551.7526245117188,291,596.634521484375],"lines":[{"bbox":[51,551.7526245117188,291,563.757568359375],"spans":[{"bbox":[51.79400634765625,551.7526245117188,227.6339111328125,563.757568359375],"content":"Therefore, for these three regions, the sign of","score":1,"type":"text"},{"bbox":[229,552,257,563],"content":"\\partial B_{y}/\\partial t","score":0.9,"type":"inline_equation"},{"bbox":[256.8305969238281,551.7526245117188,291.9678955078125,563.757568359375],"content":" explains","score":1,"type":"text"}]},{"bbox":[36,562.7116088867188,291,574.716552734375],"spans":[{"bbox":[36.85002136230469,562.7116088867188,252.42076110839844,574.716552734375],"content":"the deformation of the magnetic field line having an ","score":1,"type":"text"},{"bbox":[251,563,267,573],"content":"\"S\"","score":0.47,"type":"inline_equation"},{"bbox":[266.0894470214844,562.7116088867188,291.9722900390625,574.716552734375],"content":" shape","score":1,"type":"text"}]},{"bbox":[36,573.6705932617188,291,585.675537109375],"spans":[{"bbox":[36.85002136230469,573.6705932617188,291.97222900390625,585.675537109375],"content":"morphology where each convex part aligns the direction of the","score":1,"type":"text"}]},{"bbox":[36,584.6295776367188,190.9913330078125,596.634521484375],"spans":[{"bbox":[36.85002136230469,584.6295776367188,190.9913330078125,596.634521484375],"content":"flow (See Figures 7 (left panel) and 8).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,615,104,626],"lines":[{"bbox":[36.85002136230469,614.6279296875,104.09942626953125,627.6446533203125],"spans":[{"bbox":[36.85002136230469,614.6279296875,104.09942626953125,627.6446533203125],"content":"5. Discussion","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,632.92236328125,291,655.5984497070312],"lines":[{"bbox":[36,632.92236328125,291,644.639404296875],"spans":[{"bbox":[36.85002136230469,632.92236328125,289.33465576171875,644.639404296875],"content":"5.1. The role of the pre-condensation shock in the alignment","score":1,"type":"text"}]},{"bbox":[55.955020904541016,643.8814086914062,140.65284729003906,655.5984497070312],"spans":[{"bbox":[55.955020904541016,643.8814086914062,140.65284729003906,655.5984497070312],"content":"of the magnetic field","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,661.1746215820312,291,738.9335327148438],"lines":[{"bbox":[36,661.1746215820312,291,673.1795654296875],"spans":[{"bbox":[36.85002136230469,661.1746215820312,291.9723205566406,673.1795654296875],"content":"As we have seen from the three-dimensional simulation, mag-","score":1,"type":"text"}]},{"bbox":[36,672.1336059570312,291,684.1385498046875],"spans":[{"bbox":[36.85002136230469,672.1336059570312,291.9722900390625,684.1385498046875],"content":"netic field lines change their orientation at the shock front due","score":1,"type":"text"}]},{"bbox":[36,683.0925903320312,291,695.0975341796875],"spans":[{"bbox":[36.85002136230469,683.0925903320312,67.74404907226562,695.0975341796875],"content":"to the e","score":1,"type":"text"},{"bbox":[67.74002075195312,684.7459106445312,73.71758270263672,694.70849609375],"content":"ff","score":1,"type":"text"},{"bbox":[73.7170181274414,683.0925903320312,291.9676513671875,695.0975341796875],"content":"ect of the fast MHD shock. The passage of the shock","score":1,"type":"text"}]},{"bbox":[36,694.0516357421875,291,706.0565795898438],"spans":[{"bbox":[36.85001754760742,694.0516357421875,291.9723205566406,706.0565795898438],"content":"front yields an irregular amplification of the parallel component","score":1,"type":"text"}]},{"bbox":[36,705.0106201171875,291,717.0155639648438],"spans":[{"bbox":[36.85001754760742,705.0106201171875,291.9722595214844,717.0155639648438],"content":"to it, which results in the early downstream shocked magnetic","score":1,"type":"text"}]},{"bbox":[36,715.9696044921875,291,727.9745483398438],"spans":[{"bbox":[36.85001754760742,715.9696044921875,291.9722900390625,727.9745483398438],"content":"field line pattern. Afterward, magnetic field lines are dragged","score":1,"type":"text"}]},{"bbox":[36,726.9285888671875,226.62762451171875,738.9335327148438],"spans":[{"bbox":[36.85001754760742,726.9285888671875,226.62762451171875,738.9335327148438],"content":"and folded by the downstream decelerating gas.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,738.0115966796875,291,760.9755249023438],"lines":[{"bbox":[51,738.0115966796875,291,750.0165405273438],"spans":[{"bbox":[51.79401779174805,738.0115966796875,291.9723815917969,750.0165405273438],"content":"In this work, we do not vary the relative orientation between","score":1,"type":"text"}]},{"bbox":[36,748.9705810546875,291,760.9755249023438],"spans":[{"bbox":[36.85001754760742,748.9705810546875,291.9722595214844,760.9755249023438],"content":"the upstream magnetic field and the shock front of the system in","score":1,"type":"text"}]},{"bbox":[303,56.56658935546875,558,68.57152557373047],"spans":[{"bbox":[303.3070068359375,56.56658935546875,558.4292602539062,68.57152557373047],"content":"the initial condition. However, there is a small range of angles","score":1,"type":"text"}]},{"bbox":[303,67.52557373046875,558,79.53050994873047],"spans":[{"bbox":[303.3070068359375,67.52557373046875,558.4292602539062,79.53050994873047],"content":"between them due to the departure of the shock front from a per-","score":1,"type":"text"}]},{"bbox":[303,78.48455810546875,558,90.48949432373047],"spans":[{"bbox":[303.3070068359375,78.48455810546875,558.4293212890625,90.48949432373047],"content":"fectly flat plane due to the velocity fluctuations. The influence of","score":1,"type":"text"}]},{"bbox":[303,89.44354248046875,558,101.44847869873047],"spans":[{"bbox":[303.3070068359375,89.44354248046875,558.4293212890625,101.44847869873047],"content":"the initial angle between the magnetic field and the shock front","score":1,"type":"text"}]},{"bbox":[303,100.40252685546875,558,112.40746307373047],"spans":[{"bbox":[303.3070068359375,100.40252685546875,558.4292602539062,112.40746307373047],"content":"has been studied in Inoue & Inutsuka (2016), who found that the","score":1,"type":"text"}]},{"bbox":[303,111.36151123046875,558,123.36644744873047],"spans":[{"bbox":[303.3070068359375,111.36151123046875,558.42919921875,123.36644744873047],"content":"number of CACs or fibers oriented perpendicular to the magnetic","score":1,"type":"text"}]},{"bbox":[303,122.32049560546875,558,134.32542419433594],"spans":[{"bbox":[303.3070068359375,122.32049560546875,558.42919921875,134.32542419433594],"content":"field increases with the orientation angle of the upstream mag-","score":1,"type":"text"}]},{"bbox":[303,133.27947998046875,558,145.28440856933594],"spans":[{"bbox":[303.3070068359375,133.27947998046875,558.42919921875,145.28440856933594],"content":"netic field and the shock front for simulations without an initial","score":1,"type":"text"}]},{"bbox":[303,144.23846435546875,558,156.24339294433594],"spans":[{"bbox":[303.3070068359375,144.23846435546875,558.4291381835938,156.24339294433594],"content":"velocity dispersion. However, when an initial velocity dispersion","score":1,"type":"text"}]},{"bbox":[303,155.19647216796875,558,167.20140075683594],"spans":[{"bbox":[303.3070068359375,155.19647216796875,558.4291381835938,167.20140075683594],"content":"is included, the authors find that fibers tend to be oriented in the","score":1,"type":"text"}]},{"bbox":[303,166.15545654296875,558,178.16038513183594],"spans":[{"bbox":[303.3070068359375,166.15545654296875,558.4292602539062,178.16038513183594],"content":"direction of the local magnetic field. For this reason, they con-","score":1,"type":"text"}]},{"bbox":[303,177.11444091796875,558,189.11936950683594],"spans":[{"bbox":[303.3070068359375,177.11444091796875,558.42919921875,189.11936950683594],"content":"clude that the formation mechanism of fibers and their alignment","score":1,"type":"text"}]},{"bbox":[303,188.07342529296875,558,200.07835388183594],"spans":[{"bbox":[303.3070068359375,188.07342529296875,558.4292602539062,200.07835388183594],"content":"with the local magnetic field is the turbulent shear strain, which","score":1,"type":"text"}]},{"bbox":[303,199.03240966796875,558,211.03733825683594],"spans":[{"bbox":[303.3070068359375,199.03240966796875,558.4291381835938,211.03733825683594],"content":"was also identified as the reason for the elongation of filamentary","score":1,"type":"text"}]},{"bbox":[303,209.99139404296875,419.1221923828125,221.99632263183594],"spans":[{"bbox":[303.3070068359375,209.99139404296875,419.1221923828125,221.99632263183594],"content":"CACs by Hennebelle (2013).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,56.56658935546875,558,221.99632263183594],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,222.597412109375,558,278.43829345703125],"lines":[{"bbox":[318,222.597412109375,558,234.6023406982422],"spans":[{"bbox":[318.2510070800781,222.597412109375,558.4293212890625,234.6023406982422],"content":"It is important to mention that the role of MHD shocks in the","score":1,"type":"text"}]},{"bbox":[303,233.556396484375,558,245.5613250732422],"spans":[{"bbox":[303.3070068359375,233.556396484375,558.42919921875,245.5613250732422],"content":"evolution of magnetic field lines that yield the final correlation","score":1,"type":"text"}]},{"bbox":[303,244.515380859375,558,256.52032470703125],"spans":[{"bbox":[303.3070068359375,244.515380859375,558.42919921875,256.52032470703125],"content":"has not been explored before. In this work, we identified that","score":1,"type":"text"}]},{"bbox":[303,255.474365234375,558,267.47930908203125],"spans":[{"bbox":[303.3070068359375,255.474365234375,558.4291381835938,267.47930908203125],"content":"a fast MHD shock produces magnetic field fluctuations that get","score":1,"type":"text"}]},{"bbox":[303,266.433349609375,535.1765747070312,278.43829345703125],"spans":[{"bbox":[303.3070068359375,266.433349609375,535.1765747070312,278.43829345703125],"content":"amplified between the shock front and condensation layer.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,297,555,328],"lines":[{"bbox":[303.3070068359375,296.2811279296875,553.4537963867188,307.9981689453125],"spans":[{"bbox":[303.3070068359375,296.2811279296875,553.4537963867188,307.9981689453125],"content":"5.2. The role of the velocity gradient in aligning the field and","score":1,"type":"text"}]},{"bbox":[322.4110107421875,307.2401123046875,540.2269897460938,318.9571533203125],"spans":[{"bbox":[322.4110107421875,307.2401123046875,540.2269897460938,318.9571533203125],"content":"density structures. The case of gravitationally-driven","score":1,"type":"text"}]},{"bbox":[322.4110107421875,318.1990966796875,387.0630187988281,329.9161376953125],"spans":[{"bbox":[322.4110107421875,318.1990966796875,387.0630187988281,329.9161376953125],"content":"cloud formation","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,337.01531982421875,558,403.814208984375],"lines":[{"bbox":[303,337.01531982421875,558,349.020263671875],"spans":[{"bbox":[303.3070068359375,337.01531982421875,558.4293212890625,349.020263671875],"content":"Soler & Hennebelle (2017) proposed that the relative orienta-","score":1,"type":"text"}]},{"bbox":[303,347.97430419921875,558,359.979248046875],"spans":[{"bbox":[303.3070068359375,347.97430419921875,523.4403686523438,359.979248046875],"content":"tions between the magnetic field and density structures","score":1,"type":"text"},{"bbox":[523.4403686523438,349.4015808105469,526.1890258789062,359.3641662597656],"content":" ","score":1,"type":"text"},{"bbox":[525,348,558,359],"content":"\\phi=90^{\\circ}","score":0.91,"type":"inline_equation"}]},{"bbox":[303,358.93231201171875,558,370.937255859375],"spans":[{"bbox":[303.3070068359375,358.93231201171875,317.6929931640625,370.937255859375],"content":"and","score":1,"type":"text"},{"bbox":[317.6929931640625,360.3595886230469,319.9909973144531,370.3221740722656],"content":" ","score":1,"type":"text"},{"bbox":[319,359,346,370],"content":"\\phi=0^{\\circ}","score":0.93,"type":"inline_equation"},{"bbox":[348.5849914550781,358.93231201171875,558.4271850585938,370.937255859375],"content":"might be equilibrium points. However, the reason for","score":1,"type":"text"}]},{"bbox":[303,369.89129638671875,558,381.896240234375],"spans":[{"bbox":[303.3070068359375,369.89129638671875,558.4290771484375,381.896240234375],"content":"that is unknown. In this work, we identified that it is the action of","score":1,"type":"text"}]},{"bbox":[303,380.85028076171875,558,392.855224609375],"spans":[{"bbox":[303.3070068359375,380.85028076171875,558.4292602539062,392.855224609375],"content":"a fast MHD shock and the compressive velocity resulting from","score":1,"type":"text"}]},{"bbox":[303,391.80926513671875,543,403.814208984375],"spans":[{"bbox":[303.3070068359375,391.80926513671875,507.73956298828125,403.814208984375],"content":"the gas settlement onto the dense layer that leads to","score":1,"type":"text"},{"bbox":[507.73956298828125,393.2365417480469,510.23101806640625,403.1991271972656],"content":" ","score":1,"type":"text"},{"bbox":[509,392,541,403],"content":"\\phi=90^{\\circ}","score":0.91,"type":"inline_equation"},{"bbox":[541.508056640625,391.80926513671875,543.9987182617188,403.814208984375],"content":".","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,404.4152526855469,558,591.7630004882812],"lines":[{"bbox":[318,404.4152526855469,558,416.4201965332031],"spans":[{"bbox":[318.25103759765625,404.4152526855469,558.4293212890625,416.4201965332031],"content":"Since we have focused on non-gravitational CACs, we have","score":1,"type":"text"}]},{"bbox":[303,415.374267578125,558,427.37921142578125],"spans":[{"bbox":[303.3070373535156,415.374267578125,422.1806335449219,427.37921142578125],"content":"not numerically explored how","score":1,"type":"text"},{"bbox":[423,416,430,426],"content":"\\phi","score":0.83,"type":"inline_equation"},{"bbox":[429.969482421875,415.374267578125,467.13922119140625,427.37921142578125],"content":" becomes","score":1,"type":"text"},{"bbox":[468,416,478,425],"content":"0^{\\circ}","score":0.82,"type":"inline_equation"},{"bbox":[478.39605712890625,415.374267578125,558.4257202148438,427.37921142578125],"content":". However, a discus-","score":1,"type":"text"}]},{"bbox":[303,426.333251953125,558,438.33819580078125],"spans":[{"bbox":[303.30706787109375,426.333251953125,558.42919921875,438.33819580078125],"content":"sion similar to that in Section 4.2.1 leads us to speculate that the","score":1,"type":"text"}]},{"bbox":[303,437,558,449.29718017578125],"spans":[{"bbox":[302,437,329,448],"content":"\\phi=0^{\\circ}","score":0.91,"type":"inline_equation"},{"bbox":[331.6390686035156,437.292236328125,558.4277954101562,449.29718017578125],"content":"configuration may arise in the presence of a stretching ve-","score":1,"type":"text"}]},{"bbox":[303,448.251220703125,558,460.25616455078125],"spans":[{"bbox":[303.30706787109375,448.251220703125,558.4292602539062,460.25616455078125],"content":"locity field, as it would be the case of the tidal flow into the grav-","score":1,"type":"text"}]},{"bbox":[303,459.210205078125,558,471.21514892578125],"spans":[{"bbox":[303.30706787109375,459.210205078125,558.42919921875,471.21514892578125],"content":"itational well of a strongly self-gravitating cloud. In this case,","score":1,"type":"text"}]},{"bbox":[303,470.169189453125,558,483.6681213378906],"spans":[{"bbox":[302,472,309,480],"content":"x","score":0.67,"type":"inline_equation"},{"bbox":[308.22845458984375,470.169189453125,467.49090576171875,482.17413330078125],"content":" would be the direction of the flow and","score":1,"type":"text"},{"bbox":[469,471,481,482],"content":"B_{y}","score":0.87,"type":"inline_equation"},{"bbox":[480.0664367675781,470.169189453125,558.4236450195312,483.6681213378906],"content":" is a magnetic field","score":1,"type":"text"}]},{"bbox":[303,481.127197265625,558,493.13214111328125],"spans":[{"bbox":[303.30706787109375,481.127197265625,558.4292602539062,493.13214111328125],"content":"perturbation perpendicular to that direction. Therefore, equation","score":1,"type":"text"}]},{"bbox":[303,492,558,504.09112548828125],"spans":[{"bbox":[303.30706787109375,492.086181640625,494.9374694824219,504.09112548828125],"content":"(7) for a positive velocity gradient implies that","score":1,"type":"text"},{"bbox":[494.9374694824219,492.086181640625,498.3570556640625,503.9815368652344],"content":" ","score":1,"type":"text"},{"bbox":[497,492,527,504],"content":"d B_{y}/d t","score":0.91,"type":"inline_equation"},{"bbox":[525.9519653320312,492.086181640625,558.4227294921875,504.09112548828125],"content":" has the","score":1,"type":"text"}]},{"bbox":[303,503,558,515.0501098632812],"spans":[{"bbox":[303.30706787109375,503.045166015625,367.4561767578125,515.0501098632812],"content":"opposite sign to","score":1,"type":"text"},{"bbox":[369,503,380,515],"content":"B_{y}","score":0.88,"type":"inline_equation"},{"bbox":[380.4080505371094,503.045166015625,558.4298095703125,515.0501098632812],"content":", straightening the field lines. Thus, we sug-","score":1,"type":"text"}]},{"bbox":[303,514.004150390625,558,526.0090942382812],"spans":[{"bbox":[303.30706787109375,514.004150390625,558.4290771484375,526.0090942382812],"content":"gest that the induction equation in the presence of a compressive","score":1,"type":"text"}]},{"bbox":[303,524.963134765625,558,536.9680786132812],"spans":[{"bbox":[303.30706787109375,524.963134765625,461.3536071777344,536.9680786132812],"content":"or stretching velocity field leads to the","score":1,"type":"text"},{"bbox":[461.3536071777344,526.390380859375,464.7560729980469,536.35302734375],"content":" ","score":1,"type":"text"},{"bbox":[464,525,509,536],"content":"\\phi\\,=\\,0,90^{\\circ}","score":0.91,"type":"inline_equation"},{"bbox":[511.9290771484375,524.963134765625,558.4246215820312,536.9680786132812],"content":"equilibrium","score":1,"type":"text"}]},{"bbox":[303,535.922119140625,558,547.9270629882812],"spans":[{"bbox":[303.30706787109375,535.922119140625,558.42919921875,547.9270629882812],"content":"configurations found by Soler & Hennebelle (2017), justifying","score":1,"type":"text"}]},{"bbox":[303,546.881103515625,558,558.8860473632812],"spans":[{"bbox":[303.30706787109375,546.881103515625,558.42919921875,558.8860473632812],"content":"their speculation that they may be attractors. This also suggests","score":1,"type":"text"}]},{"bbox":[303,557.840087890625,558,569.8450317382812],"spans":[{"bbox":[303.30706787109375,557.840087890625,558.4293212890625,569.8450317382812],"content":"a mechanism for the parallel alignment of the magnetic field to","score":1,"type":"text"}]},{"bbox":[303,568.799072265625,558,580.8040161132812],"spans":[{"bbox":[303.30706787109375,568.799072265625,558.4292602539062,580.8040161132812],"content":"non-self-gravitating structures and its perpendicular alignment","score":1,"type":"text"}]},{"bbox":[303,579.758056640625,543,591.7630004882812],"spans":[{"bbox":[303.30706787109375,579.758056640625,541.463134765625,591.7630004882812],"content":"to self-gravitating ones, as observed in Gómez et al. (2018).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,610,549,631],"lines":[{"bbox":[303.30706787109375,609.6058349609375,547.8319091796875,621.3228759765625],"spans":[{"bbox":[303.30706787109375,609.6058349609375,547.8319091796875,621.3228759765625],"content":"5.3. The effect of strong cooling on the development of the","score":1,"type":"text"}]},{"bbox":[322.41107177734375,620.5648803710938,343.9712219238281,632.2819213867188],"spans":[{"bbox":[322.41107177734375,620.5648803710938,343.9712219238281,632.2819213867188],"content":"NTSI","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,639.381103515625,558,760.9750366210938],"lines":[{"bbox":[303,639.381103515625,558,651.3860473632812],"spans":[{"bbox":[303.30706787109375,639.381103515625,558.4295043945312,651.3860473632812],"content":"Regarding the development of the NTSI, Vishniac (1994) found","score":1,"type":"text"}]},{"bbox":[303,650.340087890625,558,662.3450317382812],"spans":[{"bbox":[303.30706787109375,650.340087890625,558.42919921875,662.3450317382812],"content":"that the requirement for this instability to grow is that the dis-","score":1,"type":"text"}]},{"bbox":[303,661.299072265625,558,673.3040161132812],"spans":[{"bbox":[303.30706787109375,661.299072265625,558.4291381835938,673.3040161132812],"content":"placement of the cold slab is larger than its thickness. This","score":1,"type":"text"}]},{"bbox":[303,672.257080078125,558,684.2620239257812],"spans":[{"bbox":[303.30706787109375,672.257080078125,558.4293212890625,684.2620239257812],"content":"condition can only be satisfied when there is a high compres-","score":1,"type":"text"}]},{"bbox":[303,683.216064453125,558,695.2210083007812],"spans":[{"bbox":[303.30706787109375,683.216064453125,558.4292602539062,695.2210083007812],"content":"sion ratio across the shock yielding a very thin shocked layer.","score":1,"type":"text"}]},{"bbox":[303,694,558,715.2462768554688],"spans":[{"bbox":[303.30706787109375,694.175048828125,468.9551696777344,706.1799926757812],"content":"In the isothermal case, this requires that","score":1,"type":"text"},{"bbox":[468.9551696777344,694.175048828125,473.1270751953125,706.0703735351562],"content":" ","score":1,"type":"text"},{"bbox":[472,694,510,706],"content":"\\mathrm{{\\dot{M}_{s}^{2}}\\ \\gg\\ 1}","score":0.92,"type":"inline_equation"},{"bbox":[484.13885498046875,694.7528686523438,490.76806640625,715.2462768554688],"content":" ","score":1,"type":"text"},{"bbox":[490.76806640625,694.7528686523438,499.9137268066406,712.7852172851562],"content":"≫","score":1,"type":"text"},{"bbox":[555.1046142578125,694.175048828125,558.4221801757812,706.1799926757812],"content":"-","score":1,"type":"text"}]},{"bbox":[303,704,558,717.1390380859375],"spans":[{"bbox":[303.30706787109375,705.1340942382812,510.2998962402344,717.1390380859375],"content":"dimensional simulation described in Section 2 has","score":1,"type":"text"},{"bbox":[513,704,556,717],"content":"M_{\\mathrm{s}}^{2}\\;=\\;4.0","score":0.92,"type":"inline_equation"}]},{"bbox":[303,716.0930786132812,558,728.0980224609375],"spans":[{"bbox":[303.3070068359375,716.0930786132812,558.4292602539062,728.0980224609375],"content":"which is not too large. However, our simulations include strong","score":1,"type":"text"}]},{"bbox":[303,727.0520629882812,558,739.0570068359375],"spans":[{"bbox":[303.3070068359375,727.0520629882812,558.4290161132812,739.0570068359375],"content":"cooling leading to thermal instability, which produces a much","score":1,"type":"text"}]},{"bbox":[303,738.0111083984375,558,750.0160522460938],"spans":[{"bbox":[303.3070068359375,738.0111083984375,558.4292602539062,750.0160522460938],"content":"stronger compression of the condensed layer and a much thin-","score":1,"type":"text"}]},{"bbox":[303,748.9700927734375,558,760.9750366210938],"spans":[{"bbox":[303.3070068359375,748.9700927734375,558.4292602539062,760.9750366210938],"content":"ner slab dimension, even for moderate Mach numbers (Vázquez-","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[173,34,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[454,770,559,780],"lines":[{"bbox":[455.19500732421875,769.81591796875,558.4251708984375,780.6204223632812],"spans":[{"bbox":[455.19500732421875,769.81591796875,558.4251708984375,780.6204223632812],"content":"Article number, page 7 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":6,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[34,53,560,421],"blocks":[{"bbox":[90,53,504,364],"lines":[{"bbox":[90,53,504,364],"spans":[{"bbox":[90,53,504,364],"image_path":"aca9ca0eba0cfc506c1ed152a99dde59fcdfdff8ca6469b58b582da21fa829cf.jpg","score":0.9999658465385437,"type":"image"}]}],"type":"image_body"},{"bbox":[34,369,560,421],"lines":[{"bbox":[36.849998474121094,369.34027099609375,558.4263305664062,381.0055847167969],"spans":[{"bbox":[36.849998474121094,369.34027099609375,61.19377517700195,381.0055847167969],"content":"Fig. 4.","score":1,"type":"text"},{"bbox":[61.19377517700195,369.6630859375,558.4263305664062,380.46759033203125],"content":" Regions used to compute the HRO diagram and the shape parameter shown in Figure 3. The yellow surfaces are density isocountours","score":1,"type":"text"}]},{"bbox":[107.58592224121094,379,558.429443359375,390.43060302734375],"spans":[{"bbox":[107.58592224121094,379.6260986328125,172.0812225341797,390.43060302734375],"content":"s represent the m","score":1,"type":"text"},{"bbox":[247.29139709472656,379.6260986328125,328.7152099609375,390.43060302734375],"content":"p left panel correspon","score":1,"type":"text"},{"bbox":[411.03564453125,379.6260986328125,414.43402099609375,390.33197021484375],"content":" ","score":1,"type":"text"},{"bbox":[413,379,484,390],"content":"n~\\in~[10,30]~\\,\\mathrm{cm}^{-3}","score":0.89,"type":"inline_equation"},{"bbox":[483.79302978515625,379.6260986328125,558.429443359375,390.43060302734375],"content":", the top right panel","score":1,"type":"text"}]},{"bbox":[36,389,558.4212036132812,406.3383483886719],"spans":[{"bbox":[36,389,108,399],"content":"n\\,\\in\\,[30,100]\\,\\mathrm{\\cm}^{-3}","score":0.91,"type":"inline_equation"},{"bbox":[41.33323669433594,390.1091613769531,49.84602737426758,406.3383483886719],"content":" ∈","score":1,"type":"text"},{"bbox":[108.31404113769531,389.589111328125,167.57298278808594,400.39361572265625],"content":", the bottom left","score":1,"type":"text"},{"bbox":[169,389,246,399],"content":"\\bar{n\\mathrm{~\\in~}}[100,300]~\\mathrm{cm}^{-3}","score":0.91,"type":"inline_equation"},{"bbox":[174.9512481689453,390.1091613769531,183.4640350341797,406.3383483886719],"content":" ∈","score":1,"type":"text"},{"bbox":[246.4150390625,389.589111328125,326.5029602050781,400.39361572265625],"content":", and the bottom right","score":1,"type":"text"},{"bbox":[328,389,410,399],"content":"n\\,\\in\\,[\\bar{300},1000]\\,\\,\\mathrm{cm}^{-\\bar{3}}","score":0.89,"type":"inline_equation"},{"bbox":[333.88323974609375,390.1091613769531,342.3960266113281,406.3383483886719],"content":" ∈","score":1,"type":"text"},{"bbox":[409.83001708984375,389.589111328125,558.4212036132812,400.39361572265625],"content":". It can be seen that, for the four density","score":1,"type":"text"}]},{"bbox":[36.850006103515625,399.5511169433594,558.4254150390625,410.3556213378906],"spans":[{"bbox":[36.850006103515625,399.5511169433594,558.4254150390625,410.3556213378906],"content":"intervals shown here, the magnetic field is noticeably parallel to the density structures. However, the magnetic field shows a deviation from this","score":1,"type":"text"}]},{"bbox":[36.850006103515625,409.5141296386719,528.2625122070312,420.3186340332031],"spans":[{"bbox":[36.850006103515625,409.5141296386719,528.2625122070312,420.3186340332031],"content":"trend for the highest density interval in the bottom right panel. We provide animations showing these regions as complementary material.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[34,434,294,594],"blocks":[{"bbox":[39,434,285,556],"lines":[{"bbox":[39,434,285,556],"spans":[{"bbox":[39,434,285,556],"image_path":"20309197b63052a64026f18a145ddb4f27a29b93ae7e58f1c22554a3457647fe.jpg","score":0.999991774559021,"type":"image"}]}],"type":"image_body"},{"bbox":[34,562,294,594],"lines":[{"bbox":[36.849998474121094,561.5473022460938,291.9652099609375,573.2125854492188],"spans":[{"bbox":[36.849998474121094,561.5473022460938,61.66899490356445,573.2125854492188],"content":"Fig. 5.","score":1,"type":"text"},{"bbox":[61.66899490356445,561.8700561523438,291.9652099609375,572.674560546875],"content":" Initial line bending model. The magnetic field is represented","score":1,"type":"text"}]},{"bbox":[36.85000228881836,571.8330688476562,291.970947265625,582.6375732421875],"spans":[{"bbox":[36.85000228881836,571.8330688476562,291.970947265625,582.6375732421875],"content":"by the green line, while the velocity field is represented by the black","score":1,"type":"text"}]},{"bbox":[36.85000228881836,581.7960815429688,63.2650146484375,592.6005859375],"spans":[{"bbox":[36.85000228881836,581.7960815429688,63.2650146484375,592.6005859375],"content":"arrows.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,612.403564453125,291,690.1625366210938],"lines":[{"bbox":[36,612.403564453125,291,624.4085083007812],"spans":[{"bbox":[36.85000228881836,612.403564453125,184.93408203125,624.4085083007812],"content":"Semadeni et al. 1996). So, it is not di","score":1,"type":"text"},{"bbox":[184.9320068359375,614.056884765625,193.17108154296875,624.0194702148438],"content":"ffi","score":1,"type":"text"},{"bbox":[193.17100524902344,612.403564453125,291.9700927734375,624.4085083007812],"content":"cult to fulfill the require-","score":1,"type":"text"}]},{"bbox":[36,623.3626098632812,291,635.3675537109375],"spans":[{"bbox":[36.850006103515625,623.3626098632812,218.0796661376953,635.3675537109375],"content":"ment for the development of the NTSI at the","score":1,"type":"text"},{"bbox":[218.0796661376953,623.3626098632812,263.1861267089844,635.2579345703125],"content":" condensed","score":1,"type":"text"},{"bbox":[263.1860046386719,623.3626098632812,291.96795654296875,635.3675537109375],"content":", rather","score":1,"type":"text"}]},{"bbox":[36,634.3215942382812,291,646.3265380859375],"spans":[{"bbox":[36.850006103515625,634.3215942382812,291.97222900390625,646.3265380859375],"content":"than the shocked, layer (Hueckstaedt 2003), as demonstrated by","score":1,"type":"text"}]},{"bbox":[36,645.2805786132812,291,657.2855224609375],"spans":[{"bbox":[36.850006103515625,645.2805786132812,291.9722595214844,657.2855224609375],"content":"the growth of the bending mode perturbation (the increase in","score":1,"type":"text"}]},{"bbox":[36,656.2396240234375,291,668.2445678710938],"spans":[{"bbox":[36.850006103515625,656.2396240234375,291.9722595214844,668.2445678710938],"content":"the curvature) for the dense layer in our 2D simulation. This","score":1,"type":"text"}]},{"bbox":[36,667.1986083984375,291,679.2035522460938],"spans":[{"bbox":[36.850006103515625,667.1986083984375,291.97222900390625,679.2035522460938],"content":"means that NTSI can be triggered by not-so-strong shocks in","score":1,"type":"text"}]},{"bbox":[36,678.1575927734375,138.677734375,690.1625366210938],"spans":[{"bbox":[36.850006103515625,678.1575927734375,138.677734375,690.1625366210938],"content":"the strongly cooling case.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,707,273,730],"lines":[{"bbox":[36.850006103515625,708.120361328125,272.42156982421875,719.83740234375],"spans":[{"bbox":[36.850006103515625,708.120361328125,272.42156982421875,719.83740234375],"content":"5.4. The effect of the magnetic field on the NTSI and the","score":1,"type":"text"}]},{"bbox":[55.95500564575195,719.0794067382812,105.30291748046875,730.7964477539062],"spans":[{"bbox":[55.95500564575195,719.0794067382812,105.30291748046875,730.7964477539062],"content":"shear strain","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,738.0115966796875,291,760.9755249023438],"lines":[{"bbox":[36,738.0115966796875,291,750.0165405273438],"spans":[{"bbox":[36.850006103515625,738.0115966796875,291.9722595214844,750.0165405273438],"content":"The NTSI is one of the possible mechanisms yielding the shear","score":1,"type":"text"}]},{"bbox":[36,748.9705810546875,291,760.9755249023438],"spans":[{"bbox":[36.850006103515625,748.9705810546875,291.9721984863281,760.9755249023438],"content":"strain proposed by Hennebelle (2013) to be responsible for the","score":1,"type":"text"}]},{"bbox":[303,438.42962646484375,558,450.4345703125],"spans":[{"bbox":[303.3070068359375,438.42962646484375,558.42919921875,450.4345703125],"content":"elongation of filamentary CACs and the alignment of these struc-","score":1,"type":"text"}]},{"bbox":[303,449.38861083984375,558,461.3935546875],"spans":[{"bbox":[303.3070068359375,449.38861083984375,558.42919921875,461.3935546875],"content":"tures with the local magnetic field, since it produces the momen-","score":1,"type":"text"}]},{"bbox":[303,460.34759521484375,558,472.3525390625],"spans":[{"bbox":[303.3070068359375,460.34759521484375,558.4291381835938,472.3525390625],"content":"tum transport from the original inflow direction to that parallel","score":1,"type":"text"}]},{"bbox":[303,471.30657958984375,558,483.3115234375],"spans":[{"bbox":[303.3070068359375,471.30657958984375,558.4290161132812,483.3115234375],"content":"to the dense layer in the regions around the nodes, as can be","score":1,"type":"text"}]},{"bbox":[303,482.26556396484375,558,494.2705078125],"spans":[{"bbox":[303.3070068359375,482.26556396484375,558.4292602539062,494.2705078125],"content":"seen in Figure 7. However, Heitsch et al. (2007) found that when","score":1,"type":"text"}]},{"bbox":[303,493.22454833984375,558,505.2294921875],"spans":[{"bbox":[303.3070068359375,493.22454833984375,558.4292602539062,505.2294921875],"content":"the magnetic field is aligned with the inflow, it tends to weaken","score":1,"type":"text"}]},{"bbox":[303,504.18353271484375,558,516.1884765625],"spans":[{"bbox":[303.3070068359375,504.18353271484375,558.4293212890625,516.1884765625],"content":"or even suppress the NTSI due to the magnetic tension coun-","score":1,"type":"text"}]},{"bbox":[303,515.1425170898438,558,527.1474609375],"spans":[{"bbox":[303.3070068359375,515.1425170898438,558.42919921875,527.1474609375],"content":"teracting the transverse momentum transport. Nevertheless, the","score":1,"type":"text"}]},{"bbox":[303,526.1015014648438,558,538.1064453125],"spans":[{"bbox":[303.3070068359375,526.1015014648438,325.44390869140625,538.1064453125],"content":"NTSI","score":1,"type":"text"},{"bbox":[325.44390869140625,526.1015014648438,342.78399658203125,537.996826171875],"content":" can","score":1,"type":"text"},{"bbox":[342.78399658203125,526.1015014648438,558.4205322265625,538.1064453125],"content":" contribute to the change of direction of the magnetic","score":1,"type":"text"}]},{"bbox":[303,537.0604858398438,558,549.0654296875],"spans":[{"bbox":[303.3070068359375,537.0604858398438,558.4291381835938,549.0654296875],"content":"field if the flow surrounding the dense layer, remains at least","score":1,"type":"text"}]},{"bbox":[303,548.0184936523438,558,560.0234375],"spans":[{"bbox":[303.3070068359375,548.0184936523438,426.56427001953125,560.0234375],"content":"transalfvénic, so that it has su","score":1,"type":"text"},{"bbox":[426.56298828125,549.6718139648438,434.80206298828125,559.6343994140625],"content":"ffi","score":1,"type":"text"},{"bbox":[434.802001953125,548.0184936523438,558.4279174804688,560.0234375],"content":"cient energy to bend the field.","score":1,"type":"text"}]},{"bbox":[303,558.9774780273438,558,570.982421875],"spans":[{"bbox":[303.3070068359375,558.9774780273438,558.4292602539062,570.982421875],"content":"This condition is indeed satisfied by the flow between the shock","score":1,"type":"text"}]},{"bbox":[303,569.9364624023438,558,581.94140625],"spans":[{"bbox":[303.3070068359375,569.9364624023438,558.4290771484375,581.94140625],"content":"and the condensation front, as can be seen for the 2D simulation","score":1,"type":"text"}]},{"bbox":[303,580.8954467773438,558,592.900390625],"spans":[{"bbox":[303.3070068359375,580.8954467773438,558.4290161132812,592.900390625],"content":"in both panels of Figure 7. Note, incidentally, that the flow inside","score":1,"type":"text"}]},{"bbox":[303,591.8544921875,462.6687316894531,603.8594360351562],"spans":[{"bbox":[303.3070068359375,591.8544921875,462.6687316894531,603.8594360351562],"content":"the dense layer is generally subalfvénic.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,438.42962646484375,558,603.8594360351562],"lines":[],"lines_deleted":true,"type":"text"},{"bbox":[303,606.5044555664062,558,760.9754028320312],"lines":[{"bbox":[318.2510070800781,606.5044555664062,558,618.5093994140625],"spans":[{"bbox":[318.2510070800781,606.5044555664062,558.4293212890625,618.5093994140625],"content":"Another source of shear strain that does not require the NTSI","score":1,"type":"text"}]},{"bbox":[303,617.4634399414062,558,629.4683837890625],"spans":[{"bbox":[303.3070068359375,617.4634399414062,558.42919921875,629.4683837890625],"content":"is observed in our 3D simulation, which does not include an ini-","score":1,"type":"text"}]},{"bbox":[303,628.4224853515625,558,640.4274291992188],"spans":[{"bbox":[303.3070068359375,628.4224853515625,558.4291381835938,640.4274291992188],"content":"tial bending-mode perturbation to the locus of the collision front.","score":1,"type":"text"}]},{"bbox":[303,639.3814697265625,558,651.3864135742188],"spans":[{"bbox":[303.3070068359375,639.3814697265625,558.4292602539062,651.3864135742188],"content":"This arises later in the evolution, when the magnetic field lines","score":1,"type":"text"}]},{"bbox":[303,650.3404541015625,558,662.3453979492188],"spans":[{"bbox":[303.3070068359375,650.3404541015625,558.4293212890625,662.3453979492188],"content":"have already been dragged and bent by the compressive velocity","score":1,"type":"text"}]},{"bbox":[303,661.2994384765625,558,673.3043823242188],"spans":[{"bbox":[303.3070068359375,661.2994384765625,558.42919921875,673.3043823242188],"content":"field. At this time, the transalfvénic condition of the post-shock","score":1,"type":"text"}]},{"bbox":[303,672.2574462890625,558,684.2623901367188],"spans":[{"bbox":[303.3070068359375,672.2574462890625,558.4291381835938,684.2623901367188],"content":"flow allows the magnetic field to partially re-orient the gas flow","score":1,"type":"text"}]},{"bbox":[303,683.2164306640625,558,695.2213745117188],"spans":[{"bbox":[303.3070068359375,683.2164306640625,558.4293212890625,695.2213745117188],"content":"along them. Since the field lines have been oriented nearly par-","score":1,"type":"text"}]},{"bbox":[303,694.1754150390625,558,706.1803588867188],"spans":[{"bbox":[303.3070068359375,694.1754150390625,558.42919921875,706.1803588867188],"content":"allel to the dense layer by the compressive post-shock flow, the","score":1,"type":"text"}]},{"bbox":[303,705.1344604492188,558,717.139404296875],"spans":[{"bbox":[303.3070068359375,705.1344604492188,558.4292602539062,717.139404296875],"content":"velocity field is also oriented in a similar way, and in opposite","score":1,"type":"text"}]},{"bbox":[303,716.0934448242188,558,728.098388671875],"spans":[{"bbox":[303.3070068359375,716.0934448242188,558.4293212890625,728.098388671875],"content":"directions on each side of the dense layer, therefore adding a","score":1,"type":"text"}]},{"bbox":[303,727.0524291992188,558,739.057373046875],"spans":[{"bbox":[303.3070068359375,727.0524291992188,558.4293823242188,739.057373046875],"content":"strong shear component to the flow around the layer. We can","score":1,"type":"text"}]},{"bbox":[303,738.011474609375,558,750.0164184570312],"spans":[{"bbox":[303.3070068359375,738.011474609375,558.4292602539062,750.0164184570312],"content":"see one example of this situation in Figure 9, where the velocity","score":1,"type":"text"}]},{"bbox":[303,748.970458984375,558,760.9754028320312],"spans":[{"bbox":[303.3070068359375,748.970458984375,558.42919921875,760.9754028320312],"content":"fields are represented by dark arrows and the magnetic field lines","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[37,771,139,779],"lines":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"spans":[{"bbox":[36.850006103515625,769.8160400390625,140.08016967773438,780.6205444335938],"content":"Article number, page 8 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[241,34,355,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":7,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,65,559,372],"blocks":[{"bbox":[76,65,519,332],"lines":[{"bbox":[76,65,519,332],"spans":[{"bbox":[76,65,519,332],"image_path":"a016e35e4123cb93083ceab6f631eedd0ca3e0cb0f667feab77b85ceaa4993ac.jpg","score":0.9999589323997498,"type":"image"}]}],"type":"image_body"},{"bbox":[35,350,559,372],"lines":[{"bbox":[36.849998474121094,350.5032653808594,558.4287719726562,362.1685791015625],"spans":[{"bbox":[36.849998474121094,350.5032653808594,60.53923034667969,362.1685791015625],"content":"Fig. 6.","score":1,"type":"text"},{"bbox":[60.53923034667969,350.8260803222656,126.00564575195312,361.6305847167969],"content":" Number density (","score":1,"type":"text"},{"bbox":[126.00900268554688,350.8260803222656,137.4680633544922,361.5319519042969],"content":"top","score":1,"type":"text"},{"bbox":[137.46800231933594,350.8260803222656,184.7119598388672,361.6305847167969],"content":"), velocities (","score":1,"type":"text"},{"bbox":[184.71400451660156,350.8260803222656,209.12054443359375,361.5319519042969],"content":"middle","score":1,"type":"text"},{"bbox":[209.12100219726562,350.8260803222656,337.914306640625,361.6305847167969],"content":"), and magnetic fields components (","score":1,"type":"text"},{"bbox":[337.9169921875,350.8260803222656,362.82568359375,361.5319519042969],"content":"bottom","score":1,"type":"text"},{"bbox":[362.8249816894531,350.8260803222656,460.3883056640625,361.6305847167969],"content":") along a ray parallel to the","score":1,"type":"text"},{"bbox":[460.3883056640625,350.8260803222656,463.2359924316406,361.5319519042969],"content":" ","score":1,"type":"text"},{"bbox":[462,353,468,360],"content":"x","score":0.79,"type":"inline_equation"},{"bbox":[467.2170715332031,350.8260803222656,511.30181884765625,361.6305847167969],"content":" axis at time","score":1,"type":"text"},{"bbox":[511.30181884765625,350.8260803222656,513.7039794921875,361.5319519042969],"content":" ","score":1,"type":"text"},{"bbox":[513,351,539,360],"content":"t=0.7","score":0.84,"type":"inline_equation"},{"bbox":[538.837158203125,350.8260803222656,558.4287719726562,361.6305847167969],"content":" Myr.","score":1,"type":"text"}]},{"bbox":[36.849945068359375,360.7890930175781,438.78662109375,371.5935974121094],"spans":[{"bbox":[36.849945068359375,360.7890930175781,438.78662109375,371.5935974121094],"content":"It can be seen that the profile of these quantities agrees with the assumptions made for the line bending analysis.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[35,386,559,679],"blocks":[{"bbox":[66,386,526,649],"lines":[{"bbox":[66,386,526,649],"spans":[{"bbox":[66,386,526,649],"image_path":"ca926a5bb8d76affe5cf74afe2fdf2a009d6f84a3c5cb864ab27dabc8bc5df1a.jpg","score":0.9999905824661255,"type":"image"}]}],"type":"image_body"},{"bbox":[35,658,559,679],"lines":[{"bbox":[36.849998474121094,658.0072631835938,558.424072265625,669.6725463867188],"spans":[{"bbox":[36.849998474121094,658.0072631835938,60.126773834228516,669.6725463867188],"content":"Fig. 7.","score":1,"type":"text"},{"bbox":[60.126773834228516,658.3300170898438,558.424072265625,669.134521484375],"content":" Two-dimensional simulation of warn atomic colliding flows with a curvilinear collision interface at 0.04 Myr (left panel) and 3.0 Myr (right","score":1,"type":"text"}]},{"bbox":[36.849998474121094,668.2930297851562,353.25634765625,679.0975341796875],"spans":[{"bbox":[36.849998474121094,668.2930297851562,353.25634765625,679.0975341796875],"content":"panel). The two color bars represent the number density and the Alfvénic Mach number.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,697.2095947265625,291,753.0494995117188],"lines":[{"bbox":[36,697.2095947265625,291,709.2145385742188],"spans":[{"bbox":[36.849998474121094,697.2095947265625,291.9722595214844,709.2145385742188],"content":"are color-coded with the Alfvénic Mach number. In this Figure,","score":1,"type":"text"}]},{"bbox":[36,708.1685791015625,291,720.1735229492188],"spans":[{"bbox":[36.849998474121094,708.1685791015625,291.9721984863281,720.1735229492188],"content":"the troughs and peaks of the CACs do not show corresponding","score":1,"type":"text"}]},{"bbox":[36,719.1275634765625,291,731.1325073242188],"spans":[{"bbox":[36.849998474121094,719.1275634765625,291.97222900390625,731.1325073242188],"content":"converging and diverging velocity fields, as would correspond to","score":1,"type":"text"}]},{"bbox":[36,730.0855712890625,291,742.0905151367188],"spans":[{"bbox":[36.849998474121094,730.0855712890625,291.9722900390625,742.0905151367188],"content":"the NTSI, and so the structure at this point appears not have been","score":1,"type":"text"}]},{"bbox":[36,741.0445556640625,139.15589904785156,753.0494995117188],"spans":[{"bbox":[36.849998474121094,741.0445556640625,139.15589904785156,753.0494995117188],"content":"formed by this instability.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,697.3953857421875,553.9365234375,709.1124267578125],"lines":[{"bbox":[303,697.3953857421875,553.9365234375,709.1124267578125],"spans":[{"bbox":[303.3070068359375,697.3953857421875,553.9365234375,709.1124267578125],"content":"5.5. Inhibition of turbulence generation by the magnetic field","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,716.0935668945312,558,760.9755249023438],"lines":[{"bbox":[303,716.0935668945312,558,728.0985107421875],"spans":[{"bbox":[303.3070068359375,716.0935668945312,558.4292602539062,728.0985107421875],"content":"It has been noticed in previous works that MHD simulations of","score":1,"type":"text"}]},{"bbox":[303,727.0526123046875,558,739.0575561523438],"spans":[{"bbox":[303.3070068359375,727.0526123046875,558.42919921875,739.0575561523438],"content":"cloud formation are less turbulent and show more filamentary","score":1,"type":"text"}]},{"bbox":[303,738.0115966796875,558,750.0165405273438],"spans":[{"bbox":[303.3070068359375,738.0115966796875,558.42919921875,750.0165405273438],"content":"structure than pure hydrodynamical simulations (e.g., Heitsch","score":1,"type":"text"}]},{"bbox":[303,748.9705810546875,558,760.9755249023438],"spans":[{"bbox":[303.3070068359375,748.9705810546875,558.4292602539062,760.9755249023438],"content":"et al. 2007, 2009; Hennebelle 2013; Zamora-Avilés et al. 2018).","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[174,34,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[455,770,558,780],"lines":[{"bbox":[455.19500732421875,769.8160400390625,558.4251708984375,780.6205444335938],"spans":[{"bbox":[455.19500732421875,769.8160400390625,558.4251708984375,780.6205444335938],"content":"Article number, page 9 of 11","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":8,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,74,560,288],"blocks":[{"bbox":[109,74,481,226],"lines":[{"bbox":[109,74,481,226],"spans":[{"bbox":[109,74,481,226],"image_path":"1f27ef2fef6114f0de68838b3cd40ce18aa5c7664de720b06628a3bbd4d0ee35.jpg","score":0.9999811053276062,"type":"image"}]}],"type":"image_body"},{"bbox":[35,266,560,288],"lines":[{"bbox":[36.849998474121094,266.5202331542969,558.4307250976562,278.185546875],"spans":[{"bbox":[36.849998474121094,266.5202331542969,60.61992645263672,278.185546875],"content":"Fig. 8.","score":1,"type":"text"},{"bbox":[60.61992645263672,266.8430480957031,558.4307250976562,277.6475524902344],"content":" Line bending model for the colliding flows with curvilinear collision interface. The left panel represents the initial state and the right one","score":1,"type":"text"}]},{"bbox":[36.849998474121094,276.8060607910156,477.6650085449219,287.6105651855469],"spans":[{"bbox":[36.849998474121094,276.8060607910156,477.6650085449219,287.6105651855469],"content":"the evolution according to the analytical model given by equation (8). In this sketch, the black arrows are the velocity field.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[35,296,560,682],"blocks":[{"bbox":[65,296,530,646],"lines":[{"bbox":[65,296,530,646],"spans":[{"bbox":[65,296,530,646],"image_path":"329815eddd82ed213d9de2f0ae154fcbb8ec8ab94130238c0b92f0f166ff1bad.jpg","score":0.9999808073043823,"type":"image"}]}],"type":"image_body"},{"bbox":[35,650,560,682],"lines":[{"bbox":[36.849998474121094,650.9202880859375,558.4234619140625,662.5855712890625],"spans":[{"bbox":[36.849998474121094,650.9202880859375,60.835121154785156,662.5855712890625],"content":"Fig. 9.","score":1,"type":"text"},{"bbox":[60.835121154785156,651.2430419921875,558.4234619140625,662.0475463867188],"content":" A couple of filamentary CACs located in the left-down corner. In the provided animation showing this region, it can be seen a turbulent","score":1,"type":"text"}]},{"bbox":[36.849998474121094,661.2060546875,558.42529296875,672.0105590820312],"spans":[{"bbox":[36.849998474121094,661.2060546875,558.42529296875,672.0105590820312],"content":"shear strain velocity field along their main axis and aligned with the local magnetic field. Note that the velocity field on the filamentary CACs is","score":1,"type":"text"}]},{"bbox":[36.849998474121094,671.1680297851562,236.56793212890625,681.9725341796875],"spans":[{"bbox":[36.849998474121094,671.1680297851562,43.82585906982422,681.9725341796875],"content":"di","score":1,"type":"text"},{"bbox":[43.82599639892578,672.6560668945312,49.20583724975586,681.6224365234375],"content":"ff","score":1,"type":"text"},{"bbox":[49.205997467041016,671.1680297851562,236.56793212890625,681.9725341796875],"content":"erent from the one expected in the case of the NTSI.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,700.0845947265625,291,755.9244995117188],"lines":[{"bbox":[36,700.0845947265625,291,712.0895385742188],"spans":[{"bbox":[36.849998474121094,700.0845947265625,291.9722595214844,712.0895385742188],"content":"The generation of turbulence in curved compressed layers is due","score":1,"type":"text"}]},{"bbox":[36,711.0435791015625,291,723.0485229492188],"spans":[{"bbox":[36.849998474121094,711.0435791015625,291.9721984863281,723.0485229492188],"content":"to the KH instability, which in turn is triggered by the shear","score":1,"type":"text"}]},{"bbox":[36,722.0025634765625,291,734.0075073242188],"spans":[{"bbox":[36.849998474121094,722.0025634765625,291.9721984863281,734.0075073242188],"content":"flow produced by the NTSI (e.g. Blondin & Marks 1996; Heitsch","score":1,"type":"text"}]},{"bbox":[36,732.9615478515625,291,744.9664916992188],"spans":[{"bbox":[36.849998474121094,732.9615478515625,291.9722595214844,744.9664916992188],"content":"et al. 2006). Therefore, the magnetic tension, which opposes the","score":1,"type":"text"}]},{"bbox":[36,743.9195556640625,291,755.9244995117188],"spans":[{"bbox":[36.849998474121094,743.9195556640625,291.9723205566406,755.9244995117188],"content":"vorticity generation by the shear flow across the dense layer, may","score":1,"type":"text"}]},{"bbox":[303,700.0845947265625,558,712.0895385742188],"spans":[{"bbox":[303.3070068359375,700.0845947265625,558.429443359375,712.0895385742188],"content":"suppress the development of the KHI and, as a consequence,","score":1,"type":"text"}]},{"bbox":[303,711.0435791015625,558,723.0485229492188],"spans":[{"bbox":[303.3070068359375,711.0435791015625,558.42919921875,723.0485229492188],"content":"the generation of turbulence. Indeed, a 2D numerical simulation","score":1,"type":"text"}]},{"bbox":[303,722.0025634765625,558,734.0075073242188],"spans":[{"bbox":[303.3070068359375,722.0025634765625,558.42919921875,734.0075073242188],"content":"without the magnetic field exhibits a much stronger turbulence","score":1,"type":"text"}]},{"bbox":[303,732.9615478515625,407.26678466796875,744.9664916992188],"spans":[{"bbox":[303.3070068359375,732.9615478515625,407.26678466796875,744.9664916992188],"content":"level, as shown in Fig. 10.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,700.0845947265625,558,744.9664916992188],"lines":[],"lines_deleted":true,"type":"text"}]},{"discarded_blocks":[{"bbox":[36,771,144,779],"lines":[{"bbox":[36.850006103515625,769.8156127929688,144.56336975097656,780.6201171875],"spans":[{"bbox":[36.850006103515625,769.8156127929688,144.56336975097656,780.6201171875],"content":"Article number, page 10 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[240,33,355,43],"lines":[{"bbox":[240.98399353027344,32.58107376098633,354.29205322265625,43.38558578491211],"spans":[{"bbox":[240.98399353027344,32.58107376098633,247.45773315429688,43.38558578491211],"content":"A","score":1,"type":"text"},{"bbox":[247.45700073242188,34.06907653808594,254.432861328125,43.03547668457031],"content":"&","score":1,"type":"text"},{"bbox":[254.43299865722656,32.58107376098633,288.55010986328125,43.38558578491211],"content":"A proofs:","score":1,"type":"text"},{"bbox":[288.55010986328125,32.58107376098633,354.29205322265625,43.38558578491211],"content":" manuscript no. aa","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":9,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[35,68,293,291],"blocks":[{"bbox":[53,68,287,260],"lines":[{"bbox":[53,68,287,260],"spans":[{"bbox":[53,68,287,260],"image_path":"f7d15609b829074edcf52302d5aa20bf41366e9877b3972fd966eb807c8644fb.jpg","score":0.9999957084655762,"type":"image"}]}],"type":"image_body"},{"bbox":[35,270,293,291],"lines":[{"bbox":[36.849998474121094,269.5072326660156,291.96533203125,281.17254638671875],"spans":[{"bbox":[36.849998474121094,269.5072326660156,67.66751861572266,281.17254638671875],"content":"Fig. 10.","score":1,"type":"text"},{"bbox":[67.66751861572266,269.8300476074219,291.96533203125,280.6345520019531],"content":" Non-magnetic version of the two-dimensional simulation","score":1,"type":"text"}]},{"bbox":[36.849998474121094,279.7930603027344,103.87384033203125,290.5975646972656],"spans":[{"bbox":[36.849998474121094,279.7930603027344,103.87384033203125,290.5975646972656],"content":"shown in Figure 7.","score":1,"type":"text"}]}],"type":"image_caption"}],"type":"image"},{"bbox":[36,310,188,319],"lines":[{"bbox":[36.849998474121094,309.3853759765625,187.3450469970703,321.1024169921875],"spans":[{"bbox":[36.849998474121094,309.3853759765625,187.3450469970703,321.1024169921875],"content":"5.6. Comparison with previous work","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,326.7995910644531,291,415.5164794921875],"lines":[{"bbox":[36,326.7995910644531,291,338.8045349121094],"spans":[{"bbox":[36.849998474121094,326.7995910644531,291.97222900390625,338.8045349121094],"content":"The superalfvénic nature of the initial inflow in our simulations,","score":1,"type":"text"}]},{"bbox":[36,337.75860595703125,291,349.7635498046875],"spans":[{"bbox":[36.849998474121094,337.75860595703125,291.9722595214844,349.7635498046875],"content":"and its continuation downstream as a transalfvénic flow, allow","score":1,"type":"text"}]},{"bbox":[36,348.71759033203125,291,360.7225341796875],"spans":[{"bbox":[36.849998474121094,348.71759033203125,291.9722900390625,360.7225341796875],"content":"the dragging and amplification of the magnetic field, in agree-","score":1,"type":"text"}]},{"bbox":[36,359.67559814453125,291,371.6805419921875],"spans":[{"bbox":[36.849998474121094,359.67559814453125,291.9721984863281,371.6805419921875],"content":"ment with Skalidis et al. (2022) whose observations reported","score":1,"type":"text"}]},{"bbox":[36,370.63458251953125,291,384.134521484375],"spans":[{"bbox":[36.849998474121094,370.63458251953125,158.52322387695312,382.6395263671875],"content":"transalfvénic turbulence in the","score":1,"type":"text"},{"bbox":[159,371,185,381],"content":"\\mathrm{H}\\mathrm{I}\\mathrm{-}\\mathrm{H}_{2}","score":0.83,"type":"inline_equation"},{"bbox":[184.9618682861328,370.63458251953125,291.97265625,384.134521484375],"content":" transition region. Accord-","score":1,"type":"text"}]},{"bbox":[36,381.59356689453125,291,393.5985107421875],"spans":[{"bbox":[36.8499755859375,381.59356689453125,291.9722595214844,393.5985107421875],"content":"ing to these authors, atomic gas might accumulate along mag-","score":1,"type":"text"}]},{"bbox":[36,392.55255126953125,291,404.5574951171875],"spans":[{"bbox":[36.8499755859375,392.55255126953125,291.97222900390625,404.5574951171875],"content":"netic field lines, which is also in agreement with our results (see","score":1,"type":"text"}]},{"bbox":[36,403.51153564453125,76.14246368408203,415.5164794921875],"spans":[{"bbox":[36.8499755859375,403.51153564453125,76.14246368408203,415.5164794921875],"content":"Figure 9).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,414.7155456542969,291,514.3914184570312],"lines":[{"bbox":[51,414.7155456542969,291,426.7204895019531],"spans":[{"bbox":[51.793975830078125,414.7155456542969,291.9723205566406,426.7204895019531],"content":"In this work, our simulations consider only the formation of","score":1,"type":"text"}]},{"bbox":[36,425.674560546875,291,437.67950439453125],"spans":[{"bbox":[36.8499755859375,425.674560546875,291.97222900390625,437.67950439453125],"content":"clouds by the collision of converging cold atomic flows. How-","score":1,"type":"text"}]},{"bbox":[36,436.633544921875,291,448.63848876953125],"spans":[{"bbox":[36.8499755859375,436.633544921875,291.9722595214844,448.63848876953125],"content":"ever, the main physical processes responsible for the alignment","score":1,"type":"text"}]},{"bbox":[36,447.592529296875,291,459.59747314453125],"spans":[{"bbox":[36.8499755859375,447.592529296875,291.9722595214844,459.59747314453125],"content":"of magnetic field lines and density structures, MHD shocks, and","score":1,"type":"text"}]},{"bbox":[36,458.551513671875,291,470.55645751953125],"spans":[{"bbox":[36.8499755859375,458.551513671875,291.9722595214844,470.55645751953125],"content":"the NTSI, can be also present at the interfaces between interact-","score":1,"type":"text"}]},{"bbox":[36,469.510498046875,291,481.51544189453125],"spans":[{"bbox":[36.8499755859375,469.510498046875,150.64280700683594,481.51544189453125],"content":"ing wind-blown bubbles and","score":1,"type":"text"},{"bbox":[150.64097595214844,471.163818359375,153.3607635498047,481.1264343261719],"content":"/","score":1,"type":"text"},{"bbox":[153.36097717285156,469.510498046875,291.9706115722656,481.51544189453125],"content":"or supernova shells. Therefore, the","score":1,"type":"text"}]},{"bbox":[36,480.468505859375,291,492.47344970703125],"spans":[{"bbox":[36.8499755859375,480.468505859375,291.9721984863281,492.47344970703125],"content":"MHD shocks and the NTSI could also be the principal physi-","score":1,"type":"text"}]},{"bbox":[36,491.427490234375,291,503.43243408203125],"spans":[{"bbox":[36.8499755859375,491.427490234375,291.97222900390625,503.43243408203125],"content":"cal mechanisms behind the magnetic field alignment with fibers","score":1,"type":"text"}]},{"bbox":[36,502.386474609375,234.97616577148438,514.3914184570312],"spans":[{"bbox":[36.8499755859375,502.386474609375,234.97616577148438,514.3914184570312],"content":"found in this type of object by Clark et al. (2014).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,534,182,545],"lines":[{"bbox":[36.8499755859375,532.9898681640625,182.31346130371094,546.006591796875],"spans":[{"bbox":[36.8499755859375,532.9898681640625,182.31346130371094,546.006591796875],"content":"6. Summary and Conclusions","score":1,"type":"text"}]}],"type":"title"},{"bbox":[36,551.219482421875,291,639.9373779296875],"lines":[{"bbox":[36,551.219482421875,291,563.2244262695312],"spans":[{"bbox":[36.8499755859375,551.219482421875,291.97222900390625,563.2244262695312],"content":"In this work, we have studied the physical mechanisms responsi-","score":1,"type":"text"}]},{"bbox":[36,562.178466796875,291,574.1834106445312],"spans":[{"bbox":[36.8499755859375,562.178466796875,291.97222900390625,574.1834106445312],"content":"ble for the observed alignment of magnetic field and cold atomic","score":1,"type":"text"}]},{"bbox":[36,573.137451171875,291,585.1423950195312],"spans":[{"bbox":[36.8499755859375,573.137451171875,291.9721984863281,585.1423950195312],"content":"gravitationally unbound density structures formed by the colli-","score":1,"type":"text"}]},{"bbox":[36,584.096435546875,291,596.1013793945312],"spans":[{"bbox":[36.8499755859375,584.096435546875,291.9722595214844,596.1013793945312],"content":"sion of converging warm atomic gas. We have tracked the evo-","score":1,"type":"text"}]},{"bbox":[36,595.055419921875,291,607.0603637695312],"spans":[{"bbox":[36.8499755859375,595.055419921875,291.9721984863281,607.0603637695312],"content":"lution of magnetic field lines in a three-dimensional simulation","score":1,"type":"text"}]},{"bbox":[36,606.0144653320312,291,618.0194091796875],"spans":[{"bbox":[36.8499755859375,606.0144653320312,291.9721374511719,618.0194091796875],"content":"having typical conditions of the warm ISM and found that they","score":1,"type":"text"}]},{"bbox":[36,616.9734497070312,291,628.9783935546875],"spans":[{"bbox":[36.8499755859375,616.9734497070312,291.97222900390625,628.9783935546875],"content":"become perpendicular to their original orientation and end up","score":1,"type":"text"}]},{"bbox":[36,627.9324340820312,161.37249755859375,639.9373779296875],"spans":[{"bbox":[36.8499755859375,627.9324340820312,161.37249755859375,639.9373779296875],"content":"aligned with density structures.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,639.136474609375,291,694.8667602539062],"lines":[{"bbox":[51,639.136474609375,291,651.1414184570312],"spans":[{"bbox":[51.793975830078125,639.136474609375,291.9723205566406,651.1414184570312],"content":"The process of the alignment of magnetic field lines with","score":1,"type":"text"}]},{"bbox":[36,650.095458984375,291,662.1004028320312],"spans":[{"bbox":[36.8499755859375,650.095458984375,122.99655151367188,662.1004028320312],"content":"the density structures","score":1,"type":"text"},{"bbox":[122.99655151367188,650.095458984375,226.50059509277344,661.9907836914062],"content":" starts at the shock fronts","score":1,"type":"text"},{"bbox":[226.50059509277344,650.095458984375,291.96734619140625,662.1004028320312],"content":" and takes place","score":1,"type":"text"}]},{"bbox":[36,661.053466796875,291,672.9487915039062],"spans":[{"bbox":[36.8499755859375,661.053466796875,291.9721984863281,672.9487915039062],"content":"in the cooling, thermally unstable gas, so that the magnetic field","score":1,"type":"text"}]},{"bbox":[36,672.012451171875,291,683.9077758789062],"spans":[{"bbox":[36.8499755859375,672.012451171875,291.97222900390625,683.9077758789062],"content":"already shows a preferred orientation when the flow forms CACs","score":1,"type":"text"}]},{"bbox":[36,682.971435546875,128.15719604492188,694.8667602539062],"spans":[{"bbox":[36.8499755859375,682.971435546875,128.15719604492188,694.8667602539062],"content":"at the condensed layer.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[36,694.1754150390625,291,760.9754028320312],"lines":[{"bbox":[51,694.1754150390625,291,706.1803588867188],"spans":[{"bbox":[51.793975830078125,694.1754150390625,291.9723205566406,706.1803588867188],"content":"At the position of the shocks, the magnetic field changes its","score":1,"type":"text"}]},{"bbox":[36,705.1343994140625,291,717.1393432617188],"spans":[{"bbox":[36.8499755859375,705.1343994140625,291.97216796875,717.1393432617188],"content":"direction due to the amplification of its component parallel to","score":1,"type":"text"}]},{"bbox":[36,716.0934448242188,291,728.098388671875],"spans":[{"bbox":[36.8499755859375,716.0934448242188,291.97216796875,728.098388671875],"content":"the front, which is produced by the velocity fluctuations in the","score":1,"type":"text"}]},{"bbox":[36,727.0524291992188,291,739.057373046875],"spans":[{"bbox":[36.8499755859375,727.0524291992188,291.97222900390625,739.057373046875],"content":"pre-shock region. This amplification occurs due to a fast MHD","score":1,"type":"text"}]},{"bbox":[36,738.0114135742188,291,750.016357421875],"spans":[{"bbox":[36.8499755859375,738.0114135742188,291.97222900390625,750.016357421875],"content":"shock that occurs when the upstream and downstream flows are","score":1,"type":"text"}]},{"bbox":[36,748.970458984375,168.5854034423828,760.9754028320312],"spans":[{"bbox":[36.8499755859375,748.970458984375,168.5854034423828,760.9754028320312],"content":"super– and sub-fast, respectively.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,56.56640625,558,167.2012176513672],"lines":[{"bbox":[318,56.56640625,558,68.57134246826172],"spans":[{"bbox":[318.2509765625,56.56640625,558.4293212890625,68.57134246826172],"content":"Behind the shock front, the compressive downstream veloc-","score":1,"type":"text"}]},{"bbox":[303,67.525390625,558,79.53032684326172],"spans":[{"bbox":[303.3069763183594,67.525390625,558.4292602539062,79.53032684326172],"content":"ity field further amplifies the magnetic field component parallel","score":1,"type":"text"}]},{"bbox":[303,78.484375,558,90.48931121826172],"spans":[{"bbox":[303.3069763183594,78.484375,558.4290161132812,90.48931121826172],"content":"to the shock front, increasing the curvature of the lines in this","score":1,"type":"text"}]},{"bbox":[303,89.443359375,558,101.44829559326172],"spans":[{"bbox":[303.3069763183594,89.443359375,558.4291381835938,101.44829559326172],"content":"region, and causing them to become increasingly parallel to the","score":1,"type":"text"}]},{"bbox":[303,100.40234375,558,112.40727996826172],"spans":[{"bbox":[303.3069763183594,100.40234375,558.4291381835938,112.40727996826172],"content":"condensed layer produced by the thermal instability. The ampli-","score":1,"type":"text"}]},{"bbox":[303,111.361328125,558,123.36626434326172],"spans":[{"bbox":[303.3069763183594,111.361328125,558.4292602539062,123.36626434326172],"content":"fication of the fluctuation by a compressive velocity gradient can","score":1,"type":"text"}]},{"bbox":[303,122.3203125,558,134.3252410888672],"spans":[{"bbox":[303.3069763183594,122.3203125,558.4290771484375,134.3252410888672],"content":"be understood through an analysis of the induction equation for","score":1,"type":"text"}]},{"bbox":[303,133.279296875,558,145.2842254638672],"spans":[{"bbox":[303.3069763183594,133.279296875,558.4292602539062,145.2842254638672],"content":"planar geometry (eq. [7]), which shows that the change in the","score":1,"type":"text"}]},{"bbox":[303,144.2373046875,558,156.2422332763672],"spans":[{"bbox":[303.3069763183594,144.2373046875,558.4293212890625,156.2422332763672],"content":"fluctuating field component has the same sign as the fluctuation,","score":1,"type":"text"}]},{"bbox":[303,155.1962890625,357.55328369140625,167.2012176513672],"spans":[{"bbox":[303.3069763183594,155.1962890625,357.55328369140625,167.2012176513672],"content":"amplifying it.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,166.1552734375,558,265.83209228515625],"lines":[{"bbox":[318,166.1552734375,558,178.1602020263672],"spans":[{"bbox":[318.2509765625,166.1552734375,558.429443359375,178.1602020263672],"content":"From the same equation, we concluded that a stretching ve-","score":1,"type":"text"}]},{"bbox":[303,177.1142578125,558,189.1191864013672],"spans":[{"bbox":[303.3069763183594,177.1142578125,392.9504089355469,189.1191864013672],"content":"locity gradient causes","score":1,"type":"text"},{"bbox":[392.9504089355469,177.1142578125,431.9690246582031,189.0095977783203],"content":" damping","score":1,"type":"text"},{"bbox":[431.9690246582031,177.1142578125,558.4298706054688,189.1191864013672],"content":" of the fluctuating component,","score":1,"type":"text"}]},{"bbox":[303,188.0732421875,558,200.0781707763672],"spans":[{"bbox":[303.3070068359375,188.0732421875,558.4291381835938,200.0781707763672],"content":"leading to a straightening of the field lines, thus orienting them","score":1,"type":"text"}]},{"bbox":[303,199.0322265625,558,211.0371551513672],"spans":[{"bbox":[303.3070068359375,199.0322265625,359.75506591796875,210.9275665283203],"content":"perpendicular","score":1,"type":"text"},{"bbox":[359.75506591796875,199.0322265625,558.4254760742188,211.0371551513672],"content":" to the density structures. We speculate that this is","score":1,"type":"text"}]},{"bbox":[303,209.9912109375,558,221.9961395263672],"spans":[{"bbox":[303.3070068359375,209.9912109375,558.42919921875,221.9961395263672],"content":"the mechanism occurring during the growth of self-gravitating","score":1,"type":"text"}]},{"bbox":[303,220.9501953125,558,232.9551239013672],"spans":[{"bbox":[303.3070068359375,220.9501953125,408.6913757324219,232.9551239013672],"content":"structures, where the flow","score":1,"type":"text"},{"bbox":[408.6913757324219,220.9501953125,457.3052673339844,232.8455352783203],"content":" accelerates","score":1,"type":"text"},{"bbox":[457.3052673339844,220.9501953125,558.4212646484375,232.9551239013672],"content":" inwards, thus producing","score":1,"type":"text"}]},{"bbox":[303,231.9091796875,558,243.9141082763672],"spans":[{"bbox":[303.3070068359375,231.9091796875,558.4291381835938,243.9141082763672],"content":"a tidal stretching velocity pattern, thus being a possible expla-","score":1,"type":"text"}]},{"bbox":[303,242.8681640625,558,254.8730926513672],"spans":[{"bbox":[303.3070068359375,242.8681640625,558.4290771484375,254.8730926513672],"content":"nation for the perpendicular orientation of the field lines around","score":1,"type":"text"}]},{"bbox":[303,253.8271484375,472.45196533203125,265.83209228515625],"spans":[{"bbox":[303.3070068359375,253.8271484375,472.45196533203125,265.83209228515625],"content":"self-gravitating molecular cloud filaments.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,264.78515625,558,353.50299072265625],"lines":[{"bbox":[318,264.78515625,558,276.79010009765625],"spans":[{"bbox":[318.2510070800781,264.78515625,462.8480529785156,276.79010009765625],"content":"In conclusion, we have found that a","score":1,"type":"text"},{"bbox":[462.8480529785156,264.78515625,495.1838073730469,276.6805114746094],"content":" settling","score":1,"type":"text"},{"bbox":[495.1838073730469,264.78515625,558.4208984375,276.79010009765625],"content":" (i.e., decelerat-","score":1,"type":"text"}]},{"bbox":[303,275.744140625,558,287.74908447265625],"spans":[{"bbox":[303.3070068359375,275.744140625,558.42919921875,287.74908447265625],"content":"ing) flow, such as that occurring due to the condensation of the","score":1,"type":"text"}]},{"bbox":[303,286.703125,558,298.70806884765625],"spans":[{"bbox":[303.3070068359375,286.703125,558.42919921875,298.70806884765625],"content":"gas by thermal instability orients the lines parallel to the density","score":1,"type":"text"}]},{"bbox":[303,297.662109375,558,309.66705322265625],"spans":[{"bbox":[303.3070068359375,297.662109375,378.3054504394531,309.66705322265625],"content":"structures, while a","score":1,"type":"text"},{"bbox":[378.3054504394531,297.662109375,421.25030517578125,309.5574645996094],"content":" stretching","score":1,"type":"text"},{"bbox":[421.25030517578125,297.662109375,558.4276123046875,309.66705322265625],"content":" (accelerating) one, such as infall","score":1,"type":"text"}]},{"bbox":[303,308.62109375,558,320.62603759765625],"spans":[{"bbox":[303.3070068359375,308.62109375,558.42919921875,320.62603759765625],"content":"into a potential well, orients the field lines perpendicular to the","score":1,"type":"text"}]},{"bbox":[303,319.580078125,558,331.58502197265625],"spans":[{"bbox":[303.3070068359375,319.580078125,558.4292602539062,331.58502197265625],"content":"density structures. This may be the physical mechanism behind","score":1,"type":"text"}]},{"bbox":[303,330.5390625,558,342.54400634765625],"spans":[{"bbox":[303.3070068359375,330.5390625,558.42919921875,342.54400634765625],"content":"the stationarity of these configurations found by Soler & Hen-","score":1,"type":"text"}]},{"bbox":[303,341.498046875,363.62054443359375,353.50299072265625],"spans":[{"bbox":[303.3070068359375,341.498046875,363.62054443359375,353.50299072265625],"content":"nebelle (2017).","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,352.45703125,558,397.33795166015625],"lines":[{"bbox":[318,352.45703125,558,364.46197509765625],"spans":[{"bbox":[318.2510070800781,352.45703125,558.4293212890625,364.46197509765625],"content":"Finally, we also found that, under typical conditions of the","score":1,"type":"text"}]},{"bbox":[303,363.416015625,558,375.42095947265625],"spans":[{"bbox":[303.3070068359375,363.416015625,558.4293823242188,375.42095947265625],"content":"ISM, the flow upstream from the shock front is superalfvénic","score":1,"type":"text"}]},{"bbox":[303,374.3740234375,558,386.37896728515625],"spans":[{"bbox":[303.3070068359375,374.3740234375,558.4293823242188,386.37896728515625],"content":"and becomes transalfvénic downstream. This allows the velocity","score":1,"type":"text"}]},{"bbox":[303,385.3330078125,487.8741455078125,397.33795166015625],"spans":[{"bbox":[303.3070068359375,385.3330078125,487.8741455078125,397.33795166015625],"content":"field to bend and drag the magnetic field lines.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,402.0290832519531,558,464.89312744140625],"lines":[{"bbox":[303,402.0290832519531,558,411.633056640625],"spans":[{"bbox":[303.3070068359375,402.0290832519531,366.1512756347656,411.5453796386719],"content":"Acknowledgements.","score":1,"type":"text"},{"bbox":[366.1512756347656,402.0290832519531,558.4215698242188,411.633056640625],"content":" We are grateful to Susan Clark and Laura Fissel for use-","score":1,"type":"text"}]},{"bbox":[303,410.90509033203125,558,420.5090637207031],"spans":[{"bbox":[303.3070068359375,410.90509033203125,558.4219970703125,420.5090637207031],"content":"ful comments and suggestions. This research was supported by a CONACYT","score":1,"type":"text"}]},{"bbox":[303,419.7821044921875,558,429.3860778808594],"spans":[{"bbox":[303.3070068359375,419.7821044921875,558.4220581054688,429.3860778808594],"content":"scholarship. GCG and EVS acknowledge support from UNAM-PAPIIT grants","score":1,"type":"text"}]},{"bbox":[303,428.65911865234375,558,438.2630920410156],"spans":[{"bbox":[303.3070068359375,428.65911865234375,558.4220581054688,438.2630920410156],"content":"IN103822 and IG100223, respectively. In addition, we acknowledge Interstellar","score":1,"type":"text"}]},{"bbox":[303,437.5351257324219,558,447.13909912109375],"spans":[{"bbox":[303.3070068359375,437.5351257324219,558.4220581054688,447.13909912109375],"content":"Institute’s program “With Two Eyes” and the Paris-Saclay University’s Institut","score":1,"type":"text"}]},{"bbox":[303,446.4121398925781,558,456.01611328125],"spans":[{"bbox":[303.3070068359375,446.4121398925781,558.4220581054688,456.01611328125],"content":"Pascal for hosting discussions that nourished the development of the ideas behind","score":1,"type":"text"}]},{"bbox":[303,455.2891540527344,337,464.89312744140625],"spans":[{"bbox":[303.3070068359375,455.2891540527344,335.10772705078125,464.89312744140625],"content":"this work.","score":1,"type":"text"}]}],"type":"text"},{"bbox":[303,492,359,503],"lines":[{"bbox":[303.3070068359375,491.6244812011719,359.0736083984375,504.64117431640625],"spans":[{"bbox":[303.3070068359375,491.6244812011719,359.0736083984375,504.64117431640625],"content":"References","score":1,"type":"text"}]}],"type":"title"},{"bbox":[303,509.4581298828125,558,760.4152221679688],"lines":[{"bbox":[303,509.4581298828125,451,519.0621337890625],"spans":[{"bbox":[303.3070068359375,509.4581298828125,451.853759765625,519.0621337890625],"content":"Audit, E. & Hennebelle, P. 2005, A&A, 433, 1","score":1,"type":"text"}]},{"bbox":[303,518.3851318359375,467.8258361816406,527.9891357421875],"spans":[{"bbox":[303.3070068359375,518.3851318359375,467.8258361816406,527.9891357421875],"content":"Blondin, J. M. & Marks, B. S. 1996, New A, 1, 235","score":1,"type":"text"}]},{"bbox":[303,527.3131713867188,558,536.9171752929688],"spans":[{"bbox":[303.3070068359375,527.3131713867188,558.4219970703125,536.9171752929688],"content":"Clark, S. E., Hill, J. C., Peek, J. E. G., Putman, M. E., & Babler, B. L. 2015,","score":1,"type":"text"}]},{"bbox":[313,536.2791748046875,434,545.8831787109375],"spans":[{"bbox":[313.2669982910156,536.2791748046875,434.1415710449219,545.8831787109375],"content":"Physical Review Letters, 115, 241302","score":1,"type":"text"}]},{"bbox":[303,545.2061767578125,508.5370178222656,554.8101806640625],"spans":[{"bbox":[303.3070068359375,545.2061767578125,508.5370178222656,554.8101806640625],"content":"Clark, S. E., Peek, J. E. G., & Putman, M. E. 2014, ApJ, 789, 82","score":1,"type":"text"}]},{"bbox":[303,554.1341552734375,539.070556640625,563.7381591796875],"spans":[{"bbox":[303.3070068359375,554.1341552734375,539.070556640625,563.7381591796875],"content":"Delmont, P. & Keppens, R. 2011, Journal of Plasma Physics, 77, 207–229","score":1,"type":"text"}]},{"bbox":[303,563.0611572265625,558,572.6651611328125],"spans":[{"bbox":[303.3070068359375,563.0611572265625,558.422119140625,572.6651611328125],"content":"Dubey, A., Antypas, K., Ganapathy, M. K., et al. 2009, Parallel Computing, 35,","score":1,"type":"text"}]},{"bbox":[313,572.0281982421875,325.2221374511719,581.6322021484375],"spans":[{"bbox":[313.2669982910156,572.0281982421875,325.2221374511719,581.6322021484375],"content":"512","score":1,"type":"text"}]},{"bbox":[303,580.9552001953125,558,590.5592041015625],"spans":[{"bbox":[303.3070068359375,580.9552001953125,558.4220581054688,590.5592041015625],"content":"Dubey, A., Reid, L. B., & Fisher, R. 2008, Physica Scripta Volume T, 132,","score":1,"type":"text"}]},{"bbox":[313,589.9221801757812,337,599.5261840820312],"spans":[{"bbox":[313.2669982910156,589.9221801757812,337.1772766113281,599.5261840820312],"content":"014046","score":1,"type":"text"}]},{"bbox":[303,598.8491821289062,407.3646240234375,608.4531860351562],"spans":[{"bbox":[303.3070068359375,598.8491821289062,407.3646240234375,608.4531860351562],"content":"Field, G. B. 1965, ApJ, 142, 531","score":1,"type":"text"}]},{"bbox":[303,607.7772216796875,526.844482421875,617.3812255859375],"spans":[{"bbox":[303.3070068359375,607.7772216796875,526.844482421875,617.3812255859375],"content":"Field, G. B., Goldsmith, D. W., & Habing, H. J. 1969, ApJ, 155, L149","score":1,"type":"text"}]},{"bbox":[303,616.7042236328125,558,626.3082275390625],"spans":[{"bbox":[303.3070068359375,616.7042236328125,558.4219970703125,626.3082275390625],"content":"Fryxell, B., Olson, K., Ricker, P., et al. 2000, The Astrophysical Journal Supple-","score":1,"type":"text"}]},{"bbox":[313,625.670166015625,382,635.274169921875],"spans":[{"bbox":[313.2669982910156,625.670166015625,382.5590515136719,635.274169921875],"content":"ment Series, 131, 273","score":1,"type":"text"}]},{"bbox":[303,634.5982055664062,482.8096618652344,644.2022094726562],"spans":[{"bbox":[303.3070068359375,634.5982055664062,482.8096618652344,644.2022094726562],"content":"Gazol, A. & Villagran, M. A. 2021, MNRAS, 501, 3099","score":1,"type":"text"}]},{"bbox":[303,643.5252075195312,558,653.1292114257812],"spans":[{"bbox":[303.3070068359375,643.5252075195312,558.422119140625,653.1292114257812],"content":"Gómez, G. C., Vázquez-Semadeni, E., & Zamora-Avilés, M. 2018, MNRAS,","score":1,"type":"text"}]},{"bbox":[313,652.4921875,345,662.09619140625],"spans":[{"bbox":[313.2669982910156,652.4921875,345.1473693847656,662.09619140625],"content":"480, 2939","score":1,"type":"text"}]},{"bbox":[303,661.419189453125,558,671.023193359375],"spans":[{"bbox":[303.3070068359375,661.419189453125,558.4222412109375,671.023193359375],"content":"Heiner, J. S., Vázquez-Semadeni, E., & Ballesteros-Paredes, J. 2015, MNRAS,","score":1,"type":"text"}]},{"bbox":[313,670.3861694335938,345,679.9901733398438],"spans":[{"bbox":[313.2669982910156,670.3861694335938,345.1473693847656,679.9901733398438],"content":"452, 1353","score":1,"type":"text"}]},{"bbox":[303,679.3131713867188,558,688.9171752929688],"spans":[{"bbox":[303.3070068359375,679.3131713867188,558.4219360351562,688.9171752929688],"content":"Heitsch, F., Slyz, A. D., Devriendt, J. E. G., Hartmann, L. W., & Burkert, A.","score":1,"type":"text"}]},{"bbox":[313,688.2791748046875,382,697.8831787109375],"spans":[{"bbox":[313.2669982910156,688.2791748046875,381.8974914550781,697.8831787109375],"content":"2006, ApJ, 648, 1052","score":1,"type":"text"}]},{"bbox":[303,697.2071533203125,558,706.8111572265625],"spans":[{"bbox":[303.3070068359375,697.2071533203125,558.4219360351562,706.8111572265625],"content":"Heitsch, F., Slyz, A. D., Devriendt, J. E. G., Hartmann, L. W., & Burkert, A.","score":1,"type":"text"}]},{"bbox":[313,706.1732177734375,377.9124450683594,715.7772216796875],"spans":[{"bbox":[313.2669982910156,706.1732177734375,377.9124450683594,715.7772216796875],"content":"2007, ApJ, 665, 445","score":1,"type":"text"}]},{"bbox":[303,715.1011962890625,512.0280151367188,724.7052001953125],"spans":[{"bbox":[303.3070068359375,715.1011962890625,512.0280151367188,724.7052001953125],"content":"Heitsch, F., Stone, J. M., & Hartmann, L. W. 2009, ApJ, 695, 248","score":1,"type":"text"}]},{"bbox":[303,724.0281982421875,426.3892822265625,733.6322021484375],"spans":[{"bbox":[303.3070068359375,724.0281982421875,426.3892822265625,733.6322021484375],"content":"Hennebelle, P. 2013, A&A, 556, A153","score":1,"type":"text"}]},{"bbox":[303,732.9561767578125,434,742.5601806640625],"spans":[{"bbox":[303.3070068359375,732.9561767578125,433.49066162109375,742.5601806640625],"content":"Hueckstaedt, R. M. 2003, New A, 8, 295","score":1,"type":"text"}]},{"bbox":[303,741.8831787109375,451,751.4871826171875],"spans":[{"bbox":[303.3070068359375,741.8831787109375,449.2713928222656,751.4871826171875],"content":"Inoue, T. & Inutsuka, S.-i. 2016, ApJ, 833, 10","score":1,"type":"text"}]},{"bbox":[303,750.8112182617188,464.1117248535156,760.4152221679688],"spans":[{"bbox":[303.3070068359375,750.8112182617188,464.1117248535156,760.4152221679688],"content":"Koyama, H. & Inutsuka, S.-i. 2002, ApJ, 564, L97","score":1,"type":"text"}]}],"type":"text"}]},{"discarded_blocks":[{"bbox":[451,771,558,779],"lines":[{"bbox":[450.71197509765625,769.8159790039062,558.4253540039062,780.6204833984375],"spans":[{"bbox":[450.71197509765625,769.8159790039062,558.4253540039062,780.6204833984375],"content":"Article number, page 11 of 11","score":1,"type":"text"}]}],"type":"discarded"},{"bbox":[174,34,421,43],"lines":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"spans":[{"bbox":[174.968994140625,32.58107376098633,420.3074951171875,43.38558578491211],"content":"Granda-Muñoz et al.: Magnetic field alignment in interstellar clouds","score":1,"type":"text"}]}],"type":"discarded"}],"page_idx":10,"page_size":[595.2760009765625,841.8900146484375],"preproc_blocks":[{"bbox":[36,58.40766143798828,291,229.40652465820312],"lines":[{"bbox":[36,58.40766143798828,167.64723205566406,68.01163482666016],"spans":[{"bbox":[36.84999084472656,58.40766143798828,167.64723205566406,68.01163482666016],"content":"Pikel’Ner, S. B. 1968, Sov. Astr. 11, 737","score":1,"type":"text"}]},{"bbox":[36,67.37464141845703,285,76.9786148071289],"spans":[{"bbox":[36.84999084472656,67.37464141845703,285.23809814453125,76.9786148071289],"content":"Planck Collaboration, Adam, R., Ade, P. A. R., et al. 2016a, A&A, 586, A135","score":1,"type":"text"}]},{"bbox":[36,76.34064483642578,291,85.94461822509766],"spans":[{"bbox":[36.84999084472656,76.34064483642578,291.96484375,85.94461822509766],"content":"Planck Collaboration, Ade, P. A. R., Aghanim, N., et al. 2016b, A&A, 586, A138","score":1,"type":"text"}]},{"bbox":[36,85.30664825439453,260,94.9106216430664],"spans":[{"bbox":[36.84999084472656,85.30664825439453,259.36712646484375,94.9106216430664],"content":"Seifried, D., Walch, S., Girichidis, P., et al. 2017, MNRAS, 472, 4797","score":1,"type":"text"}]},{"bbox":[36,94.27362823486328,246.76638793945312,103.87760162353516],"spans":[{"bbox":[36.84999084472656,94.27362823486328,246.76638793945312,103.87760162353516],"content":"Seifried, D., Walch, S., Weis, M., et al. 2020, MNRAS, 497, 4196","score":1,"type":"text"}]},{"bbox":[36,103.23963165283203,263.9818115234375,112.8436050415039],"spans":[{"bbox":[36.84999084472656,103.23963165283203,263.9818115234375,112.8436050415039],"content":"Skalidis, R., Tassis, K., Panopoulou, G. V., et al. 2022, A&A, 665, A77","score":1,"type":"text"}]},{"bbox":[36,112.20661163330078,197.7901611328125,121.81058502197266],"spans":[{"bbox":[36.84999084472656,112.20661163330078,197.7901611328125,121.81058502197266],"content":"Soler, J. D. & Hennebelle, P. 2017, A&A, 607, A2","score":1,"type":"text"}]},{"bbox":[36,121.17261505126953,253.357666015625,130.77658081054688],"spans":[{"bbox":[36.84999084472656,121.17261505126953,253.357666015625,130.77658081054688],"content":"Soler, J. D., Hennebelle, P., Martin, P. G., et al. 2013, ApJ, 774, 128","score":1,"type":"text"}]},{"bbox":[36,130.13861083984375,285,139.74258422851562],"spans":[{"bbox":[36.84999084472656,130.13861083984375,285.41339111328125,139.74258422851562],"content":"Sullivan, B. & Kaszynski, A. 2019, Journal of Open Source Software, 4, 1450","score":1,"type":"text"}]},{"bbox":[36,139.1055908203125,291,148.70956420898438],"spans":[{"bbox":[36.84999084472656,139.1055908203125,291.96484375,148.70956420898438],"content":"Vázquez-Semadeni, E., Gómez, G. C., Jappsen, A. K., et al. 2007, ApJ, 657, 870","score":1,"type":"text"}]},{"bbox":[36,148.07159423828125,260,157.67556762695312],"spans":[{"bbox":[36.84999084472656,148.07159423828125,260.8336486816406,157.67556762695312],"content":"Vázquez-Semadeni, E., Passot, T., & Pouquet, A. 1996, ApJ, 473, 881","score":1,"type":"text"}]},{"bbox":[36,157.03759765625,291,166.64157104492188],"spans":[{"bbox":[36.84999084472656,157.03759765625,291.9649658203125,166.64157104492188],"content":"Vázquez-Semadeni, E., Ryu, D., Passot, T., Gonzalez, R. F., & Gazol, A. 2006,","score":1,"type":"text"}]},{"bbox":[46,166.00457763671875,162.7679443359375,175.60855102539062],"spans":[{"bbox":[46.81098937988281,166.00457763671875,162.7679443359375,175.60855102539062],"content":"The Astrophysical Journal, 643, 245","score":1,"type":"text"}]},{"bbox":[36,174.9705810546875,150.4557342529297,184.57455444335938],"spans":[{"bbox":[36.84999084472656,174.9705810546875,150.4557342529297,184.57455444335938],"content":"Vishniac, E. T. 1994, ApJ, 428, 186","score":1,"type":"text"}]},{"bbox":[36,183.93756103515625,291,193.54153442382812],"spans":[{"bbox":[36.84999084472656,183.93756103515625,291.96484375,193.54153442382812],"content":"Waagan, K., Federrath, C., & Klingenberg, C. 2011, Journal of Computational","score":1,"type":"text"}]},{"bbox":[46,192.903564453125,106.9931869506836,202.50753784179688],"spans":[{"bbox":[46.81098937988281,192.903564453125,106.9931869506836,202.50753784179688],"content":"Physics, 230, 3331","score":1,"type":"text"}]},{"bbox":[36,201.86956787109375,291,211.47354125976562],"spans":[{"bbox":[36.84999084472656,201.86956787109375,291.9649353027344,211.47354125976562],"content":"Zamora-Avilés, M., Vázquez-Semadeni, E., Körtgen, B., Banerjee, R., & Hart-","score":1,"type":"text"}]},{"bbox":[46,210.8365478515625,291,220.44052124023438],"spans":[{"bbox":[46.81098937988281,210.8365478515625,291.9712219238281,220.44052124023438],"content":"mann, L. 2018, Monthly Notices of the Royal Astronomical Society, 474,","score":1,"type":"text"}]},{"bbox":[46,219.80255126953125,62.751190185546875,229.40652465820312],"spans":[{"bbox":[46.81098937988281,219.80255126953125,62.751190185546875,229.40652465820312],"content":"4824","score":1,"type":"text"}]}],"type":"text"}]}],"fileName":"f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","fullMdLink":"http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=full.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","markdownUrl":["http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=0.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=1.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=2.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=3.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=4.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=5.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=6.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=7.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=8.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=9.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","http://10.6.16.161:5559/api/v2/analysis/pdf_md?filename=10.md&as_attachment=False&pdf=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf"],"state":"done","status":1,"type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf&as_attachment=False"},"msg":"success","success":true}},"2":{"summary":"异常示例","value":{"code":-60004,"data":{"content":[],"fileName":"d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf","fullMdLink":"","markdownUrl":[],"state":"finished","status":1,"type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e4_1.B7853TC.pdf&as_attachment=False"},"msg":"Failed to retrieve PDF parsing progress","msgZh":"无法获取PDF解析进度","success":false}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/taskQueue":{"get":{"summary":"查询当前正在进行的任务","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"array","items":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名称"},"id":{"type":"integer","title":"任务id"},"queues":{"type":"integer","title":"排队的任务总数"},"rank":{"type":"integer","title":"当前任务位次"},"state":{"type":"string","title":"任务状态","enum":["running","pending"]},"type":{"type":"string","title":"任务类型"},"url":{"type":"string","title":"文件链接"}}}},"msg":{"type":"string"},"success":{"type":"boolean"},"total":{"type":"integer"}},"required":["code","data","msg","success","total"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":[{"fileName":"f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf","id":2,"queues":2,"rank":2,"state":"pending","type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=f0ab99d3cb2ab5fed43307f47dd3e6e2a4189c62b9d2c1151aa5949b43b8a9fd_2405.08702.pdf&as_attachment=False"},{"fileName":"4dae4590356a2ea04a93570cd9c29ac2fb443d7851c3ca1587877a56146b699d_layout.pdf","id":1,"queues":2,"rank":1,"state":"running","type":"pdf","url":"/api/v2/analysis/upload_pdf?filename=4dae4590356a2ea04a93570cd9c29ac2fb443d7851c3ca1587877a56146b699d_layout.pdf&as_attachment=False"}],"msg":"success","success":true,"total":2}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/list":{"get":{"summary":"获取任务历史记录","deprecated":false,"description":"","tags":["analysis"],"parameters":[{"name":"pageNo","in":"query","description":"页码","required":true,"example":"1","schema":{"type":"string"}},{"name":"pageSize","in":"query","description":"每页显示的数量","required":true,"example":"10","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"list":{"type":"array","items":{"type":"object","properties":{"fileName":{"type":"string","title":"文件名"},"id":{"type":"integer","title":"任务id"},"state":{"type":"string","title":"任务状态"},"type":{"type":"string","title":"任务类型"}},"required":["fileName","id","state","type"]}},"pageNo":{"type":"string","title":"页码"},"pageSize":{"type":"string","title":"每页显示的数量"},"total":{"type":"integer","title":"数据总数"}},"required":["list","pageNo","pageSize","total"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"list":[{"fileName":"d00fc780864ebbc74b6f34a6862e550bda2bc3cf8e39b4955bbc1aef1c0244fa_origin.pdf","id":2,"state":"pending","type":"pdf"},{"fileName":"ee9a3c795afbe49a57c57f65fe9ea8d4b3346c4da9ce5475828f83a8d65381c9_origin.pdf","id":1,"state":"running","type":"pdf"}],"pageNo":"1","pageSize":"10","total":2},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}},"/api/v2/extract/task/{id}":{"delete":{"summary":"删除历史记录","deprecated":false,"description":"","tags":["analysis"],"parameters":[{"name":"id","in":"path","description":"路径参数,任务id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"object","properties":{"id":{"type":"integer","title":"任务id"}},"required":["id"]},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":{"id":1},"msg":"success","success":true}}}}},"headers":{}}},"security":[]}},"/extract/markdown":{"put":{"summary":"编辑markdown","deprecated":false,"description":"","tags":["analysis"],"parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"file_key":{"type":"string","title":"文件哈希"},"data":{"type":"object","properties":{"0":{"type":"string"}},"required":["0"],"description":"页码:要替换的内容","title":"替换数据"}},"required":["file_key","data"]},"example":{"file_key":"d4531b3121738f15b24d92186289417db36f1b12043e0ea796a3d313083416e41726041591","data":{"0":"new content"}}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"object","properties":{"code":{"type":"integer"},"data":{"type":"null"},"msg":{"type":"string"},"success":{"type":"boolean"}},"required":["code","data","msg","success"]},"examples":{"1":{"summary":"成功示例","value":{"code":200,"data":null,"msg":"success","success":true}}}}},"headers":{}}},"security":[]}}},"components":{"schemas":{},"securitySchemes":{}},"servers":[]}, dom_id: '#swagger-ui', deepLinking: true, presets: [ diff --git a/projects/web_api/requirements.txt b/projects/web_api/requirements.txt new file mode 100644 index 00000000..92242b62 --- /dev/null +++ b/projects/web_api/requirements.txt @@ -0,0 +1,13 @@ +flask-cors +flask-jwt-extended +flask-marshmallow +flask-migrate +flask-restful +flask-sqlalchemy +flask +greenlet +loguru +marshmallow-sqlalchemy +marshmallow +pyjwt +pyyaml diff --git a/projects/web_api/web_api/api/__init__.py b/projects/web_api/web_api/api/__init__.py index d1ce80af..5efbb904 100644 --- a/projects/web_api/web_api/api/__init__.py +++ b/projects/web_api/web_api/api/__init__.py @@ -4,7 +4,7 @@ from common.web_hook import before_request from common.logger import setup_log root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -print("root_dir", root_dir) + def _register_db(flask_app): from common import import_models @@ -30,6 +30,8 @@ def create_app(config): ma.init_app(app=app) from .analysis import analysis_blue app.register_blueprint(analysis_blue) + from .react_app import react_app_blue + app.register_blueprint(react_app_blue) app.before_request(before_request) diff --git a/projects/web_api/web_api/api/analysis/__init__.py b/projects/web_api/web_api/api/analysis/__init__.py index 93b7ea04..309d8e7a 100644 --- a/projects/web_api/web_api/api/analysis/__init__.py +++ b/projects/web_api/web_api/api/analysis/__init__.py @@ -4,6 +4,7 @@ from .upload_view import UploadPdfView from .analysis_view import AnalysisTaskView, AnalysisTaskProgressView from .img_md_view import ImgView, MdView from .task_view import TaskView, HistoricalTasksView, DeleteTaskView +from .markdown_view import MarkdownView analysis_blue = Blueprint('analysis', __name__) @@ -15,4 +16,5 @@ api_v2.add_resource(ImgView, '/analysis/pdf_img') api_v2.add_resource(MdView, '/analysis/pdf_md') api_v2.add_resource(TaskView, '/extract/taskQueue') api_v2.add_resource(HistoricalTasksView, '/extract/list') -api_v2.add_resource(DeleteTaskView, '/extract/task/') \ No newline at end of file +api_v2.add_resource(DeleteTaskView, '/extract/task/') +api_v2.add_resource(MarkdownView, '/extract/markdown') \ No newline at end of file diff --git a/projects/web_api/web_api/api/analysis/analysis_view.py b/projects/web_api/web_api/api/analysis/analysis_view.py index a9747c8b..f2b9d451 100644 --- a/projects/web_api/web_api/api/analysis/analysis_view.py +++ b/projects/web_api/web_api/api/analysis/analysis_view.py @@ -1,5 +1,6 @@ import json import threading +from multiprocessing import Process from pathlib import Path from flask import request, current_app, url_for from flask_restful import Resource @@ -212,10 +213,10 @@ class AnalysisTaskView(Resource): pdf_analysis_folder = current_app.config['PDF_ANALYSIS_FOLDER'] pdf_dir = f"{current_app.static_folder}/{pdf_analysis_folder}/{file_stem}" image_dir = f"{pdf_dir}/images" - t = threading.Thread(target=analysis_pdf_task, - args=(pdf_dir, image_dir, file_path, analysis_task.is_ocr, - analysis_task.analysis_pdf_id)) - t.start() + process = Process(target=analysis_pdf_task, + args=(pdf_dir, image_dir, file_path, analysis_task.is_ocr, + analysis_task.analysis_pdf_id)) + process.start() # 生成文件的URL路径 file_url = url_for('analysis.uploadpdfview', filename=analysis_task.file_name, as_attachment=False) diff --git a/projects/web_api/web_api/api/analysis/markdown_view.py b/projects/web_api/web_api/api/analysis/markdown_view.py new file mode 100644 index 00000000..d82d95b2 --- /dev/null +++ b/projects/web_api/web_api/api/analysis/markdown_view.py @@ -0,0 +1,44 @@ +import json +from pathlib import Path +from flask import request, current_app +from flask_restful import Resource +from common.custom_response import generate_response + + +class MarkdownView(Resource): + + def put(self): + """ + 编辑markdown + """ + params = json.loads(request.data) + file_key = params.get('file_key') + data = params.get('data', {}) + if not data: + return generate_response(code=400, msg="empty data", msgZH="数据为空,无法更新markdown") + + pdf_analysis_folder = current_app.config['PDF_ANALYSIS_FOLDER'] + pdf_dir = f"{current_app.static_folder}/{pdf_analysis_folder}" + markdown_file_dir = "" + for path_obj in Path(pdf_dir).iterdir(): + if path_obj.name.startswith(file_key): + markdown_file_dir = path_obj + break + + if markdown_file_dir and Path(markdown_file_dir).exists(): + for k, v in data.items(): + md_path = f"{markdown_file_dir}/{k}.md" + if Path(md_path).exists(): + with open(md_path, 'w', encoding="utf-8") as f: + f.write(v) + + full_content = "" + for path_obj in Path(markdown_file_dir).iterdir(): + if path_obj.is_file() and path_obj.suffix == ".md" and path_obj.stem != "full": + with open(path_obj, 'r', encoding="utf-8") as f: + full_content += f.read() + "\n" + with open(f"{markdown_file_dir}/full.md", 'w', encoding="utf-8") as f: + f.write(full_content) + else: + return generate_response(code=400, msg="Invalid file_key", msgZH="文件哈希错误") + return generate_response() diff --git a/projects/web_api/web_api/api/extentions.py b/projects/web_api/web_api/api/extentions.py index 643b582b..0d5fcb01 100644 --- a/projects/web_api/web_api/api/extentions.py +++ b/projects/web_api/web_api/api/extentions.py @@ -59,3 +59,4 @@ db = SQLAlchemy() migrate = Migrate() jwt = JWTManager() ma = Marshmallow() +folder = app.config.get("REACT_APP_DIST") diff --git a/projects/web_api/web_api/api/react_app/__init__.py b/projects/web_api/web_api/api/react_app/__init__.py new file mode 100644 index 00000000..b93589a0 --- /dev/null +++ b/projects/web_api/web_api/api/react_app/__init__.py @@ -0,0 +1,11 @@ +from pathlib import Path +from flask import Blueprint +from ..extentions import app, Api +from .react_app_view import ReactAppView +from loguru import logger + +folder = Path(app.config.get("REACT_APP_DIST", "../../web/dist/")).resolve() +logger.info(f"react_app folder: {folder}") +react_app_blue = Blueprint('react_app', __name__, static_folder=folder, static_url_path='', template_folder=folder) +react_app_api = Api(react_app_blue, prefix='') +react_app_api.add_resource(ReactAppView, '/') \ No newline at end of file diff --git a/projects/web_api/web_api/api/react_app/react_app_view.py b/projects/web_api/web_api/api/react_app/react_app_view.py new file mode 100644 index 00000000..7c2ff82a --- /dev/null +++ b/projects/web_api/web_api/api/react_app/react_app_view.py @@ -0,0 +1,11 @@ +from flask import render_template, Response +from flask_restful import Resource + + +class ReactAppView(Resource): + def get(self): + # 创建自定义的响应对象 + rendered_template = render_template('index.html') + response = Response(rendered_template, mimetype='text/html') + + return response diff --git a/projects/web_api/web_api/config/config.yaml b/projects/web_api/web_api/config/config.yaml index 1bdb5cf3..d2ca3577 100644 --- a/projects/web_api/web_api/config/config.yaml +++ b/projects/web_api/web_api/config/config.yaml @@ -11,6 +11,8 @@ BaseConfig: &base JWT_ACCESS_TOKEN_EXPIRES: 3600 PDF_UPLOAD_FOLDER: "upload_pdf" PDF_ANALYSIS_FOLDER: "analysis_pdf" + # 前端项目打包的路径 + REACT_APP_DIST: "../../web/dist/" # 开发配置 DevelopmentConfig: diff --git a/projects/web_api/web_api/config/mineru_web.db b/projects/web_api/web_api/config/mineru_web.db index 653cdad4a3e4dcd2afdf891a121c0374dc96ccab..fcac36060408e8c406a56b338c239853183f09b5 100644 GIT binary patch delta 36 jcmZo@P-;k+ASJ}W#K6G748$JnURbKfGiAX9BM}5T3X0vBQq^&rj1t8THMP_OD)AOps%3c|J>{D$K7wFhX=sT z7@7nMnHhPn`?=?y_xYc1{?Ql9?V@wBT3^q%oxykh_IJMf-S7O@oz8c@^WFY;zVn?w z=g+77`4{~8BmVpi{$&6AZuXD;|7DGn|LXtwZ9ecDzx_Xd=WqSr{Pp2~A1LsF0v{;w zfdU^W@PPs!DDZ&-A1LsF0v{;wfdUB%{8{%m{^sxey}$R}fBs)?=ciYT`OW<5ZnNAx zyFI_~|NhrL`TEnxPd@EDdHka?{l`!8@9frBRJ3r{>`)XV!mBGJLj*?k9mP7pMUvj=^1yo`q@1n_{GDWflbBTY2@sEKMX z7I*nO)XAt7o^9`L7o9(N{PicFJ^uPZuRr}*wBqDeXY0<7e*W_>K7IU^zEh`X{*0XQ zv*PIV;lB=Y$v4O8|M0&L6!<`a4;1)7fe#e;K!Fbw_&|XV6!<`a4;1)7fe#e;K!JaS zDe%Gn|5x~MKfKxp3Vfiz2MT(PAD<6LgWl<& z*Y8aR(~I8dv_Cwb^?TECe>xlXCg-Pv@kQ^n*Y6Goi|%4RnT_Xz^FeRWoeqY*@q&-^ zN8|pWHyu6eo&0Dr9Sxp*azd%o_byl0i|_s7zxm?vkND?~0sO1@XY`Vp^JNyAdV?v#&CdMD$4Z#12a$KCM|vTKRn$*4CR3yG>Oe$Zh!8&3O^ z{-itVPK<)?K^AA1H_Nm6Rh#EYZIqyQZ#+C1@PvcOu-lK1U8A>ql+Guu9>P}VrN*=F ztT&lWk~B%5c>_&W*Vi1=rs-*Z{r1;(Ox0s7n36N;!Hc7zPGWcu^A0B*=5#XX4#$Bl zdxMj1Z#L*n#(hqiL)I$8li_4I8T7=?Jv-fg?_`2t=uXD4c@NRBpM?+EVmKS0bZ5ia zq&w*rJB+6T1k!k9Y^4p{nLYXRlh3~T{FBFDbUyj{mtTJR)st^J^Yx;0x?V0WI_JyH z*>1C0u5LD+)kWuae!Ez2I$Zyk%hhgkb=SGwol@p{xj64EZ#vt{<)-sTtKFJ1-ILCf zOR7XSl4a+eo7J|nczw3ubG=cw+j+HGpKm%3UR^HOYTk5A{w5_}5K2Qr*l0SO8fBq0 zLSZl+&U({6wWr)9PA^GmM~Ke<_rLzLHcz5GhKQ?ve>m>W>`M0zKlJ;Kv&SX3oPulR|@f$eu zpRIP>*v@>@K}-e)`Pi7KGv945p$7c7y!pcz@v-KMn&Jt&1MJhZEVpenGo%K5=4jXyfHmi6%Jm;HxnPS&St$H zl3+TVjJe;D__M)mG#N?dNiy^Xvy<^?)a?zsgJ~BHFl-?P-en7S0RFB^0u)ypBK`4h zdG-Q|^3U590)b-u&irD#SVQTv#qxHW9nbarX16(8^PSB}=c~n%BU^VKfByI}GGN_V za>AdUFSjeCi1t`7Hn+$YTTX|i176)OZ%p7UUL$BW8&3B0PCt3~n=tI2bi1Qrw>Rdd zqH&@8cziOMO$SKJarQ0b{K9Y)~!%}Mh+S2S4F`jXj%sU+J8 z{feO~#!A>Gz-)`nfypj>ZxW&F5Og z-R(~Ju1VWH%zNk_y}{rFGlN?*#R7?DP;wJTv3PMitD7d8<>~}O|G($YzrK$oyjy0B%qSPd&|kQ@0mi0(@yxCwLD)Sh*qbY#royqypaNB5k1nG z&ZZ|AwMg2*0H&4UJ&=KpS2mkP4(3~3P5@Jmb2A0MPY8?>Cw%+{j;x=pUM*fO)(=f6 z-d@u8WF$gU&2N^Q>rFyJPWprCC^&C0^*wiL?;3q5j#WJ9j(U?3=W_p@8urH{jOi|7O)HKkBkm~o zMS`6xg{eKzPsg&ZO`Hu_A0G_aKbrLU<#FXseYwESIB%A@r8||_CP^YL)fA64_^n(j zJxuLo-RXCJi3VP*g-ZehtQU(%;kLY5Jvv|F+{h;9#(eqNk2{;?^)B2xGtytp`IYBf zm(7;;GWf(S^M%+5jFYRYyGN%qrm3B-GvBVRxo!TAHVM!Ab%Ng5oIS47v^O1Kx@0VY zP1B!@MmX!i25&gd@o>`bjm-^AFL{E!#Mu&e395UL+Q5_&kb1$y0 zmgmcx=Lit``CcxNILqyFVI(uNV||XL5{=CG<2yM(a(SHb$Z98@&*khaHkgtH?H_ht z2}kDYYW2#l?BeC>YA4xs1WAblz`fjqQ4d>ON_H@vVW1U6Mr4`CexJPBw+769g0qsT%Dv&I)B&(2X4HU?fTD+r z2ce!}|K5ySgoNUtIdp!rhdqF$fjI12c+1iM>&0ewg`M5RU?qW-*d_gbA`cEpke*n6 z$+vY+BZog+GrKOF@A-}s#u>Yq(+F#l>XLZjL*t6MtN_?#6V&^~8k?ZAUhSS=O1a-? zr4`)tymLhulnZ;hxLm?a%k4vc+F8ucF1dT>EqwyhU?Vt!5F61N8FWVapu)xwdptm= z*mv)jRyhAyX5;Lbl1tX)Reb|Tz9@N2P8k7>BqtbGeCxa;QY|`H^E-r;l!B}wqlhk5 zos^;y{_v~IC4|yPOd%|`#AY`SS?p|awOB)X2)wyot+r6Tk&P0ff6R-cQl~^s&6CY; z*I)uIQL#iKaA}ESwxMQv(Hb>VTR3{6KQF{F+e>i0M1eh`>IN+!tr)FMyv^JBnr|$w z6j0DFUPz*!FL87w&0$|T$BXrLw?55%(>jlzt?`qaZf1g{$ff>t*hQIQzF?$e+7$WE zH%GJns4v%a)`p_VHI1PCJWePDQ`^ANvtXqPAuo{c+nrrwf&&%W5&t`T(FwO(bemt_ zUM;ci&qHYEeD&%km?;@W<2vy+l(#y9nm9Op87HJ)qNyM5I_?$P6}=FmcMZmU`L@^B z>`j%uAhM6Bo+uh9*`3-o8yMWkZzJ9Tjb^F=2!AtYsa;Q#+kLQF@n7IcGN1d_-Z4J^bQ3=8~5$V+}|hC4~b zpy8qtLRQ!x$*Gg5uUNUJ!_@NbxI(C`voTSxBuHk`N&%Qo5M`V;(M7~>yw3beGsjTd z`dIn;NgkdqU&)S0kCwGq1uQ&JncarC`Y(E-_Y)y=P!cyfk9Yg!V%cpvhPr6?`c=)t3}C zyR6R%SyX$N+`v(@B>tm_BPe|HNRki=l0CY41Tn9!U@tkS%d6$~uJeG5)aRgwNKI_d z_>4IUMkM{1Z%h3UC^oaGP{^E>++Dwx9pVur<;}X7<$2OB5LCHZ;vmB*Dmk~#_q$)7 zpw$HxewvNOIv?b)DSaYuiRB$R*YMF|9m#QBy@Xs;u6_uknWj1E{OFDp9NB9bm*%T( zcF&(Lu*}UuniIo2Zju-Hto77eATaUXWevKUgHc>dsQEZ zvr{Mrp>4TzDV#=9XVHSYPOfG)JM3yCs?jdGI!7oGZQWIPN*aTzgDiG3#3jR)7?XDn z_waDZmt3(X`cmsV<|1SyeL)clmauq?5YY-xZnL<$cmxqhxJBn7yMCSP9jwG{oGTPe zoK~{Z@n2_twTf4Feuna}psp-yJQWM`7M#3T-%3WF5!6~Yoqyec7U?Kf=#hyaDa?h+ zv1hKJxs0dNE)39>6EhEI#H-^ezjRu{FU9UMBeZuyELhJvR? zoeC7Sgi)iH=Tu61$(l|{ZQy9S-?Yp1HH>JCyF0Cs1}#Gb!5Eb_bud8>qqLXARZUGLxaP{Y5F+~*!K;~Ip62nS z!vzcHi_=4yiX1QF0-}8 zDM@gK81$5+#W3}%?r}Ol->D$LqLLJ9tX}GV5&x5`pnO9f{4KnVJnJ9xc}}j0-^zv! za62rTF2n8<$#97WbHBMP6BuT;I{pCp^;^E0cJ2 zHIkLGBz}@|+Rn-R+<+};#T8Di9})&^zHy`O-~@xY2XmuvO$iVC6cdaGJ)DN%%%PWi zLvD^rVuMDunxj3}?;TdW_W<$#|BcK6A9aVg?xWFw@`h-J_xKhU6Z_R=w^EPoPVr~d zy;*@<%PX1K>0mOBsX(@TeN9AkzAPoxH=V!w)BmwU66^a}HlDBT%d!Y}pL>CS#&Cq? zSxDHQ-vOG*7tMx5g-@!bDXJ|P4G2LY{P@?XE8&(n{=xVJ8A*%^=ZGY447Hf(grR0u zt;4ip;{#gFM8o`Q=l}R z5PXV7(ES-H@5z`llF10SAvlryuG2kBpaoHgl%3#^SU|rGy;4ub1NHlT3Yv9nW;mvH zaOC=CyF0(joc#3)rGX%;$Nv{Qs5R(B4c9Q1-RUQH@N0b}k zC5-#{0CSVu1)06OU$GsKF$ZFt;H>YDpu4^g+nFrIvRjxLvKcb7ciFHRo&P zu_z6sHi$aGQ!-Yu1jrbGI8W4!#MzKk`g(H=A!ef!d~W>itS;6FL3#EG@@bR@f!Yuv zwWJY(s``;`Fv2gnfg=U-<7RbzcTyAP3aU}HLfVu#j>5Ch0UpRm$3@fZ>?co~C-iGdo~G97r~c2 zE@PEJa@*#&8=}s-8P9j2_{IFO`2o7SDkll2Q1IAC?ZhBJMhOaDiK%C`<$J@*NsdUa zX&m7sB^99c9ULJnJsVkKvs+sTp7XcD9>A%o^`?e!?IXpIXNK5=AzCWfY4V#v3B&)PNlqc$Ijz=fcX?I3Wv4;${vZ&+^juHq((ul3HblPQt zZPmlQwSXwHXo$@;z}~j-nY|yaK{&`o_5^E-W)f;vId^K3tW`-O(LKw>MH6K`huH>W zLL$>VnTBPTAT!L-9Zl)Fh;24aBvJ32m21t*PA!!1r3T#q~?=YQQwLT$t7!KNNwQAkk=2#+B8ZKEV{>mU#UEa zl9>7Vg3uq<#p1Qf6p);s5P^QtSj52eAg+xcxXd2s2TTmjkPm`d7 ze0lXRPV>GKJ#*K|R-=l0X3|Helq$D+7~6%$b*f5Yt}I2snHmTwqjG(#O#~#ttkT1# zhp7wANly)|SllE+%!WB1#RXITlOF4eGyrXPzvN&o> zVTSAkxw)+FpsZ2+6|uVJBWOUC7L{oPVkmK!g2-rqNkk=c)U5aWpk*2)7c?3;Cv;L< z-qApo(bviZVK;v!e=`K?6@sbQSHD1wQ1kbR{EySsdVYj4h0#kOwpWaBk?evAFe=;U;%Q@neUCfGG&>J@9lRm${bKzPcL6G z8j{O90$4I%wZl;%grfZxYO^I3x^ym%I5*eBV*$jG!p58w5}hDgsGr}fAqb!kFv>~J zhw?(p{H4~!#SHa&AvBd*-_gQ)NQ!8j69#1A&(M~nHf25p=ev9(+TI7F1MOAVk$KG5 zNT9#4jd4Q9))GRVVxLS%ks-OH$l%*!QyVxs#I&xz7N@mqk>%-1{d~d9JccFESwxa~ z>)?Oqq`)+W4zX>q9VwDaRyZQDydwn3PT{n0^5s~ySxII{W}yiBU1;E=@G4Jl9>oxN z%p;O(qo@vYDqs}@nKHr!vy5^ZhDa`1p+aJLM}@p>zMQB9<^h}1O25$_mw4ZVDY87J z%2`yyvb;Hl8K!{0&<%;Atej{9K{ebiA%{w#ge=DcTK$) z$(L6N9ru4Y!T5x7EJxKNqNk|A)dmE~yM_N!iTwBu-WZlEYL)W(?54x^HZzYPit~bG z^0a>_*N<2`T_RZJ*wfReq=hcm*Ka=i{OzOSi?`3-^xyh@mp95bK3n{8=wA5fZD~_V zBE|&r$bICcd3EYQaj^!m@|Y*uLx0B`ouD}B+1xIPGRTfPJLbe80|8=`8(n0v(ASP1 z0~)z79!z3yM}r8U)lBFxYC})1sMpInIHi9{uh!RhuP1;QG7*4sP+PiuuF-~KYn2ls zB-J+)n=XHUy_t7_wOUan{X|$X7LM@eqYig{y&rJ{9@Z0$0AisGEr(VL_W+}JNb7d) z_azB||NmQ^UuAc}6C<^%h+$RzW+f2*ukYYU5n7LmdM9K+rARL%tz!HolIWDyTskMu z&UQy}MIRss5MX=`Tz3XTihg&lZonMa2k(+1L~2DNgv!;#d;8XRq_7TUH3OOpRnd`_ z^ABl?P%6d;SG2wd6#=^(!xV!F01EN$T4@z(;)KlhjH2xbWyKf7X8SY)4(tZBALk=$_aY&p=wh+CQfl4sUm1;&ES{UAT#u z&6S9?UB&2HV6ID0wjIf`*!T9Sgb*g{gIm$cgvGyaC^83M`W4czU3zj=Kwgt0tsBDNkvLGgenN^<~= z6q6i7ihA%ja78WLdzh2}hO`=;W<6sGXAs^SOoqoF0`x&@dKdaEpuqZ(>>h=evxvZh z#mV!Nhn=6T?&jC?&hJu2x!Z1bFIx6n1a_#$e*+D$FOc&M0p-NCNUm4oh1%+l5daS9 z|Df}jAi$P)`)qM@vpA*qaUuA_(GNO*@R$F~w|~4_eEaAdObC?eG7BH@ zE(#H{8=)K!Fg=BBb|4!h*AoeRoTP5~ITCyZJm7}9z8F5VH-i%R%2E`bzo@>d-h;kiaLW zK{=x?r3*lsf!wyBPI^hB4$i0{H&g5ann!&DM;ucam=6S#7cW&6iv3VV7RrKXW%^|B zSNm=Z{{O!j5t|Pr5luTJCb=+06%yqO^cGV4gL`d-f`;ZpXE3Fw0wV*8EHRNmEVB9)f_H%umEe&z9$c`0i$3Zm6G-Q^&ai{Wb1_cWvF_gpFv% zJfTi3_PItcP>`c@-2C$-l6d}8on79~)nzd&+?L@#+}p85j1tzGanZA!KOQ?bdqfS1 z;KLMAr0bf_FU~Ev6Sf{LPyOLkwXaGq?28Cc3*5XsV8FiX8AKe~sZ`gX;-9dzJFoxq zFZQu$5>PxW9-%t*Hb=jndxlTH`8g7|KWuuEDsFc2q+qYF`b*4(FulK%(quG4@kC!jM-{;wZ&zW@l zFMFNNuc#r9?=-ujui%@OM-fRqaiD;DfD6Q%Q5R0;j3jUhNsnAB#qCpwf1+$mwk zWkA`0pqzB(E!~>PJw=KW8qg|?!i%wNL06H-Te#*I|_L0GKYWbYXEW;-Esf`E`uaM1gyhYWv)gu?(_)L4~Z zS0mrgwU_hZeTyKdFbt~??Zir+bqXUxehShDK35?aDHq_K0)O*K-3kCpQ~!bt<9kBNH-vR%=4b1m(Zs&iq;#b;mtoJvxn zddK89bv``}JK?y@>IqO`ffjvQ7qLY7zmSaI#~LYGq!+EzBDsg7MGmi+diyM-Rd&gY z7|RX#R|bXBq#o){DsVz4`ZM(_%KD!XwM6Y~RytPu(Y>H~pN6iF{y^;6SZID+V( z25w$0^Vw4zL*{61H8ICTeZ?Mt<&*8Fkvc+g<;0+H1E!$?KUUYbAx2_RJajPn==O=Z zWsIm^atlWcg?_&cUTD)Xd!;+Yw1v>(eZAo@)U_4$9&GJ(_TM{$T5fx3-~KH zB6(`nVBC}@0wwMN^Mr(*NMo_V6%_YC5vjg|@o#hV=|y!9gw7peLcpCQHgE^;kt|-3 z*UqY);P#*;N+D0_ipj^Zt)gumm^cJK2RI$%V8Bc*2tn|PmTR!IDJd5|LK{M)7d1k- z_C$!1*us%w4wldzIz~Dugau7cfTR3Xu@7KicULMHRh0grdm(&R( z(6Xu^ELv=xiafZzTxR0n58pg}dbV7jy?sb`P5wm-5kW?WKm-6W8HC>+5>t0a*4PJ@ z8>wNcuv{$JhA#9JM#50%lpu`i_x2KIb__B4k`6>UskZ6{IIlg#Fj#%Se zi6K#WbFpOlRqLJsdwB|e2v1K4QfEQOU?yP(a~qhf6al;2$N-7}6N}c2g5(yC>jO-i z`ba1?1lN-3YD^}$U6Jx8CF*kI2nA}t*3WklEp&6o?3C*!o=B($keZm>H>6HAR}GR> zcnCy(2<-qopl0@@i;{?-r3|Lj7BsDM*jUi;hx%PnrRhC9aX|aCnn7hgUs5h;u-nbU zx4eV^?-UN3A_#D6ZBL6?6($2#k-rH~pCTbVS?{+J=SRNp9fCAk4FBFGa$`+CMeM z^L@rfnKsqr(z-aIN0-5?#ObX~(28G8w)SNv_lFc(1_YgbJdvVBa!I3w#|ujC;D~`q z6&o*H6HchG-rU_FPGxyn14isr3f{;y&={fY_y}SQ82mV)ce|27mTsh89H*2KwJjMV zxn!LfsT~|KGBYwg@gQ?Zh0Eye^8#k?m|H@am?4|sMO4%-iF7PMz@~v{xKCW9SYtR~ z{0+&v3|$2Q0y^dlM0JXFbLF1ez!4)(a41_>^F|Pul2+*>RGAVYg`#}HD3}hpR+;e= zuT^fIJ~bo%br0LB?|Kh#Q0MD6`tIQE+qYPzc~`>O_1iyu^Js8*UjkVfbP*vwBv3XM zIdukznl42+HjaSUfSx{aAdX(0rkmg?BS}_SzJ6%YVa7!bt|QvH=^^kBv+|$ZOKN(q zgt!`krRTBE+1Mhoa$*Qex-K#N|KH{i_nSO@PLTr z45tZem$4rneS>kg1dkcH4)>~WRQGx^=KOFg@$SrC6%E`Iwu7+=8!%6_&w$4`r3(){ zL4Gj}amz_IRFdJ4iNkOYA|M;|SY{n3gUwAOOI#FQpRWD^S-lKVhexNSRK+YocF2NH znveUhOv&V_@6e-K8wEL|?~q7$}_^h}**2cL?2 z4p_#DOe1WI@G9Pqn;`?0;oz?=T_o9UdG-vG;NfSK8oVrio`^^YtNFp zY9)&@v4Nx76IiNEE+dBmQBQai2PSSHki$T$)6NjunR8llB{8kBdt$rN{leLoBiek^ z`jVo9_qI|SI6B0FJ6cwVMyMrCXy{u8PS_k$s+NsN%7euzS$VygA=4dUN^0UN;TuLp zWDplz1+f+K8pFDq4_ZH*6nmC5mhe20+QHF6^H!D15>3o&C~D~R?Y;O}zyP%82+l~u zAJH3y7z$*NlQ5V?AhG=&?)3uIJxdxHTn#3!OKk&31zt0b&=lleXmDXlI6k=n2Sqr> zP9@wQi+qou1HuF!i(IdvWEM^*-Fy6CN)$UZzP4b8^pc{3$7W4!;OJ1G9dyT3A?J2# z98^!AYna>0-SEQ#0;52|W3I-Kem69biU~5+6nH|GZr*IriYL-b)~`ll2S*GQ?AyfI zo5hai)+;}GRuThvdYif`O>HgDRK?9PalsykbB^GO5rq-Up(QycxS*fxm<`uFp?t)-H zFnKqOl!>Lb`>i#vI`%ACBSm5ZM+%jL?ilT=@EenhOL(-DjM!i&HGy00z_o!fs_lzB zxYcks*0Lu8RJ@&TxDrEH9`zC@NLx>qTa>XRRf+;jakI~8+VUGX*w+=uu zE?tuJvLc4JuiPg2296kx05;()L?b0LBr@&pgfJe$vLKhP%_&oXUbJTmn~A5Pm-&d> zXkKYD17jItL2w%#vS-PvxJYf_D6zY>gFjoTRa8^UWL+@uZNdC*w97_A%OBAwKuK^c z87dD8J%SWHfYiXb&0tPUi2zJbaFLKDAf>{-PrEaR$qrKN$8O*Vb3>|Qvk`W&`UTVQ z&hg&tRASMlw*wg(oRPf^{e(V;11cE1Orp&yZ6n8!Sfm1Xk|)IX)%K5!i0L&TH2Qkb zC0b%Acl)xk2}dveST(LoZQ!WuTJB=4VpgOgF;o)Sl1VlrTNd2CFt!aFM$(Alq`B3nKn(ObB1to# zn5oRIJc1A-&~WK8C~%1~@gp;4fcS~vN}<^6pqjm5dd)f^Qd>Ae=)em+b>4GMnBLl9%~$-m*_1*K_h+$M5_ijFIU3*O#5rE@K{mLn7|97&FzmhM1Vp8*nU{=?CX|Ha&8EMG`yrD9uV2Ag zyEiTFM|w@8g&RdeVOV_!M+&`V0p7z9C9oRIXj6qoY|n%kh6N}dApr^42QwN-Qy;?> z^k8raD4w7{r^FSqH;AdnitQ%!(-K#t*Q|3zY70jSq45N(G)japuds|C{RQuRgK@{5 zp~aowMpj_1SkUAMdBJoL@-z&aD8>RCV<1WS0g3r+s7wpSNUte!cr!M+gQLdhH!A}1 zMMHYP1I30_EiVH%76uKR^9Ah-FPAGcG((|YJZw)1>ZbtyC6{5i@J?Kik>>{tC(o|V z;gs03rcuH{!X|fclyJG5;syxi!}vqrDuLrvJm1jae8g250cb%s7!z(5ghpnUP<}+w z5u}Q`wgo|wOWH+o5i*JZ>l-+F6bB!`n8gtQ0!M%k*%Sy2aY>j>{wSNRevITKP)ZsC zJawu$O}(o7Wy>3q!Gc}6{FM+jtcnl^nt`8jHN+;8N{Oo`COk;b`(Z9 zU#&E!=X7_9q771$nDQ~)p!7FjxdTd*Ooe2Gz;vWmDH|HrMs6}?EU~2Bjy#E~*_5ALrN^s%fPAOIretd}+z_FUr z5s}N#78fG9WStjMJ2)z2cBLtW9353K`*Qew;22(T;nHK|B$!qV9Yi9=>!0xfI97hJ zYUx7Y|Nq-=(r3c55(I92*_vcXZQ|$Xr2_r8o4`$>Zw_V2H=!CcbKC)dWRhxb+Tda*wz_NuH4=OO^0SjR&Pj) zL6=Y}QR*z|&8tZe3w4X>^*?+EwU zg3J^Zdsec6(VLZqMGI39yOc4~YBC7;I-=?kRtRud)Lv0NlY>5*Ii|5*0AEB{$m34QInRN0)W@GMnA zXwNX5NO3S5MaK{#%JnB2qp4Eof!tCG&hSgaw5RaaXq_B7(+=J}SIZ&@+kq$(_>eOJ zbm%!!sG+H7cgmU z!)o$0oW^$13r$T`blY0cA+cah9Hf?abO@K<{PW%El3ojXF*67t<>umC5_8o;Jmbn{ z1}b{dUM31vmu?5wqYTs1W#T7zCsoX0%Jt~w9YL~)Ipv0Dpsj^Q6x8fXh8>AChRRNN z_j~F<(A!c<#vIY{WJD*3O6(*g1sca!v>;d&Rha*^N73$EL!hr}Jqn$C`}3L!RhwQ? z%;hsS$qgJWpHx+i8MngtjLF|pA{k=R4Hy27A6LMUih#Vy0BjV zp{Z>3C2MypwSjy62fzI4OSM;+DEa9eAVbyGOO~wF)r37OQ$vFl&sHn*^5p5pxqC;@ zfq4XsKP<|AGJOk5DLx&YxMAu=8#*MHtkEI0fuln#cp|Km8}PZ!v7@~+d;8VJmbnKO zHQaQbeBOERljY*-h!82m^e`|802M=xg36Hrh0mK!J8DCS_|`1ucj1R9bmh@V<{n{)0(g%q1c{C!5Sww4 zi5O(BCSTBsV5Ng?$dO#q_#$`rg@jsL-qC`&V89e*;`Wbr*S7@(aL~Q@ycnt|=rD|w ziz4jL9ZLEL*N*l}n~LtMvQ5y+m_PuN{kQU{7F0+tX-wflV1hxdZQ$q-{Eko|_FylH zB~51I1juE3DM4lpl(j60XpIi4>>Xl6BipI|2Htaz`Y|Pp|NpluIOKKt`3{>n%H-gc zl#Lx=cQ$*q5s5XRGZ~~^(6xr>2}Fu7q1~fv_bq{$MYOq?o3zJ@OQ_o9iZv!mt?x+n zc~CMX5vz;hnM?7bC~7GdD8h_K@Q|Uo=J013fCin!XiWqPkpr`3_7EZA+JymTl@)75 zNUiUPfKqvdt|eY%>ILz!v$7e|lDPF|!rC|qn`>M6I2b7?>LaKS09|R_;OPaCn90=? zI~``gGVYU?CbUvo(&*sh$pIv`!my4IS!vKGUtzyrSqaQy`)Yx5m0&gEXqXbEBiSeU zWl3T)cUw}z<|Y_MY>{CSMjp*e2H>hTx7fI`4;?ZL(crxcg&iPb%PR_XuY@I@T;I_l z#MQ$)#wg-uAwUJoONW`(P~=((7}qKiFUb*fpoIoB*do6a=^(6D4WgtO7#Yh{@O>A< zfRjsfNUa#?5C>hVwK}=Jqr-N2EnhY(j=>&_)`ancKYJ|G&5k)c*re9w_~i2g1g{T{ z1oUX0&}Ws%T2s71Q!lw%0-!42h=8xe1!#n{uAUY|34pIf*6Q%}9Z@1$_Fj!E`|&-f zoqMi_!K+m%kn0`sh<(v|stD_5VWEiIszyRUdlc!X_*G?mp&LEltiVaOBhKPV32Bd*a5lk&;Ogs!Wmt3~=>h8Qu#c@$@=jb)U5{hC{WuqD! zLtD$TWCaQ|P9|;MZEZyzm>}NVP`G%Fdtk^C_eKQ8PM*C4sNdtniberyOY`t>dVNO% zKN!G7cQy8}LX!)+4py%+YM7p9hDPf=p^*XbIGL{b3~H0=YAq%w08S!^35JWYj}H=L zsIOQjLvnpb28ChDp#KSk@2nu}7Evb*A!;JkgTb$ES4T*8?hNr5dSo?YSNs}CK^T_v zBMJ*_HF4)Q3{hXuC_!gUtltT7>me$WUL9wO~3%$ze5^RYgg1eR)R)tA)o^mT^

=frNVxDt=u?CYKC6;dDLr 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

Ck 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%0AI>8@LCX!f1Br5BOdvq14x(9!z)cBDa^7r!SXk3{ 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 LsvRYx)b0K+M&VBk