파일명이나 폴더(디렉토리) 관련 정보를 확인하려면익숙한 import os를 버려야 한다. 그래서 아래코드는 동작하지 않지만, (ipadOS권한 때문인듯)import os# 현재 작업 디렉토리의 파일 목록을 가져옵니다.file_list = os.listdir()# 파일 목록을 출력합니다.for file in file_list: print(file) 아래 코드는 동작한다.그래서 import pathlib를 쓰자.from pathlib import Path# 현재 작업 디렉토리의 파일 목록을 가져옵니다.current_directory = Path('.')file_list = current_directory.iterdir()# 파일 목록을 출력합니다.for file in file_list: ..
화공쪽에는 Fanning friction factor를 더 많이 쓰는지 게시판 등에서 간간히 보입니다..수식 자체는 darcy equation과 차이가 없는데, 2개의 값은 제곱의 영향으로 상대적으로 4배 또는 1/4배의 차이가 날 뿐입니다. 원형(배관)에서는 상용툴에서도 제일 많이 쓰는 것이 Darcy friction factor 이기에 확인차 간단히 비교를 하면 아래와 같습니다. Fanning friction factor Darch friction factor https://engineerexcel.com/darcy-vs-fanning-friction-factor/ _
https://eefunction-webapp.fly.dev/ - steam table IF97 :: water/steam property는 실생활에서 가장 자주 사용하는 '유체'입니다. 따라서 공학에서 가장 자주 그리고 많이 다루는 항목입니다. 가장 널리 쓰이는 것이 global enginnering working group에서 만든 IF97입니다. 이를 사용한 결과를 보여줍니다. - compressible fluid property:: 요즘에 수소, 질소, 천연가스 등의 압축성 유체에 대해서 관심을 가지게 됩니다. 유출가스의 양이나 수소 질량 등 관련사항을 검토하기 위해서 사용합니다. - seawater property:: 바닷물은 salinity (g/kg)에 따라서 그 특성이 결정됩니다..
엑셀에서 언어 번역기능을 vba로도 구현하고, gpt 앱으로도 구현할 정도로많은 사람들이 원했던 기능인데!! 드디어 기본 함수로 제공이 될 예정인가 봅니다. (2024-07-30)일자 MS Blog에 기재 insider 기능으로 추가되어 있습니다. https://techcommunity.microsoft.com/t5/excel-blog/what-s-new-in-excel-july-2024/ba-p/4181439 What's New in Excel (July 2024)Expanded data structure support and comprehensive answers in Copilot in Excel, and moretechcommunity.microsoft.com _
setting >> "whell scroll"로 검색 - Editor는 .py 파일의 마우스 스크롤 속도를 조절- Workbench는 .ipynb (notebook) 파일의 마우스 스크롤 속도를 조절. 개인적으로 x3배가 평상시 쓰는 속도와 비슷함 마우스 스크롤이 윈도우 보다 1/2정도만 줄이 내려가는 것이 여간 귀찮은 것이 아니다.새로운 PC에 vscode를 설치할 때면 매번 찾아서 설정하는 메뉴. 각자의 마우스 감도에 맞춰, 값을 설정하여 쓰자"editor.mouseWheelScrollSensitivity": 3 , // 0.45 for 1 line, 0.9 for 2, 1.35 for 3 lines https://stackoverflow.com/questions/4561..
# launch.json{ "version": "0.2.0", "configurations": [ { "name": "Python:Streamlit", "type": "debugpy", "request": "launch", "module": "streamlit", "args": [ "run", "${file}", "--server.port", "2000" ] } ]} _