Skip to content

Commit

Permalink
Ajoute mises à jour jusqu'au 15 mai 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
simon committed Jan 23, 2024
1 parent f739b49 commit d8b75cc
Show file tree
Hide file tree
Showing 23 changed files with 193 additions and 0 deletions.
118 changes: 118 additions & 0 deletions docs/documents/impression3d_NIXXON/mountantenne.scad
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 not shown.
Binary file not shown.
Binary file not shown.
47 changes: 47 additions & 0 deletions docs/gallerie/completion-antenne.html
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.
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!DOCTYPE html> <html lang="fr-CA"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>Club RADAR</title> <link href="./stylesheets/main.css" rel="stylesheet" /> </head> <body> <header> <hgroup> <img src="logo.svg" alt="" id="radar-logo" /> <h1>RADAR</h1> </hgroup> </header> <nav> <a href="./index.html">Accueil</a> <a href="./activites.html">Activités</a> <a href="./membres.html">Membres</a> <a href="./galerie.html">Galerie</a> <a href="./about.html">À propos du club</a> </nav> <section>
<article> <header> <a href="./rencontres/2023-05-15.html"><h1>L'antenne tient debout et fier</h1></a> </header> <section> <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> </section> </article>
<article> <header> <a href="./rencontres/2023-04-26.html"><h1><em>It's alive!</em></h1></a> </header> <section> <p>On a commencé et terminé la construction d'une <a href="https://www.qsl.net/py4zbz/DCA.pdf">antenne double cross</a> optimisée pour 137MHz! <a href="/gallerie/construction-antenne.html">Voici des photos de la construction.</a></p> </section> </article>
<article> <header> <a href="./rencontres/2023-04-19.html"><h1>On aime Jodie Foster et elle aime son père</h1></a> </header> <section> <p>Lors de cette rencontre on a simplement écouté le film <a href="https://www.imdb.com/title/tt0118884/">Contact de 1997</a> pour alléger la charge mentale des membres du club pendant la fin de session.</p> </section> </article>
<article> <header> <a href="./rencontres/2023-04-12.html"><h1>Du progrès ce n'est pas toujours du progrès, mais parfois ce l'est</h1></a> </header> <section> <p>Pendant la rencontre on a développer le code de l'intrégrateur numérique, nous donnant un <a href="/documents/anim_60fps_Terre_Lune_avec_correcteur.gif">résultat innatendu</a>. En soirée, par contre, on a pu produire les <a href="/gallerie/sortie12avril.html">nos meilleures images</a> tirées des satellites NOAA 15, NOAA18 et NOAA 19.</p> </section> </article>
Expand Down
1 change: 1 addition & 0 deletions docs/rencontres/2023-05-15.html
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>
26 changes: 26 additions & 0 deletions rencontres/2023-05-15
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
`

0 comments on commit d8b75cc

Please sign in to comment.