From: oiffrig <Ba...@us...> - 2011-03-05 17:43:29
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "krobot". The branch, master has been updated via 72bc2f1699346f9193c09a74bd228ef8d28850fe (commit) from dd21babca22492889b731522b877432aa06b121e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 72bc2f1699346f9193c09a74bd228ef8d28850fe Author: Olivier Iffrig <if...@cr...> Date: Sat Mar 5 18:42:20 2011 +0100 Support de miroir (fichier openscad, seulement les calculs pour le moment) ----------------------------------------------------------------------- Changes: diff --git a/meca/2011_Senior/Balises/support_miroir.scad b/meca/2011_Senior/Balises/support_miroir.scad new file mode 100644 index 0000000..750fd4c --- /dev/null +++ b/meca/2011_Senior/Balises/support_miroir.scad @@ -0,0 +1,27 @@ + +dim_base = 30.; // Taille de la base +dim_miroir = 25.; // Taille du miroir + +D_min = 150.; // Distance minimale d'approche +D_max = 4000.; // Distance maximale + +d_balise = 100.; // Décalage du bas de la balise par rapport au miroir +h_balise = 80.; // Hauteur de la balise + +// Calculs +h_min = d_balise; +h_max = d_balise + h_balise; +theta_min = atan(h_min / D_max); +theta_max = atan(h_max / D_min); +theta = (theta_min + theta_max)/2.; + +echo("Angle minimal du faisceau sortant"); +echo(theta_min); +echo("Angle maximal du faisceau sortant"); +echo(theta_max); + +phi = 45. + theta / 2.; +echo("Angle du miroir par rapport à l'horizontale"); +echo(phi); + + hooks/post-receive -- krobot |