Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kunyuan committed Feb 17, 2015
2 parents b15bec5 + 877f720 commit 972d7a0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions dyson/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ def PlotChi_2D(Chi, lat, DoesSave=True):
plt.figure(1)
ax1=plt.subplot(121,aspect='equal')
plt.scatter(x_hhl,y_hhl,c=ChiK_hhl, s=29, edgecolor="black", linewidth=0)
plt.xlabel("Direction [hh0]")
plt.ylabel("Direction [00l]")
plt.xlim(-30, 30)
plt.ylim(-30, 30)
label=np.linspace(min(ChiK_hhl),max(ChiK_hhl), 4)
Expand All @@ -200,9 +202,12 @@ def PlotChi_2D(Chi, lat, DoesSave=True):

ax2=plt.subplot(122,aspect='equal')
plt.scatter(x_hl0,y_hl0,c=ChiK_hl0, s=18, edgecolor="black", linewidth=0)
plt.xlabel("Direction [h00]")
plt.ylabel("Direction [0l0]")
label=np.linspace(min(ChiK_hl0),max(ChiK_hl0), 4)
plt.xlim(-40, 40)
plt.ylim(-40, 40)
plt.tight_layout()

xlist = PI2*np.array([-1.0,-0.5, 0.5, 1.0, 1.0, 0.5,-0.5,-1.0,-1.0])
ylist = PI2*np.array([ 0.5, 1.0, 1.0, 0.5,-0.5,-1.0,-1.0,-0.5, 0.5])
Expand Down
7 changes: 6 additions & 1 deletion inlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
MonteCarlo={
"Control": {
"__Execute" : "./simulator.exe",
"__Duplicate" : 0,
"__Duplicate" : 3,
"__IsCluster" : False,
"__AutoRun" : True,
"__KeepCPUBusy": True,
Expand All @@ -33,8 +33,13 @@
}
}

<<<<<<< HEAD
Beta=4.0
Order=4
=======
Beta=2.0
Order=1
>>>>>>> 877f720202e931f7a6d27e5753d6ba8d8f15d647
Common={
"Tau": {
"MaxTauBin" : 64,
Expand Down

0 comments on commit 972d7a0

Please sign in to comment.