Newer
Older
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import qc_support as qcs\n",
"import qc_parser as qcp\n",
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"support.XYZ.from_xyz_file(\"hcho-guess.xyz\").get_molecular_viewer().show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"trajectory = support.Trajectory.from_opt_output(\"./hcho-opt.out\")\n",
"trajectory.get_molecular_viewer_slider().show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"trajectory = support.Trajectory.from_opt_output(\"./hcho-opt.out\")\n",
"trajectory.get_molecular_viewer_animated().show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"vib = support.Trajectory.from_vibration_output(\"./hcho-freq.out\", 7)\n",
"vib.get_molecular_viewer_animated(arrows=True).show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"vib = support.Trajectory.from_vibration_output(\"./hcho-freq.out\", 7)\n",
"vib.get_molecular_viewer_slider(arrows=True).show()"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
}
},
"nbformat": 4,
"nbformat_minor": 2
}