View Harmonic oscillator class.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Ejemplo validación.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View ionpump.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gamma Vacuum Digitel SPCe controller for ion pump | |
import serial | |
class IonPump: | |
def __init__(self, address=1, port='/dev/ttyUSB0', baudrate=9600): | |
self.serial = serial.Serial(port=port, baudrate=baudrate) | |
self.address = address |
View covidmx_web.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import matplotlib.pyplot as pl | |
import matplotlib.dates as mdates | |
from io import BytesIO # To avoid writing to disk | |
from zipfile import ZipFile | |
from glob import glob | |
import datetime | |
import json | |
import requests | |
import re |
View Hidrógeno.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View noncummutatitivy_rotations.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: Asaf Paris-Mandoki <asaf@fisica.unam.mx> | |
# Description: manim animation to shou the noncummutativity of finite rotations. | |
from manimlib.imports import * | |
import numpy as np | |
class RotationCommutation(ThreeDScene): | |
CONFIG = { | |
} |
View atomo_2_niveles.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from scipy.integrate import ode | |
import numpy as np | |
import pylab as pl | |
# Parámetros físicos | |
omega = np.pi | |
# Parámetros de simulación | |
t = np.linspace(0,4,101) |
View Time-dependent hamiltominan given in list array format.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View QuTIP debug.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.