Advertisement
maple-tac

Enigma Software Heterochromia Iridum Incorporated

Jul 4th, 2018
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 15.38 KB | None | 0 0
  1. # FOR THE UNCANNY THIS IS A "PYTHON" PROGRAM.
  2. # It's more unclear what or how this program does
  3. # but that's half the fun
  4. #
  5. # todo: add 27.818133whatver for ZY+1.44
  6.  
  7. # e-mail maplecat@protonmail.com for stuff or whatever questions
  8. # or something?
  9.  
  10. # IMPORTANT INFO ABOUT HOW IT MIGHT WORK
  11. # ANYWAY:
  12. #
  13. # most of the "pentacle" functions except the "pent3" one's
  14. # was defined first and all these "pentacle" formulas
  15. # can be used but most practical is those with "constant"
  16. # output even if a "variable" (n) are used in the equation
  17. #
  18. # this above is feed into the yzz() "function" developed last
  19. # to use perhaps type yzz(128,harmonic(64)) to get ouput on the screen
  20. # N.B. One should never use the stable() function with anything it
  21. # will burn at least ..
  22. #
  23. # The resulting integers can be fed into the "cathie" formulas
  24. # which was the original one's maybe used during ww2 in.fact
  25. # personally I use cathie32(n) or as it would be typed:
  26. #
  27. # print(x,yzz(129,harmonic(64)),cathie32(yzz(129,harmonic(64)))
  28. #
  29. # I think it's important to have the digits all the same with and
  30. # without piping through cathie32 but who cares about that?!
  31. #
  32. # also for the above print that displays output on the screen from
  33. # python also even if harmonic(64) usually is equal to 2.9
  34. # there are always inteferrence which might make subtle CHANGE
  35. # for the output though the functions are pretty stable you
  36. # can run a stability check with just typing stable(333) i.e. and
  37. # others like stable(454) and same with harmonic(n) to see if
  38. # both give output exact 0.16 and 2.9 not i.e. 2.90000002 but
  39. # apparently some of these "pentacles" are designed in such a way
  40. # that they usually are stable hence the names maybe.
  41. #
  42. # there are other cathie equations and my own dabbeling is
  43. # the function enew() whish introduce an array for each output
  44. # based on cosinus or sinus
  45. #
  46. # SO this is a "python" computer program language "script" i.e.
  47. # it's different from a normal computer executable but then again
  48. # it can even run on your telephone / android
  49. #
  50. # Usually anyway it would have a "front-end" but this does not
  51. # have a front-end (yet) only these comments and to look at the "code"
  52. # below:
  53.  
  54. # END intro currently.
  55.  
  56. # Here is the script / code it's alot to look through but even worse
  57. # too look through is the output for some!
  58.  
  59. #importing seperatly so I know what I use
  60.  
  61. from math import cos
  62. from math import log
  63. from math import e #trying 2.71453
  64. #e=2.71453
  65. #from math import e #trying e again
  66. from math import pi
  67. from operator import lshift
  68. from operator import rshift
  69. from math import sqrt
  70. #from math import e
  71. from math import trunc
  72. # lets void PI
  73. pi=3.14625
  74.  
  75. # defining Buckinster Fuller's "Synergetics Constants"
  76. syn=[]
  77. for x in range(1,13):
  78.         syn.append((9/8)**(x/6))
  79.  
  80.  
  81. # Old way of doing the above this is the integers HE used:
  82.  
  83. syn2=[1.019824451,1.040041912,1.060660172,1.081687178,1.103131033,1.125,1.193242683,1.265625] #find formula
  84.  
  85. # square it mother fu->>> p.s also 64/27  
  86.  
  87. lsic=((8/(3*sqrt(3)))**2) #liebs square ice constant (or 8/9*sqrt(3)!
  88.  
  89. #or Wadsworth constant 640*(3/10)/81
  90.        
  91. light_meter=299792458 # this should be clear it's
  92.                       # light in wrong kilmeters per hours
  93.                       # probably they no-one figured it was paramount
  94.                       # to ~= 3 though this is actually 29..
  95.  
  96.  
  97. phi=((1+sqrt(5))/ 2.0) # NOTICE 5/2 sdtuf. defining ph--
  98. gamma=(4*log(2)-2*log(3)) # forumla!!! ;)
  99. print("gamma",gamma)
  100. print("computer e",e)
  101. e=(16/9)**(1/gamma) # coputer e gives a fractional error from
  102.                     # 1.7777..with it's e-value. this one better.
  103. print("my e",e)
  104.  
  105. #alpha=1.37318 # fine structure constants        
  106. alpha=1/(2**11)*6**7
  107. print("alpha",alpha)
  108.  
  109.  
  110.  
  111. lsi=1/(1024/6/6/6/2) #converts 2**n to 6**n ? 216 */ n
  112.  
  113. test=(1/(((e**(4*log(2)-2*log(3))))/2**9))
  114.  
  115. speed=(1/(((e**gamma))/2**9)) #give 144*2 must make test
  116.  
  117. # below are future components of the program
  118. # based on american "bucky" from his book on
  119. # Synergetics, it's from Him that we got the
  120. # idea for the "pentacle"'s to use only
  121. # primes in designing them,
  122.  
  123. # "Synegetics" are actually two books / compendiums
  124. # interexchangable his major technical work..and
  125. # contain many of these equations here; gemoteric ..
  126. # stuff..
  127.  
  128.  
  129. def angles(c,n=180):
  130.         return((c-2*n))
  131.  
  132. def fuller_sp(n):
  133.         # number of
  134.         sp=0
  135.         for x in range(1,n+1):
  136.                 sp=sp+10*(x**2)
  137.                 #print("layer",x,sp)
  138.         sp=sp+(2*n)+1
  139.         return(sp)
  140.  
  141. #def fuller_sph(n):
  142. #        sp=0
  143. #        for x in range(1,n+1):
  144. #                sp=sp+fuller_n(x)
  145. #        return(sp)
  146.                
  147.  
  148.  
  149. # some stuff here used previously following below
  150. # we tried finding some resonant frequencies
  151. # because this program obviously has many layers
  152. # or is so-called multi-functional
  153. #
  154. # this below the next is routine to find physical
  155. # coils etc physical material stuff to build
  156. # something that works for mankind free stuff
  157.  
  158.  
  159. def test6(c):
  160.         n=c
  161.         return(1/((e**gamma)/n))
  162.  
  163. def m_str(I,N=288,l=45,c=0):
  164.         ''' N=vindings, l=spool-length (arc?)  I=power(watt)
  165.  
  166.        currently using fuller_n() for windings..
  167.  
  168.        !! using 50/1.125/1.125 instead of 10 cm/2.54
  169.        also suggesting 50 as in HZ so use maybe 40 or whatever.
  170.  
  171.        '''
  172.         if c==0:
  173.                 return((I*N)/(l))
  174.         else:
  175.                 return((I*N)/(l/2.54))
  176.  
  177. def search_h(x=256000,y=25600,z=256000):
  178.         print("Searching for harmonics of Coils")
  179.         ''' Routine to (try) to find if Harmonic Equation 2 can correspond to Coild strength
  180.        '''
  181.         I=25
  182.         N=25
  183.         harmonics=()
  184.         while I<x:
  185.                 while N<y:
  186.                         coil=m_str(I,N)
  187.                         for a in range(1,z):
  188.                                 #print("Cathie:",cathie2((a*sqrt(2)**2)),"Coil:",coil)
  189.                                 if trunc(cathie((a*sqrt(2)**2)))==coil:# trunc only cathie2 as it is supposed to give
  190.                                                                         # whole integers.
  191.                                                                         # --maybe remove formule and just use plain c,
  192.                                                                         # since 'coil' doesnt give whole number output
  193.                                         print('Coil Strength',coil,'Cathie 2:',cathie((a*sqrt(2)**2)))
  194.                                        
  195.                                        
  196.                         N=N+1
  197.                         #print(N)
  198.                 I=I+1
  199.                 N=25
  200.                 print(I)
  201.  
  202. def search_h2(x=256000,y=25600,z=256000,zz=25600): # errorenous procedure but gives me more hits
  203.         print("Searching for harmonics of Coils")
  204.         ''' Routine to (try) to find if Harmonic Equation 2 can correspond to Coild strength
  205.        '''
  206.         I=25
  207.         N=25
  208.         l=1
  209.         harmonics=()
  210.         while I<x:
  211.                 while N<y:
  212.                         while l<zz:
  213.                                 coil=m_str(I,N,l)
  214.                                 for a in range(1,z):
  215.                                         #print("Cathie:",cathie2((a*sqrt(2)**2)),"Coil:",coil)
  216.                                         if trunc(cathie2(z))==coil:# here it should  be cathie()
  217.                                                                                 # not cathie2()
  218.                                                                                 #
  219.                                                                                 # remember a*sqrt(2)**2 was c
  220.                                                                         print('Coil Strength',coil,'Cathie 2:',cathie2((a*sqrt(2)**2)))
  221.                                 zz=zz+1
  222.                                        
  223.                                        
  224.                         N=N+1
  225.                         zz=1
  226.                         #print(N)
  227.                 I=I+1
  228.                 N=25
  229.                 print(I)
  230.  
  231. # END of that part of the program.
  232.  
  233.  
  234. #
  235.  
  236. psi=147.81557937222715 # derived from 6 see 144-.py
  237. black=2*(225|144^256) # 99.4% dont worry it doesnt get blacker
  238. black2=(225|144^256&225) # ? going around like the code also
  239.                         # it is a "belt"
  240.  
  241.  
  242.  
  243.  
  244.  
  245. two88=[2,3,4,6,8,9,12,16,18,24,32,36,48,72,96,144]
  246. three84=[2,3,4,6,8,12,16,24,32,48,64,96,128,192]
  247.  
  248. x360=1/(29/10440) #10440 is !144
  249.  
  250.  
  251.  
  252.  
  253. two=96/43.62 #any from tuble tw88 x16 / x7.2
  254.  
  255.  
  256. # the below here is testingr something don't remember what
  257.  
  258. def loop(c=(e**gamma)):
  259.     x=pentacle(c)
  260.     y=1/x
  261.     while y < 144:
  262.         x=pentacle(c)
  263.         print(x,y)
  264.         loop
  265.    
  266.  
  267.  
  268. def analyse(c,d=32):
  269.     a=cathie(c)
  270.     for x in range(1,d):
  271.         z=(rshift(int(a),x))
  272.         print(x,c,z,z/c,'abc=',(1/(z/c)),'sqrt-abc=',sqrt(1/(z/c)),'sqrt z',sqrt(z))
  273.         if z==1:
  274.             break
  275.  
  276.  
  277.  
  278.  
  279. # Reciprocal & reverse-pentacle:
  280. def multacle(n):return (pentacle(n)*repentacle(n))
  281. def pentsum(n):return (pentacle(n)+repentacle(n))
  282. def binary_shift(n,m):return(lshift(n,m))
  283. def pentacle(n):return 1/(n*5/2)
  284. def repentacle(n):return 1/(n*2/5)
  285. def harmonic(n):return(pentsum(n)*n) # returns approx. 29...always..
  286. # above, equals 29/10..but we need the variable n(N)
  287.  
  288. #def stable(n):return n*2 # ,n/(pentacle(n)/repentacle(n)) #last figure is always 0.16
  289.  
  290. def pentacle3(n):return(1/(n*5/3))
  291. def repentacle3(n):return(1/(n*3/5))
  292. def pentsum3(n):return (pentacle3(n)+repentacle3(n))
  293. def harmonic3(n):return(pentsum3(n)*n) # 2.2666666666.. 34/15!!
  294.  
  295. def harmonic31(n):return(((1/(n*5/3))+(1/(n*3/5)))*n)
  296.  
  297. #from the above i ducted furter not next but next
  298. def stable(n):return(pentacle(n)/repentacle(n)) #last figure is always 0.16
  299. ## above equls 4/25 but we want n(N)
  300.  
  301.  
  302. # this is for getting sum of an "array" which is all digits
  303. # from x to y.
  304.  
  305. def sum(n):
  306.     x=0
  307.     for y in range(1,n):
  308.         x=x+y
  309.     return(x+n) #phase-
  310.  
  311.  
  312. #here thats
  313. def nos(n):return(pentsum(n)/pentacle(n)) #always return 7.25
  314. def nos2(n):return((1/(n*5/2)+1/(n*2/5))/(1/(n*5/2))) # same as above
  315. def son(n):return(pentsum(n)/n) #this oen was col.
  316.  
  317. def boss(n): # 4.915960401250875 constant/static..
  318.     x=(((n/3)*(n*5)/2)*2.9)
  319.     y=sqrt(x)
  320.     z=y/n
  321.     return(z)
  322.  
  323. def boss2(n): # 3.6514837167011076 constant/static..
  324.     x=(((n/3)*(n*5)/2)*0.16)
  325.     y=sqrt(x)
  326.     z=y/n
  327.     return(z)
  328.  
  329. def boss3(n,nn): # as above without the 0.16 static instead nnany
  330.     x=(((n/3)*(n*5)/2)*nn)
  331.     y=sqrt(x)
  332.     z=y/n
  333.     return(z)
  334.  
  335.  
  336.  
  337.  
  338. # HERE is the stuff we pipe around in a circle with both this
  339. # being our way of Enigma calculating stuff which is then
  340. # processed in a circle with / through the E=xyz (einstein)
  341. # formulas which read like cake..
  342.  
  343. def yzz(n,a=2.9): #returns some multiples of 4 or 5 per 29..
  344.     y=0
  345.     for x in range(1,n):
  346.         y=y+(x/a)
  347.         #print(y) #enable this one to show stuff important remove first #
  348.     return(y/n)
  349.  
  350. ten=yzz(59)
  351.  
  352. anti_matter=boss2(87)*boss(87)*0.16
  353.  
  354.  
  355. #### buckminster fuller equations!!::
  356.  
  357. def sq_triangle(n):
  358.         ''' N='square' triangle how many times.'''
  359.         return((n*(n+1))/2)
  360.  
  361.  
  362. def fuller_n(f,n=5,a=2):
  363.     return(a*n*(f**2)+2)
  364.  
  365.  
  366.  
  367.  
  368.  
  369. def relation(n): #number of tangible relationshops n!
  370.     return(((n**2)-n)/2)
  371.  
  372. def spheres(f): #number of closest packed spheres
  373.     n=0
  374.     for x in range(f):
  375.         n=n+((x**2))
  376.         #print(x,n)
  377.     #print(n)    
  378.     n=n*10
  379.     #print(n)
  380.     n=n+((2*f**2)+1)
  381.     return(n)
  382.  
  383. ## END FULLER.
  384.  
  385. def test1(x,y): #print table something
  386.     for z in range(0,x):
  387.         print(bin(z))
  388.         print(bin(y),y)
  389.         print(bin((z&y)))
  390.         print('-----')
  391.  
  392.  
  393. def test2(x=9,y=256,z=8): #not sure what this one does.
  394.     for n in range(0,y):
  395.         for m in range(0,z):
  396.             print((x<<m),'&',n,'=',((x<<m)^n))
  397.         print('-----')
  398.  
  399.  
  400.  
  401.  
  402. placer=fuller_n(6)-fuller_n(2) #from NWSE. obsiouyy 6/22
  403.  
  404. #spectacle
  405.  
  406. zy=(harmonic(21)*stable(21)*nos(21)*boss(89))
  407.  
  408. print('hello and:',zy,'test')
  409.    
  410. def cathie(c):
  411.  
  412.     '''        
  413.    Bruce Cathie relativity equations two. c is a variable speed of
  414.    special frame of reference or singular entitiy. Value. Function
  415.    seems to vaugely relate to one coincidental Buckminster Fuller
  416.    equations.
  417.  
  418.    '''
  419.     return((2*c*sqrt(1/(2*c)))*(2*c)**2)
  420.  
  421. def cathie2(c):
  422.  
  423.     ''' This is a variant of the one above just using a differnt formula
  424.        according to wolfram alpha, but i t gives different output?
  425.        And with x6 as was shown by triel good be.
  426.  
  427.        Use this at least with 'Standard Atonic Weight'.s
  428.  
  429.  
  430.        '''
  431.     return((4*(sqrt(2))/((1/c)*5/2)))    
  432.  
  433.  
  434.  
  435.  
  436.  
  437. def cathie3(c):
  438.         '''Relativity equation 3'''
  439.         return( sqrt((2*c)+sqrt(1/(2*c))*(2*c)**2))
  440.  
  441. def cathie32(c):
  442.         '''Relativity equation 3, wolfram alpha version'''
  443.         return(sqrt(2*c+(2*sqrt(2))/((1/c)**(3/2))))
  444.  
  445. def cathie33(c):
  446.         ''' Another substuture of H3 assuming c is positive
  447.        which I suppose it is, because how can speed of light be
  448.        negative or?'''
  449.         return(sqrt(2*sqrt(2) *c**(3/2)+2* c))
  450.  
  451.        
  452.  
  453.  
  454. def sunfact(n): # dnot know what this is. doesnt work either
  455.     if n < 1:
  456.         return(1)
  457.     else:
  458.         return(n*sunfact(n-1)+1-2*(n%2))
  459.  
  460.  
  461. def pi_c(x): #this can give closer and closer aprox of PI
  462.     area = 0 #but we never reach a perfect sphere in anything may
  463.     hypot=2  #so we only need approximations.
  464.     for n in range(0,x):
  465.         height=1-(1-(hypot/2)**2)**0.5
  466.         area=area+2**n*height*hypot
  467.         hypot=(height**2+(hypot/2)**2)**0.5
  468.     return(area)
  469.  
  470.  
  471. def test4(n,f,x=216,y=8): m# dont know about this
  472.         flr=fuller_n(f,n)
  473.         #print(flr)
  474.         return((1/(flr*lsic)*x)*2**y)
  475.  
  476.  
  477.  
  478. # future \use
  479.  
  480. def approximate_size(size, a_kilobyte_is_1024_bytes=True):
  481.     '''Convert a file size to human-readable form.
  482.  
  483.    Keyword arguments:
  484.    size -- file size in bytes
  485.    a_kiloyte_is_1024_bytes -- if True (default), use multiples of 1024
  486.                                if False, use multiples of 1000
  487.  
  488.    Returns: string
  489.  
  490.    '''
  491.     if size < 0:
  492.         raise ValueError('number must be non-negative')
  493.  
  494.     multiple = 1152 if a_kilobyte_is_1024_bytes else 1024
  495.     for suffix in SUFFIXES[multiple]:
  496.         size /= multiple
  497.         if size < multiple:
  498.             return '{0:.1f} {1}'.format(size, suffix)
  499.  
  500.     raise ValueError('number too large')
  501.  
  502.  
  503.  
  504. print(cathie2(alpha*sqrt(2)),'alpha x sqrt2 -> cathie2')
  505.  
  506. # new functions.
  507.  
  508. def enew(x,c):
  509.         z=(cos(x)*c+1/(1/c)**(3/2))
  510.         return(z)
  511.  
  512. def crack(depth=16):
  513.         x=1/58*(2**(3+depth)*5**depth-1)
  514.         x=x*sqrt(2)
  515.         #print('1.Cathie Wolfram 2b X is qual to: ',x,'Hertz is equal to: ',cathie2(x),'ok.. With this reciprocal / inverse: ',1/cathie2(x))
  516.         #..DO NOT EVEN THINK ABOUT THESE NEVER.
  517.         #print('2.Cathie 3 W/A:',x,'Hertz is equal to: ',cathie32(x),'ok.. With this reciprocal / inverse:..')
  518.         #print('3.Cathie Pos W/A:: ',x,'Hertz is equal to: ',cathie33(x),'ok.. With this reciprocal / inverse: ',1/cathie33(x))
  519.         return(x)
  520.  
  521.  
  522. def wad(n,f): #this one is what makes the dimensional tables part of it
  523.         return(f/6480)**(n-1) #other version of wadt
  524.                                 #doesnt give complex numbers
  525.                                 #with negative values for n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement