This file contains hidden or 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
| > Multi-kit experiment enabled by the quEDU-NV platform is a test of Floquet attractor selection in driven NV centers using 3–4 fully disconnected kits operated under the same periodic microwave protocol. | |
| Standard quEDU-NV measurements and assumptions: | |
| - All NV kits are operated within the same prescribed microwave drive field (one global microwave phase and frequency modulation ie a single waveform illuminating all kits simultaneously) such that each kit samples the same time-dependent detuning and phase profile while exhibiting fixed local longitudinal detuning offsets in the rotating frame set by its magnetic-field environment. | |
| - The kits are fully physically disconnected — no shared clocks electronics grounds optics or data paths. | |
| - A local perturbation consisting of a brief controlled longitudinal detuning in the rotating frame (eg via a magnetic-field bias or frequency offset) is applied to only one NV system. | |
| The observables: |
This file contains hidden or 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 web3 import Web3 | |
| import json | |
| import sys | |
| import eth_utils | |
| GovernableFundContract = json.loads(open('./build/contracts/GovernableFund.json', 'r+').read()) | |
| RethinkFundGovernorContract = json.loads(open('./build/contracts/RethinkFundGovernor.json', 'r+').read()) | |
| PermissionsContract = json.loads(open('./build/contracts/Permissions.json', 'r+').read()) | |
| ERC20MockContract = json.loads(open('./build/contracts/ERC20Mock.json', 'r+').read()) | |
| RethinkReaderContract = json.loads(open('./build/contracts/RethinkReader.json', 'r+').read()) |
This file contains hidden or 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
| 2087 508e 9934 ee32 ec9a 62cd c658 b358 | |
| 64eb 1638 61c3 0762 c70e 363b 2771 8b6b | |
| 0c30 c31a 64c1 8659 a327 5a60 c18e 1d73 | |
| 776c b34c b4c7 19c3 4c1a 658c b16e 1830 | |
| 6386 8e38 68c1 8738 6196 5d71 ceb9 ac3a | |
| d60c 1c31 b2e1 db31 cdd6 98e3 2c31 bb26 | |
| 2cb6 3327 0c62 e18d 3b18 698c 5b00 cb17 | |
| 196c cc1a 3996 1c38 e1ae 7369 b075 8358 | |
| 3ac9 ad31 6998 3871 c70c b268 d632 6b8c | |
| 3b4e 3ae1 870e 371d 9347 1c75 a34c 1962 |
This file contains hidden or 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
| #include <iostream> | |
| #include <fstream> | |
| #include <vector> | |
| #include <string> | |
| #include <cstdint> | |
| #include <map> | |
| const int buff_size = 8; | |
| // clang++ -fcolor-diagnostics fib_encoding.cpp -o fib -Wall -O3 -std=gnu++14 -stdlib=libc++ -pedantic -I/usr/local/include | |
| // Lookup table of Fibonacci numbers that can fit in a ulong. |
This file contains hidden or 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
| cinquemb$ time ./bt "9.json" "10.json" "1.0" | |
| sample_block: 9.json | |
| sample_block_1: 10.json | |
| elem_mod_val: 1 | |
| block_rlp_len(9.json): 38732 | |
| is_identity(9.json): 0 | |
| abs_det(proj_block_rep->9.json): 1 | |
| abs_det(c_proj_block_rep_t->9.json): 1 | |
| block_rlp_len(10.json): 29004 | |
| is_identity(10.json): 0 |
This file contains hidden or 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
| #include <iostream> | |
| #include <map> | |
| #include <vector> | |
| #include <string> | |
| #include <cstdint> | |
| #include <armadillo> | |
| #include <sys/stat.h> | |
| #include <json/json.h> |
This file contains hidden or 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 __future__ import division | |
| from thermo.chemical import Chemical, Mixture | |
| from matplotlib import pyplot as plt | |
| import thermo | |
| import math | |
| import decimal | |
| import sys | |
| ''' | |
| LR |
This file contains hidden or 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 requests | |
| import os | |
| import math | |
| import csv | |
| ''' | |
| https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#Resolution_and_Scale | |
| https://en.wikipedia.org/wiki/Tiled_web_map | |
| zoom resolution, m/px scale 96 dpi 1 screen cm is scale 120 dpi | |
| 0 156543.03 1 : 554 678 932 5547 km 1 : 739 571 909 |
This file contains hidden or 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
| #include <iostream> | |
| #include <vector> | |
| #include <cmath> | |
| #include <numeric> | |
| #include <algorithm> | |
| #include <functional> | |
| #include <map> | |
| #include <armadillo> |