### from IPython.display import display
from bokeh.plotting import figure, output_notebook, show, output_file
output_notebook()
Nondimensional effective shear viscosity estimated from DPD simulations and compared with nondimensional effective shear viscosity of LE. Figure 1 corresponds to the case without conservative force.
from IPython.display import HTML
display(HTML(filename='dpd.html'))
Nondimensional effective shear viscosity estimated from DPD simulations and compared with nondimensional effective shear viscosity of LE. Figure 2 corresponds to the case with conservative force.
from IPython.display import display
from bokeh.plotting import figure, output_notebook, show, output_file
output_notebook()
from IPython.display import HTML
display(HTML(filename='dpd_wcons.html'))
from IPython.display import HTML
HTML('''<script>
code_show=true;
function code_toggle() {
if (code_show){
$('div.input').hide();
} else {
$('div.input').show();
}
code_show = !code_show
}
$( document ).ready(code_toggle);
</script>
<form action="javascript:code_toggle()"><input type="submit" value="Click here to toggle on/off the raw code."></form>''')