Hi Matthias,I've been using python scripts such as:import pyalpsimport matplotlib.pyplot as pltimport pyalps.plot#prepare the input parametersparms = []for t in [ 0.02, 0.04, 0.06, 0.1]:parms.append({'LATTICE' : "honeycomb lattice",'MODEL' : "boson Hubbard",'T' : 0.1,'L' : 24 ,'t' : t ,'mu' : 0.75,'U' : 1.0,'NONLOCAL' : 0 ,'Nmax' : 2 ,'THERMALIZATION' : 10000,'SWEEPS' : 500000})#write the input file and run the simulationinput_file = pyalps.writeInputFiles('parm5a',parms)res = pyalps.runApplication('worm',input_file,Tmin=5)#load the magnetization and collect it as function of field hdata = pyalps.loadMeasurements(pyalps.getResultFiles(prefix='parm5a'),'Stiffness')rhos = pyalps.collectXY(data,x='t',y='Stiffness')#make plotplt.figure()pyalps.plot.plot(rhos)plt.xlabel('Hopping $t/U$')plt.ylabel('Superfluid density $\\rho _s$')plt.show()With various combinations of parameters and the inclusion of V (in the hopes of at least reproducing results obtained in other studies).Kind Regards,KristinaOn 3 June 2015 at 15:16, Matthias Troyer <troyer@phys.ethz.ch> wrote:Hi Kristina,
what code are you using and what are your input files? We cannot help without that information.
Matthias Troyer
> On Jun 2, 2015, at 21:07, Kristina Fidanovski <21292685@student.uwa.edu.au> wrote:
>
> Dear Developers,
>
> I'm trying to look into the extended boson Hubbard model on a honeycomb lattice, but no matter what I do the density always comes out as zero. I don't seem to have the same problem when using a honeycomb lattice with any of the other examples in the tutorials. What could be the problem?
>
> All the best,
> Kristina