-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ajoute mises à jour jusqu'au 15 mai 2023
- Loading branch information
simon
committed
Jan 23, 2024
1 parent
f739b49
commit d8b75cc
Showing
23 changed files
with
193 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
$fn=100; | ||
|
||
tolerance = 1.1; | ||
|
||
rInt = 13/8; //Rayon intérieur | ||
rExt = 2; //Rayon extérieur | ||
hCentre = 2; //hauteur morceau du centre | ||
rPipes = 5/16*tolerance; //rayon des tuyaux minces | ||
rFils = 3/4; //rayon du trou pour les fils | ||
rVis = 5/32*tolerance; //rayon des bolts | ||
hTop = 1; //hauteur morceau du top | ||
hBot = 3/2; //hauteur morceau du bas | ||
hVTrep = 3/8*tolerance; //profondeur de vis de trépied | ||
rVTrep = 1/8*tolerance; //rayon de vis de trépied | ||
|
||
difference() { //centre | ||
union() { | ||
difference() { | ||
cylinder(h=hCentre, r=rExt); | ||
translate([0,0,-1]) | ||
cylinder(h=hCentre+2, r=rInt); | ||
rotate([90,0,0]) | ||
cylinder(h=rExt*2+2,r=rPipes,center=true); | ||
rotate([0,90,0]) | ||
cylinder(h=rExt*2+2,r=rPipes,center=true); | ||
translate([0,0,hCentre]) | ||
rotate([0,90,0]) | ||
cylinder(h=3,r=rFils); | ||
} | ||
translate([0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hCentre, r=rVis*3.2); | ||
translate([-0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hCentre, r=rVis*3.2); | ||
translate([-0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hCentre, r=rVis*3.2); | ||
translate([0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hCentre, r=rVis*3.2); | ||
} | ||
translate([0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hCentre+2, r=rVis); | ||
translate([-0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hCentre+2, r=rVis); | ||
translate([-0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hCentre+2, r=rVis); | ||
translate([0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hCentre+2, r=rVis); | ||
} | ||
|
||
rotate([180,0,0]) //top | ||
difference () { | ||
union() { | ||
difference() { | ||
cylinder(h=hTop, r=rExt); | ||
translate([0,0,-1]) | ||
cylinder(h=hTop+2, r=rInt); | ||
rotate([90,0,0]) | ||
cylinder(h=rExt*2+2,r=rPipes,center=true); | ||
rotate([0,90,0]) | ||
cylinder(h=rExt*2+2,r=rPipes,center=true); | ||
} | ||
translate([0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hTop, r=rVis*3.2); | ||
translate([-0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hTop, r=rVis*3.2); | ||
translate([-0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hTop, r=rVis*3.2); | ||
translate([0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hTop, r=rVis*3.2); | ||
} | ||
translate([0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hTop+2, r=rVis); | ||
translate([-0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hTop+2, r=rVis); | ||
translate([-0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hTop+2, r=rVis); | ||
translate([0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hTop+2, r=rVis); | ||
} | ||
translate([0,0,2]) //bottom | ||
difference() { | ||
union() { | ||
difference() { | ||
cylinder(h=hBot, r=rExt); | ||
translate([0,0,-1]) | ||
cylinder(h=hBot+1-hVTrep*1.1, r=rInt); | ||
rotate([0,90,0]) | ||
cylinder(h=3,r=rFils); | ||
translate([0,0,hBot-hVTrep]) | ||
cylinder(h=hVTrep+1, r=rVTrep); | ||
} | ||
translate([0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hBot, r=rVis*3.2); | ||
translate([-0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hBot, r=rVis*3.2); | ||
translate([-0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hBot, r=rVis*3.2); | ||
translate([0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), 0]) | ||
cylinder(h=hBot, r=rVis*3.2); | ||
} | ||
translate([0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hBot+2, r=rVis); | ||
translate([-0.70710678118*(rVis+rExt), 0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hBot+2, r=rVis); | ||
translate([-0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hBot+2, r=rVis); | ||
translate([0.70710678118*(rVis+rExt), -0.70710678118*(rVis+rExt), -1]) | ||
cylinder(h=hBot+2, r=rVis); | ||
} | ||
*translate([0,0,2]) //bottom (variante) | ||
difference() { | ||
cylinder(h=5, r=2); | ||
translate([0,0,-1]) | ||
cylinder(h=2, r=13/8); | ||
rotate([0,90,0]) | ||
cylinder(h=3,r=3/4); | ||
translate([0,0,2]) | ||
cylinder(h=4, r=9/8); | ||
} |
Binary file added
BIN
+196 KB
docs/documents/impression3d_NIXXON/radar-antenne-mount-bottom-avectolerences.stl
Binary file not shown.
Binary file added
BIN
+215 KB
docs/documents/impression3d_NIXXON/radar-antenne-mount-centre-avectolerences.stl
Binary file not shown.
Binary file added
BIN
+206 KB
docs/documents/impression3d_NIXXON/radar-antenne-mount-top-avectolerences.stl
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="fr-CA"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title>Galerie photos du RADAR</title> | ||
<link href="../stylesheets/main.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<header> | ||
<hgroup> | ||
<img src="../logo.svg" alt="" id="radar-logo" /> | ||
<h1>RADAR</h1> | ||
<h2>Complétion de l'antenne <em>double cross</em> 2023</h2> | ||
</hgroup> | ||
</header> | ||
<a href="../galerie.html">Retour à la galerie de photos</a> | ||
<section> | ||
<p>Pour plus de détails, voir <a href="/rencontres/2023-05-15.html">le résumé des activités jusqu'au 15 mai 2023.</a>.</p> | ||
<div class="gallerie"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-01.jpg" alt="Robin nous a achter des trépieds, l'une servira à soutenir l'antenne." class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-02.jpg" alt="Le design préliminaire pour le boitier qui supportera ce que nous avons déjà construit." class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-03.png" alt="Modèle dans OpenSCAD du boitier" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-04.png" alt="Visualisation des STLs qui seront imprimés à la bibliotèque" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-05.jpg" alt="Premier morceau imprimé!" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-06.jpg" alt="Ça fit parfaitement!" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-07.jpg" alt="Fit parfait cont'd" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-08.jpg" alt="Mattéo et Léo qui mette le tout sur trépied (sans le fixer)" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-09.png" alt="Premier résultat avec l'antenne! Channel A" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-10.png" alt="Premier résultat avec l'antenne! Channel B" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-11.png" alt="Maxim à récréé les éléments de l'antenne dans blender" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-12.png" alt="Grâce à son modèle, Maxim a fait un logo pour le RADAR" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-13.jpg" alt="Le boitier est finalement complété!" class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-14.jpg" alt="L'antenne debout et fier." class="square"> | ||
<img src="/gallerie/completion-antenne/completion-antenne-15.png" alt="Le fondateur du club ne peut s'empêcher de faire une observation pendant un BBQ de l'AÉDIROUM" class="square"> | ||
</div> | ||
</section> | ||
<a href="../galerie.html">Retour à la galerie de photos</a> | ||
<footer> | ||
<ul> | ||
<li><a href="/about.html">à propos</a></li> | ||
<li><a href="https://github.com/RADAR-IRO">github</a></li> | ||
<li><a href="mailto:[email protected]">contact</a></li> | ||
</ul> | ||
</footer> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!DOCTYPE html> <html lang="fr-CA"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>Détails de rencontre du RADAR</title> <link href="../stylesheets/main.css" rel="stylesheet" /> </head> <body> <header> <hgroup> <img src="../logo.svg" alt="" id="radar-logo" /> <h1>Détails de rencontre du RADAR</h1> <h2>Résumé des activités jusqu'au 15 mai 2023 - Complétion de l'antenne</h2> </hgroup> </header> <section> <p>Depuis la dernière mise à jour sur ce site, l'antenne a beaucoup progressée. Elle peut maintenant tenir sur un trépieds grâce à un boitier qui a été conçu pour la fixer.</p> <p>Robin a pu nous fournir des trépieds pour supporter l'antenne, gracieuseté du <a href="https://diro.umontreal.ca/ressources-services/clubs-techniques-parascolaires-du-diro/">DIRO</a> (merci :)).</p> <p>Simon a mis son effort dans la conception du boitier avec un design préliminaire puis une modélisation des morceaux dans <a href="https://openscad.org/">OpenSCAD</a>. Les fichiers STLs et le fichier OpenSCAD sont disponible <a href="/documents/impression3d_NIXXON/radar-antenne-mount-bottom-avectolerences.stl">i</a><a href="/documents/impression3d_NIXXON/radar-antenne-mount-centre-avectolerences.stl">c</a><a href="/documents/impression3d_NIXXON/radar-antenne-mount-top-avectolerences.stl">i</a> et <a href="/documents/impression3d_NIXXON/mountantenne.scad">ici</a> respectivement.</p> <p>Émerick a calculé les estimés de temps que prendrait l'impression et Mattéo s'est chargé de passer à <a href="https://bib.umontreal.ca/travailler/les-bibliotheques/mathematiques-informatique">la bibliotèque de math et info</a> pour l'impression. C'est cool que la bibliotèque nous offre ce service gratuitement; shout out à Indiana!</p> <p>On a testé l'antenne et on semble capter les satellites NOAA pendant plus longtemps, ce qui nous donne une image plus grande.</p> <p>Maxim a modélisé les éléments de l'antenne dans blender et en a extrait un logo pour le club! Très joli :)</p> <p>Finalement, il y a eu le BBQ de l'asso qui a été super fun! On n'a pas pu s'empêcher d'y faire une capture du signal de NOAA :P</p> <p><a href="/gallerie/completion-antenne.html">Voici la gallerie des photos qui résument les avancées</a></p> </section> <a href="/">Retour à l'accueil</a> <footer> <ul> <li><a href="/about.html">à propos</a></li> <li><a href="https://github.com/RADAR-IRO">github</a></li> <li><a href="mailto:[email protected]">contact</a></li> </ul> </footer> </body> </html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
ALT=`cat <<EOF | ||
L'antenne tient debout et fier | ||
EOF | ||
` | ||
|
||
RESUME=`cat <<EOF | ||
<p>On a complété la monture pour notre antenne et on l'a testée. <a href="/gallerie/completion-antenne.html">Voici des photos dans la gallerie.</a></p> | ||
EOF | ||
` | ||
|
||
TITRE=`cat <<EOF | ||
Résumé des activités jusqu'au 15 mai 2023 - Complétion de l'antenne | ||
EOF | ||
` | ||
|
||
CONTENU=`cat <<EOF | ||
<p>Depuis la dernière mise à jour sur ce site, l'antenne a beaucoup progressée. Elle peut maintenant tenir sur un trépieds grâce à un boitier qui a été conçu pour la fixer.</p> | ||
<p>Robin a pu nous fournir des trépieds pour supporter l'antenne, gracieuseté du <a href="https://diro.umontreal.ca/ressources-services/clubs-techniques-parascolaires-du-diro/">DIRO</a> (merci :)).</p> | ||
<p>Simon a mis son effort dans la conception du boitier avec un design préliminaire puis une modélisation des morceaux dans <a href="https://openscad.org/">OpenSCAD</a>. Les fichiers STLs et le fichier OpenSCAD sont disponible <a href="/documents/impression3d_NIXXON/radar-antenne-mount-bottom-avectolerences.stl">i</a><a href="/documents/impression3d_NIXXON/radar-antenne-mount-centre-avectolerences.stl">c</a><a href="/documents/impression3d_NIXXON/radar-antenne-mount-top-avectolerences.stl">i</a> et <a href="/documents/impression3d_NIXXON/mountantenne.scad">ici</a> respectivement.</p> | ||
<p>Émerick a calculé les estimés de temps que prendrait l'impression et Mattéo s'est chargé de passer à <a href="https://bib.umontreal.ca/travailler/les-bibliotheques/mathematiques-informatique">la bibliotèque de math et info</a> pour l'impression. C'est cool que la bibliotèque nous offre ce service gratuitement; shout out à Indiana!</p> | ||
<p>On a testé l'antenne et on semble capter les satellites NOAA pendant plus longtemps, ce qui nous donne une image plus grande.</p> | ||
<p>Maxim a modélisé les éléments de l'antenne dans blender et en a extrait un logo pour le club! Très joli :)</p> | ||
<p>Finalement, il y a eu le BBQ de l'asso qui a été super fun! On n'a pas pu s'empêcher d'y faire une capture du signal de NOAA :P</p> | ||
<p><a href="/gallerie/completion-antenne.html">Voici la gallerie des photos qui résument les avancées</a></p> | ||
EOF | ||
` |