얕고 넓게

[광학] 망원경 = FD 렌즈 + Eyepiece 본문

IT/광학

[광학] 망원경 = FD 렌즈 + Eyepiece

블랙오닉스 2026. 6. 28. 13:57

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);
}
}