Skip to content

Instantly share code, notes, and snippets.

View mir's full-sized avatar

Marat Yuldashev mir

  • Saint-Petersburg state university
  • Tashkent
View GitHub Profile
2494729384572305876234987
@mir
mir / lead-lag-pll
Created February 13, 2016 18:54
GNU Octave (MATLAB) code for phase-plane analysis of PLL with lead-lag filter
function xdot = f (x, t)
xdot = zeros (2,1);
theta_e = x(2);
omega_e_free = 10;
K_V = 10;
K_D = 20;
tau_1 = 0.02;
tau_2 = 0.008;
A = -1/tau_1;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
/**
* Created by mir on 28.10.14.
*/
public enum Indexer {
INSTANCE;