<?xml 
version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
>

<channel xml:lang="fr">
	<title>@YvesDelhaye.Be : &quot;Nous ne sommes pas faits pour vivre comme des imb&#233;ciles, mais pour suivre les chemins de la vertu et de la connaissance.&quot; (Dante : l'Enfer)</title>
	<link>http://www.yvesdelhaye.be/</link>
	<description>Nous ne sommes pas faits pour vivre comme des imb&#233;ciles, mais pour suivre les chemins de la vertu et de la connaissance. Dante : l'Enfer</description>
	<language>fr</language>
	<generator>SPIP - www.spip.net</generator>

	<image>
		<title>@YvesDelhaye.Be : &quot;Nous ne sommes pas faits pour vivre comme des imb&#233;ciles, mais pour suivre les chemins de la vertu et de la connaissance.&quot; (Dante : l'Enfer)</title>
		<url>http://www.yvesdelhaye.be/local/cache-vignettes/L144xH103/siteon0-7cdff.png</url>
		<link>http://www.yvesdelhaye.be/</link>
		<height>103</height>
		<width>144</width>
	</image>



<item xml:lang="fr">
		<title>Un grain de sel</title>
		<link>http://www.yvesdelhaye.be/?Un-grain-de-sel</link>
		<guid isPermaLink="true">http://www.yvesdelhaye.be/?Un-grain-de-sel</guid>
		<dc:date>2007-11-21T13:59:03Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>Yves Delhaye</dc:creator>



		<description>&lt;p&gt;Image d'un tout petit cristal de NaCl g&#233;n&#233;r&#233;e par POVRAY&lt;/p&gt;

-
&lt;a href="http://www.yvesdelhaye.be/?-Eau-" rel="directory"&gt;Eau&lt;/a&gt;


		</description>


 <content:encoded>&lt;div class='rss_chapo'&gt;&lt;p&gt;Cette image fait partie d'une s&#233;rie d'explications que je donne sur la solvatation : les m&#233;canismes de dissolution.&lt;/p&gt;&lt;/div&gt;
		&lt;div class='rss_texte'&gt;&lt;p&gt;Voici le code POVRAY et le fichier image d'un tout petit cristal de NaCl.
Pas de pr&#233;tention &#224; l'exactitude scientifique mais une belle illustration pour le cours de chimie.&lt;/p&gt; &lt;dl class='spip_document_236 spip_documents spip_documents_left' style='float:left;width:150px;'&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.yvesdelhaye.be/IMG/png/NaCl.0.5.2.png&quot; title='PNG - 88.8 ko' type=&quot;image/png&quot;&gt;&lt;img src='http://www.yvesdelhaye.be/local/cache-vignettes/L150xH113/NaCl.0.5.2-4cf40-f0109.png' width='150' height='113' alt='PNG - 88.8 ko' style='height:113px;width:150px;' /&gt;&lt;/a&gt;&lt;/dt&gt;
&lt;/dl&gt;
&lt;dl class='spip_document_238 spip_documents rigth'&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.yvesdelhaye.be/IMG/png/NaCl.0.5.3.png&quot; title='PNG - 99.2 ko' type=&quot;image/png&quot;&gt;&lt;img src='http://www.yvesdelhaye.be/local/cache-vignettes/L150xH113/NaCl.0.5.3-459b3-791a8.png' width='150' height='113' alt='PNG - 99.2 ko' style='height:113px;width:150px;' /&gt;&lt;/a&gt;&lt;/dt&gt;
&lt;/dl&gt;
&lt;div style='text-align: left;' class='spip_code' dir='ltr'&gt;&lt;code&gt;// Persistence Of Vision raytracer version 3.6&lt;br /&gt; // File by Yves Delhaye (Yves AT YvesDelhaye.be)&lt;br /&gt; // Cristal of NaCl&lt;br /&gt; //&lt;br /&gt; // -w320 -h240&lt;br /&gt; // best seen with&lt;br /&gt; // -w800 -h600 +a0.3&lt;br /&gt; &lt;br /&gt; global_settings { assumed_gamma 2.2 }&lt;br /&gt; #declare Num_cell=8;&lt;br /&gt; #declare Lg_arete=1;&lt;br /&gt; &lt;br /&gt; camera {&lt;br /&gt; location &lt;0, 15*Num_cell, -15*Num_cell&gt;&lt;br /&gt; look_at &lt;0, 0, 0&gt;&lt;br /&gt; angle 58&lt;br /&gt; }&lt;br /&gt; &lt;br /&gt; light_source { &lt;-20, 30, -25&gt; color red 0.6 green 0.6 blue 0.6 }&lt;br /&gt; light_source { &lt; 20, 30, -25&gt; color red 0.6 green 0.6 blue 0.6 }&lt;br /&gt; &lt;br /&gt; #macro Na_ion (Na_X, Na_Y, Na_Z)&lt;br /&gt; union{&lt;br /&gt; sphere { &lt;Na_X, Na_Y, Na_Z&gt;, 1}&lt;br /&gt; pigment { color red 1 green 0 blue 0 }&lt;br /&gt; finish { ambient 0.2 diffuse 0.8 phong 1 }&lt;br /&gt; }&lt;br /&gt; #end&lt;br /&gt; &lt;br /&gt; #macro Cl_ion (Na_X, Na_Y, Na_Z)&lt;br /&gt; union{&lt;br /&gt; sphere { &lt;Na_X, Na_Y, Na_Z&gt;, 2}&lt;br /&gt; pigment { color red 0 green 1 blue 0 }&lt;br /&gt; finish { ambient 0.2 diffuse 0.8 phong 1 }&lt;br /&gt; }&lt;br /&gt; #end&lt;br /&gt; &lt;br /&gt; #macro NaCl_ElemCell (lg_arete, X_ElemCell, Y_ElemCell, Z_ElemCell)&lt;br /&gt; &lt;br /&gt; union{&lt;br /&gt; //Na&lt;br /&gt; Na_ion (2*lg_arete, 2*lg_arete, 2*lg_arete)&lt;br /&gt; Na_ion (-2*lg_arete, -2*lg_arete, 2*lg_arete)&lt;br /&gt; Na_ion (2*lg_arete, -2*lg_arete, -2*lg_arete)&lt;br /&gt; Na_ion (-2*lg_arete, 2*lg_arete, -2*lg_arete)&lt;br /&gt; //Cl&lt;br /&gt; Cl_ion (2*lg_arete, -2*lg_arete, 2*lg_arete)&lt;br /&gt; Cl_ion (-2*lg_arete, 2*lg_arete, 2*lg_arete)&lt;br /&gt; Cl_ion (2*lg_arete, 2*lg_arete, -2*lg_arete)&lt;br /&gt; Cl_ion (-2*lg_arete, -2*lg_arete, -2*lg_arete)&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; translate &lt;X_ElemCell*8*lg_arete, Y_ElemCell*8*lg_arete, Z_ElemCell*8*lg_arete &gt;&lt;br /&gt; }&lt;br /&gt; &lt;br /&gt; #end&lt;br /&gt; &lt;br /&gt; //NaCl_ElemCell(1,0,0,0)&lt;br /&gt; &lt;br /&gt; //&lt;br /&gt; union{&lt;br /&gt; #declare Cell_Step=Num_cell/2;&lt;br /&gt; &lt;br /&gt; #declare I=-Cell_Step;&lt;br /&gt; #while (I &lt; Cell_Step) &lt;br /&gt; #declare J=-Cell_Step;&lt;br /&gt; #while (J &lt; Cell_Step) &lt;br /&gt; #declare K=-Cell_Step;&lt;br /&gt; #while (K &lt; Cell_Step ) &lt;br /&gt; NaCl_ElemCell(Lg_arete,I,J,K)&lt;br /&gt; #declare K=K+1; &lt;br /&gt; #end&lt;br /&gt; #declare J=J+1; &lt;br /&gt; #end&lt;br /&gt; #declare I=I+1; &lt;br /&gt; #end&lt;br /&gt; &lt;br /&gt; rotate &lt;0, 30, 5&gt;&lt;br /&gt; }&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		
		<enclosure url="http://www.yvesdelhaye.be/IMG/zip/NaCl.0.5.2.pov.zip" length="749" type="application/zip" />
		
		<enclosure url="http://www.yvesdelhaye.be/IMG/zip/NaCl.0.5.3.pov.zip" length="763" type="application/zip" />
		

	</item>
<item xml:lang="fr">
		<title>Etats de l'eau</title>
		<link>http://www.yvesdelhaye.be/?Etats-de-l-eau</link>
		<guid isPermaLink="true">http://www.yvesdelhaye.be/?Etats-de-l-eau</guid>
		<dc:date>2006-11-11T17:46:16Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		



		<description>Pourquoi la glace flotte... Une tr&#232;s belle illustration en FLASH.

-
&lt;a href="http://www.yvesdelhaye.be/?-Eau-" rel="directory"&gt;Eau&lt;/a&gt;


		</description>


 <content:encoded>&lt;div class='rss_texte'&gt;&lt;p&gt;Pourquoi la glace flotte...
Une tr&#232;s belle &lt;a href=&quot;http://www.johnkyrk.com/H2O.html&quot; class=&quot;spip_out&quot;&gt;illustration&lt;/a&gt; en FLASH.&lt;/p&gt;&lt;/div&gt;
		&lt;div class="hyperlien"&gt;Voir en ligne : : &lt;a href="http://www.johnkyrk.com/H2O.html" class="spip_out"&gt;http://www.johnkyrk.com/H2O.html&lt;/a&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>



</channel>

</rss>
