Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 |
Tags
- ESP32 #Arduino
- centos7 #yum update #/boot
- CM-EF-NEX
- Xeon #E5-2680
- TensorFlow #Python #pip
- 피코프레소 #ITOP40
- razer #deathadder #viper #g102
- VMware #Shared Folder
- Laptop #CPUID
- Dell #Latitude #BIOS
- 다이슨 #배터리
- Tarantula #3D 프린터
- x99 itx/ac
- Arduino #PlatformIO #macOS
- Java #MacBook #macOS
- fat32 #rufus
- VirtualBox #VMware
- XTU #Virtual Machine System
- Octave #homebrew #macOS
- egpu #aorus gaming box #gtx1070 #tb3
- Arduino #Wall Plotter
- k6 #피코프레소
- 매크로렌즈 #리버스링
- ITOP40
- Oh My Zsh #macOS
- VNC #Firewall #CenOS7 #VMware
- Linux #VirtualBox
- Callaway #Mavrik #Epic Flash
- cycloidal #rv reducer
- macro lens #EF #FD
Archives
- Today
- Total
얕고 넓게
[광학] 망원경 = FD 렌즈 + Eyepiece 본문
2026.07.28
전에 잘 안되었던 카메라 렌즈로 망원경 만드는 것을 다시 도전.
AI 물었는데 망원경 eyepiece 가 가능성 있지만 왜곡등의 문제있다고 함.
Lupe로는 안 되었다.
전에 만들어논 높이 60mm의 C2E 콘 모양 어댑터에 10x 접안렌즈를 연결해서 외부 에서 관찰.
성공적이다!
망원렌즈 뒤 엄지 한마디(25mm) 정도가 초점이 맞는 가장 가까운 거리이고 배율은 낮아진다.
FD마운트 플랜지 초점거리는 42mm라고 함.
전에 찾은 FD 마운트와 30mm 현미경 접안렌즈 어댑터를 연결할 수 있도록 모델링

$fn=128;
module ringThread(rot, z, length, height, or, ir) {
translate([0, 0, z - height]) {
intersection() {
difference() {
cylinder(h=height, r=or);
cylinder(h=height, r=ir);
}
rotate([0, 0, rot]) {
translate([ir - length * 0.5, 0 - length * 0.5, 0]) {
cube(size=length);
}
}
}
}
}
eRingZ = 1.2;
eRingHeight = 1.2;
eRingOuterRadius = 27;
eRingInnerRadius = 25.5;
length = 2* PI *eRingOuterRadius * (61.5)/360;
ang = 26*360/2/PI/25.5;
echo(ang);
color("green") ringThread(0, eRingZ, 32, eRingHeight, eRingOuterRadius, eRingInnerRadius);
color("green") ringThread(58.5 + 61.5, eRingZ, 22, eRingHeight, eRingOuterRadius, eRingInnerRadius);
color("green") ringThread((58.5 +61.5)*2, eRingZ, 22, eRingHeight, eRingOuterRadius, eRingInnerRadius);
color("white")
difference() {
cylinder(h=10, r=25.5);
cylinder(h=10, r=24+0.4/2);
}
h_body = 30;
color("yellow")
difference() {
translate([0,0,10]){
difference() {
cylinder(h=h_body, r1=25.5, r2 = 32/2);
cylinder(h=h_body, r1=24+0.4/2, r2 = 30/2);
}
}
}
translate([0,0,h_body+10]){
difference() {
cylinder(h=10, r = 32/2);
cylinder(h=10, r = 30/2);
}
}'IT > 광학' 카테고리의 다른 글
| [광학] 천체 관측: 달 (2026.06.27 23:00) (0) | 2026.06.27 |
|---|---|
| [광학] Brilliant 쌍안경 자료 (0) | 2026.06.24 |
| [현미경] 렌즈 총 정리 (0) | 2026.06.22 |
| [카메라] 렌즈 커버: C-mount (0) | 2026.03.09 |
| [현미경] AmScope 현미경 자료, 카메라 인식 과정 (0) | 2026.03.04 |
