forked from cernohorsky/QFH-Antenna-868MHz
-
Notifications
You must be signed in to change notification settings - Fork 1
/
parameters.scad
96 lines (75 loc) · 2.37 KB
/
parameters.scad
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// -------------------------------------------------------------
// Parameters valid for 433MHz ISM band antenna
//
// -------------------------------------------------------------
// Dimensions calculated with John Coppens webpage java script
// @ http://jcoppens.com/ant/qfh/calc.en.php
// Input params:
// Center frequency = 433 MHz (443.4 MHz designed)
// Numbers of turns = 0.5
// Length of one turn = 1 lambda
// Bending radius = 2 mm
// Conductor diameter = 0.6 mm
// Width/height ratio = 0.84
//
// -------------------------------------------------------------
/*
$fn=20;
D1 = 123.2; // mm large helix1 diameter.
D2 = 117.1; // mm small helix2 diameter.
HH1 = 146.6; // mm height of H1.
HH2 = 139.4; // mm height of H2.
WIRE = 1; // mm diameter.
CYLH = 150; // mm height of support cylinder.
SLICES = 20;
EXTRUSION_WIDTH=0.67;
pedestal_height = 1;
*/
//####################################################################################
// -------------------------------------------------------------
// Parameters valid for 868MHz ISM band antenna
//
// Dimensions calculated with John Coppens webpage java script
// @ http://jcoppens.com/ant/qfh/calc.en.php
// Input params:
// Center frequency = 913 MHz
// Numbers of turns = 0.5
// Length of one turn = 1
// Bending radius = 1.5 mm
// Conductor diameter = 0.6 mm
// Width/height ratio = 0.44
//
// -------------------------------------------------------------
/*$fn=20;
D1 = 47.4; // mm large helix1 diameter.
D2 = 45.1; // mm small helix2 diameter.
HH1 = 107.9; // mm height of helix1.
HH2 = 102.6; // mm height of helix2.
WIRE = 1; // mm diameter.
CYLH = 118; // mm height of support cylinder.
SLICES = 20;
EXTRUSION_WIDTH=0.67;
pedestal_height = 1;
*/
// More robust lower variant
// Dimensions calculated with John Coppens webpage java script
// @ http://jcoppens.com/ant/qfh/calc.en.php
// Input params:
// Center frequency = 907.8 MHz
// Numbers of turns = 0.5
// Length of one turn = 1
// Bending radius = 1.5 mm
// Conductor diameter = 0.6 mm
// Width/height ratio = 0.85
//
// -------------------------------------------------------------
$fn=20;
D1 = 60.5; // mm large helix1 diameter.
D2 = 57.5; // mm small helix2 diameter.
HH1 = 71.1; // mm height of helix1.
HH2 = 67.6; // mm height of helix2.
WIRE = 0.8; // mm diameter.
CYLH = 80; // mm height of support cylinder.
SLICES = 20;
EXTRUSION_WIDTH=0.67;
pedestal_height = 1;