<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Mates on Hykrion</title>
    <link>https://hykrion.com/categories/mates/</link>
    <description>Recent content in Mates on Hykrion</description>
    <generator>Hugo</generator>
    <language>es-ES</language>
    <lastBuildDate>Thu, 28 Apr 2022 16:31:54 +0200</lastBuildDate>
    <atom:link href="https://hykrion.com/categories/mates/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Schwarzschild - Absorción de ondas escalares</title>
      <link>https://hykrion.com/post/mates/schwarzschild-1/</link>
      <pubDate>Thu, 28 Apr 2022 16:31:54 +0200</pubDate>
      <guid>https://hykrion.com/post/mates/schwarzschild-1/</guid>
      <description>&lt;h1 id=&#34;agujero-negro-de-schwarzschild&#34;&gt;Agujero negro de Schwarzschild&lt;/h1&gt;&#xA;&lt;h2 id=&#34;absorción-de-ondas-escalares---primeros-pasos&#34;&gt;Absorción de ondas escalares - Primeros pasos&lt;/h2&gt;&#xA;&lt;h3 id=&#34;parte-1---coordenadas-tortuga&#34;&gt;Parte 1 - Coordenadas tortuga&lt;/h3&gt;&#xA;&lt;p&gt;Voy a hacer una serie de posts hablando de cómo desarrollé mi TFM, y éste es el primero.&lt;/p&gt;&#xA;&lt;p&gt;El objetivo del TFM era poder distinguir entre diferentes &lt;em&gt;ECOs&lt;/em&gt; (Extreme / Exotic Compact Objects), como&#xA;un agujero negro o un agujero de gusano.&#xA;Los papers clave para el desarrollo fueron &lt;a href=&#34;https://arxiv.org/pdf/1906.06411&#34;&gt;Absorption by black hole remnants in metric-affine gravity&lt;/a&gt;&#xA;y &lt;a href=&#34;https://arxiv.org/pdf/1207.6004&#34;&gt;Reissner-Nordström black holes in extended Palatini theories&lt;/a&gt;, aunque&#xA;hay muchos más&amp;hellip;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Coordenadas tortuga y GSL</title>
      <link>https://hykrion.com/post/mates/tortoise-gsl/</link>
      <pubDate>Thu, 30 Sep 2021 21:39:19 +0200</pubDate>
      <guid>https://hykrion.com/post/mates/tortoise-gsl/</guid>
      <description>&lt;h1 id=&#34;coordenadas-tortuga-y-gsl&#34;&gt;Coordenadas tortuga y GSL&lt;/h1&gt;&#xA;&lt;p&gt;Por cuestiones que aún no puedo desvelar (misterio misterioso) estoy necesitando obtener las coordenadas tortuga, r(r *), de forma numérica. Por lo visto para el estudio de Bounce Black holes y Wormholes es relativamente fácil obtener r *( r) de forma analítica pero muy difícil obtener r(r *).&lt;/p&gt;&#xA;&lt;p&gt;Para entrenar un poco antes de ir al ring podemos estudiar el caso de Schwarzschild.&lt;/p&gt;&#xA;&lt;h1 id=&#34;schwarzschild&#34;&gt;Schwarzschild&lt;/h1&gt;&#xA;&lt;p&gt;En el caso de Schwarzschild sabemos que r *( r) = (1 - rS/r)^-1 y por tanto r(r *) = (1 - rS/r), o sea, que tenemos ambas expresiones analíticas lo que es perfecto para probar nuestros métodos.&lt;/p&gt;</description>
    </item>
    <item>
      <title>GSL</title>
      <link>https://hykrion.com/post/mates/gsl/</link>
      <pubDate>Mon, 20 Sep 2021 21:39:19 +0200</pubDate>
      <guid>https://hykrion.com/post/mates/gsl/</guid>
      <description>&lt;p&gt;GSL (GNU Scientific Library)&lt;/p&gt;&#xA;&lt;p&gt;Hace ya un tiempo que estoy utilizando la librería &lt;a href=&#34;https://www.gnu.org/software/gsl/&#34;&gt;GSL&lt;/a&gt; y la verdad que me ha parecido una librería fantástica con una buena documentación. Aún así, sobre las ODE voy a dar un par de apuntes.&lt;/p&gt;&#xA;&lt;h1 id=&#34;código-algo-más-legible&#34;&gt;Código algo más legible&lt;/h1&gt;&#xA;&lt;p&gt;Vamos a tomar el mismo &lt;a href=&#34;https://www.gnu.org/software/gsl/doc/html/ode-initval.html#examples&#34;&gt;ejemplo que en la documentación&lt;/a&gt;, un oscilador de Van der Pol con la ecuación &#xA;&#xA;&lt;link rel=&#34;stylesheet&#34; href=&#34;https://hykrion.com/css/hugo-easy-gallery.min.css&#34; /&gt;&#xA;&lt;div class=&#34;box&#34; &gt;&#xA;  &lt;figure  itemprop=&#34;associatedMedia&#34; itemscope&#xA;    itemtype=&#34;http://schema.org/ImageObject&#34;&gt;&#xA;    &lt;div class=&#34;img&#34; &gt;&#xA;      &lt;img itemprop=&#34;thumbnail&#34; src=&#34;https://hykrion.com/media/vanderpol.png&#34; alt=&#34;Ecuación Van der Pol&#34;&#xA;         /&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;a href=&#34;https://hykrion.com/media/vanderpol.png&#34; itemprop=&#34;contentUrl&#34;&gt;&lt;/a&gt;&#xA;    &lt;figcaption align=&#34;center&#34;&gt;&lt;h4&gt;Ecuación del oscilador de Van der Pol&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;  &lt;/figure&gt;&#xA;&lt;/div&gt;&#xA; y el sistema &#xA;&#xA;&lt;div class=&#34;box&#34; &gt;&#xA;  &lt;figure  itemprop=&#34;associatedMedia&#34; itemscope&#xA;    itemtype=&#34;http://schema.org/ImageObject&#34;&gt;&#xA;    &lt;div class=&#34;img&#34; &gt;&#xA;      &lt;img itemprop=&#34;thumbnail&#34; src=&#34;https://hykrion.com/media/vanderpol-sys.png&#34; alt=&#34;Sistema Van der Pol&#34;&#xA;         /&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;a href=&#34;https://hykrion.com/media/vanderpol-sys.png&#34; itemprop=&#34;contentUrl&#34;&gt;&lt;/a&gt;&#xA;    &lt;figcaption align=&#34;center&#34;&gt;&lt;h4&gt;Sistema Van del Pol&lt;/h4&gt;&#xA;    &lt;/figcaption&gt;&#xA;  &lt;/figure&gt;&#xA;&lt;/div&gt;&#xA;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
