I use MATLAB. For the color plot you can use the MATLAB commands surf or contourf. For the isosurface of condensates you can use patch(isosurface...) and change the properties of the isosurface using set, for instance to plot the isosurface F=0.3 :
p = patch(isosurface(X,Y,Z,F,0.3)); view(-26,46); whitebg('k');
May you tell me what is the tool you use to plot such fancy movie?
blcrancer 3 months ago
@blcrancer
Hello,
I use MATLAB. For the color plot you can use the MATLAB commands surf or contourf. For the isosurface of condensates you can use patch(isosurface...) and change the properties of the isosurface using set, for instance to plot the isosurface F=0.3 :
p = patch(isosurface(X,Y,Z,F,0.3)); view(-26,46); whitebg('k');
set(p,'FaceColor','white','EdgeColor','none','AmbientStrength',0.5,'FaceAlpha',0.4);
camlight; lighting phong;
I hope that helps!
carolinemuller123 3 months ago