Skip to content

Instantly share code, notes, and snippets.

View matiskay's full-sized avatar

Edgar Marca matiskay

View GitHub Profile
'''
Solve heat equation using Explicit Method
(du / dt) = c^2 (d^2u / dx^2)
Boundary Conditions:
* u(0, t) = 0, t >= 0
* u(L, t) = 0, t >= 0
Initial Conditions:

Creando una Inferface Grafica para la solucion de Ecuación del Calor usando el metodo explicito.

Heat Equation

Interface

PDE GUI

Asi funciona

Examenes UNMSM

Electronica

  • Examen Final 2013 - I
  • Examen Parcial 2013 - I
  • 2da Practica Calificada 2013 - I

La ecuación de Advección

Equation

Con condición Inicial:

Initial conditions

Simulación en imagen:

Movimiento de una esfera en un fluido viscoso.

Modelando la ecuación del movimiento de la esfera dentro de un fluido.

Consideremos los siguientes datos:

  • Densidad del plomo ρe = 11.35 g/cm3
  • Radio de la esfera R = 1.96 mm
  • Densidad del aceite ρf = 0.88 g/cm3
  • Viscosidad del aceite η = 0.391 kg/(m·s)
.*
@matiskay
matiskay / learning.mkd
Last active December 19, 2015 19:18
This is a list of books that I will use for my thesis dissertation in Support Vector Machines. I called it the Nerdy way to do binary classification.
@matiskay
matiskay / kernels.mkd
Last active September 17, 2019 15:52
Seleção para o Mestrado e Doutorado em Estatística
@matiskay
matiskay / reduce_pdf_size.sh
Created June 4, 2013 21:01
Reduce PDF size.
#! /bin/bash
FILE_NAME=""
# /screen selects low-resolution output similar to the Acrobat Distiller "Screen Optimized" setting.
# /ebook selects medium-resolution output similar to the Acrobat Distiller "eBook" setting.
# /printer selects output similar to the Acrobat Distiller "Print Optimized" setting.
# /prepress selects output similar to Acrobat Distiller "Prepress Optimized" setting.
# /default selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file.
PDF_SETTINGS="/ebook"