Import#

Import ボタンから、計算条件を記載したjsonファイルをアップロードすることで New job 画面の各項目を自動入力することができます。 計算条件を共有したいときや、一部の条件だけを変化させて計算を流したいときにご活用ください。

また、結果出力画面の Export からダウンロードしたjsonファイルをそのまま アップロードして利用することも可能です。

jsonファイルによる入力例を以下に示します。

Example 1.#

\(\text{H}_2\) 分子の基底状態を sampling simulator(10000 shot) で計算するインプットの例です。

{
  "q_kernel": {
    "sampling_simulator": {
      "sampling_strategy_uniform": {
        "n_shots": 10000
      },
      "seed": 0
    }
  },
  "molecule": {
    "geometry": [
      {
        "symbol": "H",
        "x": 0,
        "y": 0,
        "z": 0.37,
        "basis": "sto-3g"
      },
      {
        "symbol": "H",
        "x": 0,
        "y": 0,
        "z": -0.37,
        "basis": "sto-3g"
      }
    ],
    "charge": 0,
    "multiplicity": 1
  },
  "active_space": {
    "n_electrons": 2,
    "n_orbitals": 2
  }
}

Example 2.#

\(\text{C}_2\text{H}_4\) 分子の基底状態と一重項励起状態1つを SSVQE , sampling simulator(10000 shot) で計算 するインプットの例です。

{
  "q_kernel": {
    "sampling_simulator": {
      "sampling_strategy_uniform": {
        "n_shots": 10000
      },
      "seed": 0
    }
  },
  "molecule": {
    "geometry": [
      {
        "symbol": "C",
        "x": -1.180008,
        "y": 0.192136,
        "z": 0.000006,
        "basis": "sto-3g"
      },
      {
        "symbol": "C",
        "x": 0.155627,
        "y": 0.220893,
        "z": -0.000035,
        "basis": "sto-3g"
      },
      {
        "symbol": "H",
        "x": -1.741943,
        "y": -0.456454,
        "z": -0.667423,
        "basis": "sto-3g"
      },
      {
        "symbol": "H",
        "x": -1.769292,
        "y": 0.815945,
        "z": 0.667474,
        "basis": "sto-3g"
      },
      {
        "symbol": "H",
        "x": 0.744920,
        "y": -0.402909,
        "z": -0.667497,
        "basis": "sto-3g"
      },
      {
        "symbol": "H",
        "x": 0.717548,
        "y": 0.869488,
        "z": 0.667399,
        "basis": "sto-3g"
      }
    ],
    "charge": 0,
    "multiplicity": 1,
    "sz_number": 0
  },
  "active_space": {
    "n_electrons": 2,
    "n_orbitals": 2
  },
  "n_excited_states": 1,
  "ssvqe_weights": [2.0, 1.0],
  "penalty_weights": {
    "num_electrons_weight": 1.0,
    "s2_number_weight": 1.0,
    "sz_number_weight": 1.0
  },
  "energy": {
    "states": [
      0
    ]
  }
}