<?xml version="1.0" encoding="utf-8"?>

<feed xmlns="http://www.w3.org/2005/Atom" >
  <link href="https://physica.dev/feed.xml" rel="self" type="application/atom+xml" />
  <link href="https://physica.dev/" rel="alternate" type="text/html" />
  <updated>2025-06-19T19:10:17+03:00</updated>
  <id>https://physica.dev/feed.xml</id>

  

  
    <title type="html">Physica.dev</title>
  

  
    <subtitle>Chavdar Dutsov's personal website</subtitle>
  

  
    <author>
        <name>Chavdar Dutsov</name>
      
        <email>chavdar.dutsov@cern.ch</email>
      
      
    </author>
  

  
  
  
  
  
  
    <entry>
      

      <title type="html">Anomalous spin precession systematic effects in the search for a muon EDM using the frozen-spin technique</title>
      <link href="https://physica.dev/publications/2024-03-12-Anomalous-spin-precession/" rel="alternate" type="text/html" title="Anomalous spin precession systematic effects in the search for a muon EDM using the frozen-spin technique" />
      <published>2024-03-12T00:00:00+02:00</published>
      <updated>2024-03-12T00:00:00+02:00</updated>
      <id>https://physica.dev/publications/Anomalous-spin-precession</id>
      
      
        <content type="html" xml:base="https://physica.dev/publications/2024-03-12-Anomalous-spin-precession/">&lt;p&gt;At the Paul Scherrer Institut (PSI), we are developing a high-precision
apparatus with the aim of searching for the muon electric dipole moment (EDM)
with unprecedented sensitivity. The underpinning principle of this experiment is
the frozen-spin technique, a method that suppresses the spin precession due to
the anomalous magnetic moment, thereby enhancing the signal-to-noise ratio for
EDM signals.&lt;/p&gt;

&lt;p&gt;This increased sensitivity enables measurements that would be
difficult to achieve with conventional $g-2$ muon storage rings. Given the
availability of the 125 MeV/$c$ muon beam at PSI, the anticipated statistical sensitivity
for the EDM after a year of data collection is $6\times 10^{-23} e\cdot$cm. To achieve this goal, it is
imperative to do a detailed analysis of any potential spurious effects that
could mimic EDM signals. In this study, we present a quantitative
methodology to evaluate the systematic effects that might arise in the
context of the frozen-spin technique utilised within a compact storage ring.
Our approach involves the analytical derivation of equations governing the
motion of the muon spin in the electromagnetic (EM) fields intrinsic to the
experimental setup, validated through numerical simulations. We also
illustrate a method to calculate the cumulative geometric (Berry’s) phase.
This work complements ongoing experimental efforts to detect a muon EDM at
PSI and contributes to a broader understanding of spin-precession systematic
effects.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://link.springer.com/article/10.1140/epjc/s10052-024-12604-0&quot;&gt;Link to paper&lt;/a&gt;&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
      

      

      
        <summary type="html">At the Paul Scherrer Institut (PSI), we are developing a high-precision apparatus with the aim of searching for the muon electric dipole moment (EDM) with unprecedented sensitivity. The underpinning principle of this experiment is the frozen-spin technique, a method that suppresses the spin precession due to the anomalous magnetic moment, thereby enhancing the signal-to-noise ratio for EDM signals.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Animated 3D plot in spherical coordinates with gnuplot</title>
      <link href="https://physica.dev/posts/2022/05/animated-3d-plot-spherical-coordinates-gnuplot.html" rel="alternate" type="text/html" title="Animated 3D plot in spherical coordinates with gnuplot" />
      <published>2022-05-21T00:00:00+03:00</published>
      <updated>2022-05-21T00:00:00+03:00</updated>
      <id>https://physica.dev/posts/2022/05/Gnuplot-3D-plot-spherical-coordinates</id>
      
      
        <content type="html" xml:base="https://physica.dev/posts/2022/05/animated-3d-plot-spherical-coordinates-gnuplot.html">&lt;p&gt;I am working on a physics experiment that involves muons that are stored in a
magnetic field and are traveling along circular orbits. Their motion inside the
magnetic field is quite complex and involves oscillations with different
periods – essentially they are like a spinning top, but instead of precessing
around only one axis, they can precess around three.&lt;/p&gt;

&lt;p&gt;What I am interested in is to track the spin of the muons through time and in
order to visualize things better I wanted to have an animated 3D plot of the
vector of the spin as the muons experience the changing magnetic field. My
favorite plotting tool for 3D graphs is &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;gnuplot&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/posts/gnuplot-3d-animation/gnuplot_spin_animation.webp&quot; alt=&quot;Final figure&quot; width=&quot;75%&quot; class=&quot;center-image&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The code to generate this plot is a bit large and messy, but it may be useful to
someone so I’m posting it here:&lt;/p&gt;

&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c&quot;&gt;# Initial spin vector&lt;/span&gt;
Sx &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-0&lt;/span&gt;.0
Sy &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-1&lt;/span&gt;.0
Sz &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-0&lt;/span&gt;.0

&lt;span class=&quot;c&quot;&gt;# Transform to spherical coordinates&lt;/span&gt;
phi_0 &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; atan2&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;Sx, Sy&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;c&quot;&gt;# rad&lt;/span&gt;
theta_0 &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; atan2&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;sqrt&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;Sx&lt;span class=&quot;k&quot;&gt;**&lt;/span&gt;2+Sy&lt;span class=&quot;k&quot;&gt;**&lt;/span&gt;2&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, Sz&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;-pi&lt;/span&gt;/2 &lt;span class=&quot;c&quot;&gt;# rad&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# Spin motion equations&lt;/span&gt;
Eex &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 0.05
e_z &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 2.956e-3&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;1.0+Eex&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;c&quot;&gt;# rad/ns&lt;/span&gt;
om_z &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 2&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;pi/42000&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;Eex/0.05  &lt;span class=&quot;c&quot;&gt;# rad/ns&lt;/span&gt;
omega &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 0.03264 &lt;span class=&quot;c&quot;&gt;# rad/ns&lt;/span&gt;

f&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;191.49&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;Eex&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; + 178.05&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;0.06/27.94/omega&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;omega&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;
l&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; -&lt;span class=&quot;o&quot;&gt;(((&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;omega&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;x+phi_0&lt;span class=&quot;o&quot;&gt;)))&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;81.75e-3/omega&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;  phi_0 &lt;span class=&quot;nt&quot;&gt;-om_z&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;x
&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;om_z &lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt; 0&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;{&lt;/span&gt;
    e&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-e_z&lt;/span&gt;/om_z&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;o&quot;&gt;}&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;{&lt;/span&gt;
    e&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; e_z&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;x&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;phi_0&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;o&quot;&gt;}&lt;/span&gt;
c &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;    &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;f&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt; + l&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt; + e&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
g&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;f&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt; + l&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt; + e&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; + theta_0 &lt;span class=&quot;k&quot;&gt;*&lt;/span&gt; 1e6 - c
&lt;span class=&quot;c&quot;&gt;# End of spin motion equations&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# Plotting&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;key samplen 1 height 5 bottom
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;view 70, 340, 1.6, 1.6
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;view equal xyz
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;parametric
&lt;span class=&quot;nb&quot;&gt;unset &lt;/span&gt;xtics
&lt;span class=&quot;nb&quot;&gt;unset &lt;/span&gt;ytics
&lt;span class=&quot;nb&quot;&gt;unset &lt;/span&gt;ztics
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;border 0
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;xlabel &lt;span class=&quot;s1&quot;&gt;'p'&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;ylabel &lt;span class=&quot;s1&quot;&gt;'z'&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;isosamples 12
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;xyplane &lt;span class=&quot;nt&quot;&gt;-0&lt;/span&gt;.5
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;grid x y
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;xrange &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;-1&lt;/span&gt;:1]
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;yrange &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;-1&lt;/span&gt;:1]
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;zrange &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;-1&lt;/span&gt;:1]
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;urange &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;0:2&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;pi]
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;vrange &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;-pi&lt;/span&gt;:pi]


phi&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;g&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; - theta_0&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;1e6 + c&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; / 20 + theta_0 - c / 1e6
the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; + f&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;*&lt;/span&gt; sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;phi&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt; / 20
av_the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; p&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
av_phi&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; e&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;x&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; / 20

av_x&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; v&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;av_the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;av_phi&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;
av_y&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; v&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;av_the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;av_phi&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;
av_z&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; v&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;av_the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;

fx&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; v&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;phi&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;
fy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; v&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;phi&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;
fz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; v&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;the&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;))&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# Parametric functions for the sphere&lt;/span&gt;
r &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 1.0
sx&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; r&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
sy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; r&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;cos&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
sz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; r&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# Plot axis vectors&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 2 from 0,0,0 to 0,-1.2,0 lc rgb &lt;span class=&quot;s1&quot;&gt;'gray40'&lt;/span&gt; lw 2 back
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 5 from 0,0,0 to &lt;span class=&quot;nt&quot;&gt;-1&lt;/span&gt;.2,0,0 lc rgb &lt;span class=&quot;s1&quot;&gt;'gray40'&lt;/span&gt; lw 2 back
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 6 from 0,0,0 to 0,0,-1.2 lc rgb &lt;span class=&quot;s1&quot;&gt;'gray40'&lt;/span&gt; lw 2 back

&lt;span class=&quot;c&quot;&gt;# Plot magnetic fields in the top right corner&lt;/span&gt;
o &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 0.3
o0 &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 1.5
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 7 from o0,o0,o to o0,o0,&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;o+sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;omega&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;t&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;/10&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 8 from o0,o0,o to 1.2,o0,o
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 9 from o0,o0,o to o0,&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;o0+sin&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;omega&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;t&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;/8&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;,o
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;label 1 &lt;span class=&quot;s1&quot;&gt;'B_r'&lt;/span&gt; at o0+0.05, o0+0.08, o+0.05
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;label 2 &lt;span class=&quot;s1&quot;&gt;'B_z'&lt;/span&gt; at 1.2,o0,o-0.05
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;label 3 &lt;span class=&quot;s1&quot;&gt;'B_p'&lt;/span&gt; at 1.6, 1.6, o-0.15

&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;term pngcairo size 800,800 enhanced
outfile &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; sprintf&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'animation/3d_vector_plot%05.0f.png'&lt;/span&gt;, t&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
newtitle &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; sprintf&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'t = %i ns'&lt;/span&gt;, t&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;title newtitle
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;output outfile

&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;object 99 circle at 0,0,0 radius 0.025 front &lt;span class=&quot;nb&quot;&gt;fc &lt;/span&gt;rgb &lt;span class=&quot;s2&quot;&gt;&quot;red&quot;&lt;/span&gt; fs solid
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 1 from fx&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t,-1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;,fy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t,-1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;,fz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t,-1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; to fx&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t, 1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, fy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t, 1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, fz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t, 1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; back lc rgb &lt;span class=&quot;s1&quot;&gt;'black'&lt;/span&gt; lw 2

&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;multiplot
&lt;span class=&quot;c&quot;&gt;# Plot the sphere, the equator and zero meridian&lt;/span&gt;
splot sx&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;,sy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;,sz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,0&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; lc &lt;span class=&quot;s1&quot;&gt;'black'&lt;/span&gt; dt 3 notitle,&lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
    sx&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0, v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, sy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0,v&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, sz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0, 0&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; lc rgb &lt;span class=&quot;s1&quot;&gt;'#8888dd'&lt;/span&gt; notitle,&lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
    0, sy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;pi,u&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, sz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,0&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; lc rgb &lt;span class=&quot;s1&quot;&gt;'#dd8888'&lt;/span&gt; notitle

&lt;span class=&quot;c&quot;&gt;# Plot an arrow pointing to the average movement&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;arrow 3 from 0,0,0 to av_x&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t, 0.5&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, av_y&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t, 0.5&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, 0 lc rgb &lt;span class=&quot;s1&quot;&gt;'red'&lt;/span&gt; back

&lt;span class=&quot;c&quot;&gt;# Change the range&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;urange &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;0:t]
splot av_x&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, 0.46&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, av_y&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, 0.46&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;,av_z&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;0, 0.46&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;  lw 2 lc rgb &lt;span class=&quot;s1&quot;&gt;'red'&lt;/span&gt; notitle,&lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
      av_x&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, 1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, av_y&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, av_z&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u,1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; lw 2 lc rgb &lt;span class=&quot;s1&quot;&gt;'red'&lt;/span&gt; t &lt;span class=&quot;s1&quot;&gt;'Average value'&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# Plot the spin trajectory, but only a part of it&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;key height 10 bottom
start &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; t - 400 &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; 0 ? t - 400 : 0
&lt;span class=&quot;nb&quot;&gt;set &lt;/span&gt;urange &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;start:t]
splot fx&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, 1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, fy&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, 1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;, fz&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;u, 1&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; t &lt;span class=&quot;s1&quot;&gt;'Spin position'&lt;/span&gt; lc rgb &lt;span class=&quot;s1&quot;&gt;'#57a757'&lt;/span&gt;

&lt;span class=&quot;nb&quot;&gt;unset &lt;/span&gt;multiplot

print &lt;span class=&quot;s1&quot;&gt;'Time step: '&lt;/span&gt;, t, &lt;span class=&quot;s1&quot;&gt;' ns'&lt;/span&gt;

t &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; t + step
&lt;span class=&quot;nb&quot;&gt;unset &lt;/span&gt;arrow 1
&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;t &amp;lt; t_end&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; reread&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;To control the start time, step and end time set theese:&lt;/p&gt;

&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;gnuplot
    &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; t &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 0
    &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; t_end &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 4000
    &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; step &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; 20
    &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt;
    &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; load &lt;span class=&quot;s1&quot;&gt;'plot_3d_sphere.gp'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Note: be sure that you have a folder like &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;animation/&lt;/code&gt; to store all the files!&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="plots" />
        
      

      
        <category term="plots" />
      
        <category term="gnuplot" />
      

      
        <summary type="html">I am working on a physics experiment that involves muons that are stored in a magnetic field and are traveling along circular orbits. Their motion inside the magnetic field is quite complex and involves oscillations with different periods – essentially they are like a spinning top, but instead of precessing around only one axis, they can precess around three.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">The Prophecy</title>
      <link href="https://physica.dev/art/2021-11-30_Prophecy/" rel="alternate" type="text/html" title="The Prophecy" />
      <published>2021-11-30T00:00:00+02:00</published>
      <updated>2021-11-30T00:00:00+02:00</updated>
      <id>https://physica.dev/art/2021-11-30_Prophecy</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-11-30_Prophecy/">&lt;p&gt;Here I wanted to experiment with something different. I drew a ‘normal’ picture
using the Sketchbook app. Then I used GIMP to add a different character to it.
First I used the ‘Sobel’ edge detection algorithm and then I applied some method
that clusters the colors in the image. You can see below the end result and
after that the original image.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/prophecy.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/prophecy_teaser.webp&quot; alt=&quot;A comet during a solar eclipse, digital drawing&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/prophecy_variant.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/prophecy_variant_teaser.webp&quot; alt=&quot;A comet in the night sky, digital drawing&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on the images to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">Here I wanted to experiment with something different. I drew a ‘normal’ picture using the Sketchbook app. Then I used GIMP to add a different character to it. First I used the ‘Sobel’ edge detection algorithm and then I applied some method that clusters the colors in the image. You can see below the end result and after that the original image.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">The Elders</title>
      <link href="https://physica.dev/art/2021-11-08-Orion/" rel="alternate" type="text/html" title="The Elders" />
      <published>2021-11-08T00:00:00+02:00</published>
      <updated>2021-11-08T00:00:00+02:00</updated>
      <id>https://physica.dev/art/Orion</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-11-08-Orion/">&lt;p&gt;Orion the hunter rising over the Great Pyramides.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/orion_pyramides.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/orion_pyramides_teaser.webp&quot; alt=&quot;Orion the hunter rising over the Great Pyramides&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">Orion the hunter rising over the Great Pyramides.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">The big mantle of the white dwarf</title>
      <link href="https://physica.dev/art/2021-11-05-Ring-nebula/" rel="alternate" type="text/html" title="The big mantle of the white dwarf" />
      <published>2021-11-05T00:00:00+02:00</published>
      <updated>2021-11-05T00:00:00+02:00</updated>
      <id>https://physica.dev/art/Ring-nebula</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-11-05-Ring-nebula/">&lt;p&gt;Drawing of the planetary nebula Messier 57 (Ring Nebula).&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/ring_nebula.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/ring_nebula_teaser.webp&quot; alt=&quot;Drawing of M57 The ring nebula&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">Drawing of the planetary nebula Messier 57 (Ring Nebula).</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Conquest of Paradise</title>
      <link href="https://physica.dev/art/2021-10-17-Conquest-of-paradise/" rel="alternate" type="text/html" title="Conquest of Paradise" />
      <published>2021-10-17T00:00:00+03:00</published>
      <updated>2021-10-17T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Conquest-of-paradise</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-10-17-Conquest-of-paradise/">&lt;p&gt;A ship sailing towards an unknown land - his path illuminated by a distant galaxy.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/conquest_of_paradise.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/conquest_of_paradise_teaser.webp&quot; alt=&quot;A ship sailing towards an unknown land&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A ship sailing towards an unknown land - his path illuminated by a distant galaxy.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Messier Thirty-One</title>
      <link href="https://physica.dev/art/2021-10-13-M31/" rel="alternate" type="text/html" title="Messier Thirty-One" />
      <published>2021-10-13T00:00:00+03:00</published>
      <updated>2021-10-13T00:00:00+03:00</updated>
      <id>https://physica.dev/art/M31</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-10-13-M31/">&lt;p&gt;Drawing of the Andromeda galaxy. It was supposed to be part of a more complex
picture, but I liked it the way it is.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/m31.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/m31_teaser.webp&quot; alt=&quot;Drawing of M31 - Andromeda Galaxy&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">Drawing of the Andromeda galaxy. It was supposed to be part of a more complex picture, but I liked it the way it is.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">The Pleiades</title>
      <link href="https://physica.dev/art/2021-10-11-Pleiades-orb/" rel="alternate" type="text/html" title="The Pleiades" />
      <published>2021-10-11T00:00:00+03:00</published>
      <updated>2021-10-11T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Pleiades-orb</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-10-11-Pleiades-orb/">&lt;p&gt;Drawing of the Pleiades visible in a drop of water fallen on a leaf.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/pleiades_orb.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/pleiades_orb_teaser.webp&quot; alt=&quot;Drawing of the Pleiades visible in a drop of water fallen on a leaf&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">Drawing of the Pleiades visible in a drop of water fallen on a leaf.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Red moon rising</title>
      <link href="https://physica.dev/art/2021-10-07-Red-moon/" rel="alternate" type="text/html" title="Red moon rising" />
      <published>2021-10-07T00:00:00+03:00</published>
      <updated>2021-10-07T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Red-moon</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-10-07-Red-moon/">&lt;p&gt;A drawing of a blood red moon over a sand dune. I drew it in anticpation of the new Dune movie.
Inspired by the style of &lt;a href=&quot;https://www.deviantart.com/shootingstarlogbook/gallery/all&quot;&gt;this&lt;/a&gt; artist.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/red_moon.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/red_moon_teaser.webp&quot; alt=&quot;Digital drawing of a red moon over a dune&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of a blood red moon over a sand dune. I drew it in anticpation of the new Dune movie. Inspired by the style of this artist.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Mariner 10 passing near Venus</title>
      <link href="https://physica.dev/art/2021-10-05-Drawing-venus/" rel="alternate" type="text/html" title="Mariner 10 passing near Venus" />
      <published>2021-10-05T00:00:00+03:00</published>
      <updated>2021-10-05T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Drawing-venus</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-10-05-Drawing-venus/">&lt;p&gt;A drawing of the Mariner 10 spacecraft passing near Venus on its long journey to Mercury.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/venus_mariner.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/venus_mariner_teaser.webp&quot; alt=&quot;Drawing of the Mariner 10 spacecraft passing near Venus&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of the Mariner 10 spacecraft passing near Venus on its long journey to Mercury.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">A spotted sun rising behind the hills</title>
      <link href="https://physica.dev/art/2021-10-02-Drawing-sunrise-trees/" rel="alternate" type="text/html" title="A spotted sun rising behind the hills" />
      <published>2021-10-02T00:00:00+03:00</published>
      <updated>2021-10-02T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Drawing-sunrise-trees</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-10-02-Drawing-sunrise-trees/">&lt;p&gt;Digital drawing of the Sun rising behind a hill.&lt;/p&gt;

&lt;p&gt;This is a reimagined&lt;sup id=&quot;fnref:1&quot; role=&quot;doc-noteref&quot;&gt;&lt;a href=&quot;#fn:1&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; version of an “Astronomy Picture of the Day” (APOD) &lt;a href=&quot;https://apod.nasa.gov/apod/ap210921.html&quot;&gt;photograph&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/sunrise_trees.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/sunrise_trees_teaser.webp&quot; alt=&quot;Drawing of the Northern Lights in Bob Ross style&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;

&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:1&quot; role=&quot;doc-endnote&quot;&gt;
      &lt;p&gt;Reimagined as in how Holywood “reimagines” the same movies every 10 years. Credit to &lt;a href=&quot;https://theorycorner.com/&quot;&gt;Dr. Ivo Iliev&lt;/a&gt; for the term. &lt;a href=&quot;#fnref:1&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">Digital drawing of the Sun rising behind a hill.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Drawing of a sunny beach</title>
      <link href="https://physica.dev/art/2021-09-19-Sunny-beach/" rel="alternate" type="text/html" title="Drawing of a sunny beach" />
      <published>2021-09-19T00:00:00+03:00</published>
      <updated>2021-09-19T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Sunny-beach</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-09-19-Sunny-beach/">&lt;p&gt;Drawing of palms on the beach during sunrise. 
It was heavily inspired by a drawing I saw on the PenUp app by &lt;a href=&quot;https://anastelfy.gumroad.com/?sort=page_layout&quot;&gt;this author&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/palms.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/palms_teaser.webp&quot; alt=&quot;Drawing of palms on the beach during sunrise&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">Drawing of palms on the beach during sunrise. It was heavily inspired by a drawing I saw on the PenUp app by this author.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">The Red Giant</title>
      <link href="https://physica.dev/art/2021-09-13-The-Red-Giant/" rel="alternate" type="text/html" title="The Red Giant" />
      <published>2021-09-13T00:00:00+03:00</published>
      <updated>2021-09-13T00:00:00+03:00</updated>
      <id>https://physica.dev/art/The-Red-Giant</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-09-13-The-Red-Giant/">&lt;p&gt;A view of a red gas giant planet near its ring.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/red_giant_flare_sb.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/red_giant_flare_sb_teaser.webp&quot; alt=&quot;Drawing of a red gas giant planet&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I made also a variant without the lens flare.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/red_giant.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/red_giant_teaser.webp&quot; alt=&quot;Drawing of a red gas giant planet&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A view of a red gas giant planet near its ring.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Drawing of Neptune seen from Triton</title>
      <link href="https://physica.dev/art/2021-09-09-Drawing-of-Neptune/" rel="alternate" type="text/html" title="Drawing of Neptune seen from Triton" />
      <published>2021-09-09T00:00:00+03:00</published>
      <updated>2021-09-09T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Drawing-of-Neptune</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-09-09-Drawing-of-Neptune/">&lt;p&gt;A drawing of Neptune as seen from its moon Triton. Some natural phenomena specific to Triton are visible - liquid nitrogen geysers and lakes. Triton has a very thin atmosphere, but it should form nitrogen mist near the surface. Triton’s surface is new as it has tectonic activity, but there might be a few craters here and there, as the one seen on the drawing.&lt;/p&gt;

&lt;p&gt;The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/neptune.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/neptune_teaser.webp&quot; alt=&quot;Drawing of Neptune as seen from Triton&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PS: After discussing with a friend, it seems that the atmosphere of Triton could be such that it gives orange tint to sunlight, especially at sunrise or sunset. So I decided to make another variant of the drawing with more orange colors. I think I like it more that way.&lt;/p&gt;

&lt;p&gt;What can also be seen on the picture are Uranus, Saturn and Jupiter, shining near the sun.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/neptune_variant.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/neptune_variant_teaser.webp&quot; alt=&quot;Drawing of Neptune as seen from Triton (orange version)&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of Neptune as seen from its moon Triton. Some natural phenomena specific to Triton are visible - liquid nitrogen geysers and lakes. Triton has a very thin atmosphere, but it should form nitrogen mist near the surface. Triton’s surface is new as it has tectonic activity, but there might be a few craters here and there, as the one seen on the drawing.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">The Buzludzha monument flying away</title>
      <link href="https://physica.dev/art/2021-09-09-Buzludzha-monument/" rel="alternate" type="text/html" title="The Buzludzha monument flying away" />
      <published>2021-09-09T00:00:00+03:00</published>
      <updated>2021-09-09T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Buzludzha-monument</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-09-09-Buzludzha-monument/">&lt;p&gt;A drawing of the &lt;a href=&quot;https://en.wikipedia.org/wiki/Buzludzha_monument&quot;&gt;Buzludzha monument&lt;/a&gt; flying away into space. The monument always reminded me of a sci-fi spaceship so I decided to draw it that way.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/buzludzha.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/buzludzha_teaser.webp&quot; alt=&quot;Drawing of the Buzludzha monument flying away&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of the Buzludzha monument flying away into space. The monument always reminded me of a sci-fi spaceship so I decided to draw it that way.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Drawing of Jupiter and Io</title>
      <link href="https://physica.dev/art/2021-09-07-Drawing-of-Jupiter/" rel="alternate" type="text/html" title="Drawing of Jupiter and Io" />
      <published>2021-09-07T00:00:00+03:00</published>
      <updated>2021-09-07T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Drawing-of-Jupiter</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-09-07-Drawing-of-Jupiter/">&lt;p&gt;A drawing of Jupiter and its moon Io seen when the Juno spacecraft approaches them. Europa can be seen in the distance, casting its shadow over the gas giant.
The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/jupiter.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/jupiter_teaser.webp&quot; alt=&quot;Drawing of Jupiter and Io&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of Jupiter and its moon Io seen when the Juno spacecraft approaches them. Europa can be seen in the distance, casting its shadow over the gas giant. The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Fishing on the lake</title>
      <link href="https://physica.dev/art/2021-09-01-Drawing-fishing-lake/" rel="alternate" type="text/html" title="Fishing on the lake" />
      <published>2021-09-01T00:00:00+03:00</published>
      <updated>2021-09-01T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Drawing-fishing-lake</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-09-01-Drawing-fishing-lake/">&lt;p&gt;The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/fishing_on_the_lake.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/fishing_on_the_lake_teaser.webp&quot; alt=&quot;Fishing on the lake&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">July Morning</title>
      <link href="https://physica.dev/art/2021-08-23-July-morning/" rel="alternate" type="text/html" title="July Morning" />
      <published>2021-08-23T00:00:00+03:00</published>
      <updated>2021-08-23T00:00:00+03:00</updated>
      <id>https://physica.dev/art/July-morning</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-08-23-July-morning/">&lt;p&gt;A drawing of a fantastical July morning at the Black Sea.
The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.
It was heavily inspired by a drawing I saw on the PenUp app by &lt;a href=&quot;https://anastelfy.gumroad.com/?sort=page_layout&quot;&gt;this author&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/july_morning.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/july_morning_teaser.webp&quot; alt=&quot;July Morning&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of a fantastical July morning at the Black Sea. The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app. It was heavily inspired by a drawing I saw on the PenUp app by this author.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Drawing of a hand holding a shiny crystal</title>
      <link href="https://physica.dev/art/2021-08-09-Drawing-of-a-hand/" rel="alternate" type="text/html" title="Drawing of a hand holding a shiny crystal" />
      <published>2021-08-09T00:00:00+03:00</published>
      <updated>2021-08-09T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Drawing-of-a-hand</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-08-09-Drawing-of-a-hand/">&lt;p&gt;A drawing of a hand holding a blue kyber crystal used to construct a lightsaber.
The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/hand_holding_crystal.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/hand_holding_crystal_teaser.webp&quot; alt=&quot;Drawing of a hand holding a shiny crystal&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There is a variant of the drawing with the crystal levitating.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/hand_holding_crystal_variant.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/hand_holding_crystal_variant_teaser.webp&quot; alt=&quot;Drawing of a hand and a levitating shiny crystal&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There is also only the layer with the hand and lights and shadows.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/hand.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/hand_teaser.webp&quot; alt=&quot;Drawing of a hand and a levitating shiny crystal&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I also made a mix between this pic and the Pleiades one.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/hand_holding_crystal_variant2.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/hand_holding_crystal_variant2_teaser.webp&quot; alt=&quot;Drawing of a hand and the Pleiades&quot; /&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of a hand holding a blue kyber crystal used to construct a lightsaber. The drawing was made on the Galaxy Tab S6 Lite with the Sketchbook app.</summary>
      

      
      
    </entry>
  
    <entry>
      

      <title type="html">Drawing of cave paintings</title>
      <link href="https://physica.dev/art/2021-08-07-Drawing-of-cave-paintings/" rel="alternate" type="text/html" title="Drawing of cave paintings" />
      <published>2021-08-07T00:00:00+03:00</published>
      <updated>2021-08-07T00:00:00+03:00</updated>
      <id>https://physica.dev/art/Drawing-of-cave-paintings</id>
      
      
        <content type="html" xml:base="https://physica.dev/art/2021-08-07-Drawing-of-cave-paintings/">&lt;p&gt;A drawing of the Altamira cave paintings lit by the fire.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://physica.dev/images/drawings/cave_paintings.png&quot; download=&quot;&quot;&gt;
&lt;img src=&quot;https://physica.dev/images/drawings/cave_paintings_teaser.webp&quot; alt=&quot;Drawing of cave paintings&quot; /&gt; &lt;/a&gt;
Click on the image to download in full size.&lt;/p&gt;</content>
      

      
      
      
      
      

      <author>
          <name>Chavdar Dutsov</name>
        
          <email>chavdar.dutsov@cern.ch</email>
        
        
      </author>

      
        
          <category term="drawings" />
        
      

      

      
        <summary type="html">A drawing of the Altamira cave paintings lit by the fire.</summary>
      

      
      
    </entry>
  
</feed>


