- TI nspire
[TI-nspire] FormulaPro - 전기 공학 문제 풀이용 툴
원본 출처 : https://tiplanet.org/forum/archives_voir.php?id=6034
github : https://github.com/adriweb/EEPro-for-Nspire
설명서 pdf (영문) : https://education.ti.com/-/media/C024C65A3D5247D083021DCDA3E73369
ㄴ 프로그램이 간략하게 소개되었을 뿐 큰 도움이 되진 않으니,
ㄴ 자세한 설명이 필요한 경우 TI-89/92 용 오리지널 프로그램인 EEPro 설명서(pdf)를 읽어보시는게 좋습니다.
ㄴ https://education.ti.com/en-ph/guidebook/details/en/95B2DF8D3F5A47DE88257AE45C2EA867/89eepro
소개글 한국어 AI 번역 (ChatGPT)
FormulaPro란?
FormulaPro는 TI-Nspire 계산기를 위한 프로그램으로, 전기 공학 문제를 해결하는 EEPro(TI-89/92용)의 일부를 TI-Nspire용으로 이식한 프로젝트입니다. FormulaPro는 무료이자 오픈 소스(LGPL 라이선스)이며, Lua 스크립트로 작성된 TI-Nspire 문서(OS 3.x 이상 지원)입니다.
주요 기능:
1. 모든 TI-Nspire 모델 및 소프트웨어에서 작동하며 창 크기 자동 조정 지원.
2. 마우스와 키보드를 모두 지원.
3. 사용자 정의 방정식 세트를 생성 가능(변수 및 단위 연결).
4. 방정식 자동 해결(사용자가 값을 입력하면 자동으로 풀이).
5. 다양한 단위/하위 단위 선택 가능(예: Hz/kHz/MHz, °C/°F/K 등).
6. 사용된 방정식을 시각적으로 표시("Pretty Print" 모드 지원).
사용 방법:
1. TI-Nspire OS 3.0 이상 필요(3.2 이상 권장).
2. 기본 제공되는 데이터베이스(EEPro 일부) 사용 또는 [온라인 데이터베이스 생성기](https://tiplanet.org/scripts/FormulaProGenerator/)를 이용해 데이터베이스 생성 가능.
3. 생성한 `.tns` 파일을 계산기에 전송 후 열기.
4. 카테고리 및 하위 카테고리를 선택 후 데이터를 입력하면 자동 풀이.
메뉴
Resistive Cirtuits : Performs routine calculations of resistive circuits
Capacitors, E-Fields : Compute electric fields properties and capacitance of various types of structures
Inductors and Magnetism : Calculate electrical and magnetic properties of physical elements
Electron Motion : Investigate the trajectories of electrons under the influence of electric and magnetic fields
Meter and Bridge Circuits : This Category covers a variety of topics on meters, commonly used bridge and attenuator circuits
RL and RC Circuits : Compute the natural and transient properties of simple RL and RC circuits
RLC Circuits : Compute the impedence, admittance, natural response and transient behavior of RLC circuits
AC Circuits : Calculate properties of AC circuits
Polyphase Circuits
Electrical Resonance
OpAmp Circuits
Solid State Devices
Linear Amplifiers
Class A, B, and C Amplifiers
Transformers
Motors and Generators
향후 계획 (FormulaPro 2.0):
- TI-Nspire 내에서 데이터베이스 편집 가능.
- 더 강력한 방정식 풀이 알고리즘.
- 스마트 검색(단위만 입력하면 자동으로 관련 방정식 찾기).
- 카테고리별 이미지 추가(회로도, 설명 등).
- Vernier 센서를 통해 데이터 직접 입력.
- 다국어 지원.
- 결과 그래프화.
FormulaPro는 EEPro의 모든 기능을 포함하고, 이를 뛰어넘는 기능을 목표로 합니다.
추가 정보 및 버그 보고:
- FormulaPro 팀: [tiplanet.org](http://tiplanet.org), [inspired-lua.org](http://www.inspired-lua.org)
세상의모든계산기 님의 최근 댓글
불러오기 할 때 변수값을 먼저 확인하고 싶을 때는 VARIABLE 버튼 【⇄[x]】목록에서 확인하고 Recall 하시면 되고, 변수값을 이미 알고 있을 때는 바로 【⬆️SHIFT】【4】로 (A)를 바로 입력할 수 있습니다. 2025 10.24 fx-570 CW 로 계산하면? - 최종 확인된 결과 값 = 73.049507058478629343538 (23-digits) - 오차 = 6.632809104889414877 × 10^-19 꽤 정밀하게 나온건 맞는데, 시뮬레이션상의 22-digits 와 오차 수준이 비슷함. 왜 그런지는 모르겠음. - 계산기중 정밀도가 높은 편인 HP Prime CAS모드와 비교해도 월등한 정밀도 값을 가짐. 2025 10.24 HP Prime 에서 <Home> 73.0495070344 (12-decimal-digits) // python 시뮬레이션과 일치 <CAS> 21자리까지 나와서 이상하다 싶었는데, Ans- 에서 자릿수를 더 늘려서 빼보니, 뒷부분 숫자가 아예 바뀌어버림. 버그인가? (전) 73.0495070584718691243 (21-digits ????) (후) 73.0495070584718500814401 (24-digits ????) 찾아보니 버그는 아니고, CAS에서는 십진수가 아니라 2진수(bit) 단위로 처리한다고 함. Giac uses 48 bits mantissa from the 53 bits from IEEE double. The reason is that Giac stores CAS data (gen type) in 64 bits and 5 bits are used for the data type (24 types are available). We therefore loose 5 bits (the 5 low bits are reset to 0 when a double is retrieved from a gen). 출처 : https://www.hpmuseum.org/cgi-bin/archv021.cgi?read=255657 일단 오차를 놓고 보면 16-decimal-digits 수준으로 보임. 2025 10.23 khiCAS 에서 HP 39gII 에 올린 khiCAS는 254! 까지 계산 가능, 255! 부터는 ∞ fx-9750GIII 에 올린 khiCAS는 factorial(533) => 425760136423128437▷ // 정답, 10진수 1224자리 factorial(534) => Object too large 2025 10.23 같은 방식으로 500! 근사값을 구해보면 1.219933487 × 10^(1134) 1.22013682599111006870123878542304692625357434280319284219241358838 × 10^(1134) (참값, 울프람 알파) 2025 10.23