diff --git a/sirepo_bluesky/tests/test_stateless_compute.py b/sirepo_bluesky/tests/test_stateless_compute.py index 25a22e32..89e2070b 100644 --- a/sirepo_bluesky/tests/test_stateless_compute.py +++ b/sirepo_bluesky/tests/test_stateless_compute.py @@ -149,8 +149,13 @@ def test_stateless_compute_with_RE(RE, srw_chx_simulation, db): sirepo_dicts.append(json.loads(data)) for i in range(0, len(sirepo_dicts) - 1): diff = list(dictdiffer.diff(sirepo_dicts[i], sirepo_dicts[i + 1])) - print(diff) + pprint.pprint(diff) assert diff, "tipRadius not properly updated in RE." + for data, tbl_radius, radius in zip(sirepo_dicts, tbl["crl1_tipRadius"], np.linspace(500, 2500, 5)): + assert ( + data["models"]["beamline"][4]["tipRadius"] == radius + ), "Radius was not properly changed in the Run Engine." + assert tbl_radius == radius, "Radius was not properly changed in the Run Engine." def _remove_dict_strings(dict): @@ -167,28 +172,38 @@ def _remove_dict_strings(dict): def _generate_test_crl_file(fname, crl, simulation): combined_dict = {"request": {}, "response": {}} - for radius in range(1, 201): + for material in ["Al", "Au", "B", "Be", "C"]: + crl.id._sirepo_dict["material"] = material + expected_response = simulation.compute_crl_characteristics(crl.id._sirepo_dict) + combined_dict["request"][material] = crl.id._sirepo_dict.copy() + combined_dict["response"][material] = expected_response + print(f"Material {material} added") + crl.id._sirepo_dict["material"] = "User-defined" + for radius in range(1000, 2100, 100): crl.id._sirepo_dict["tipRadius"] = radius expected_response = simulation.compute_crl_characteristics(crl.id._sirepo_dict) - combined_dict["request"][f"radius{radius}"] = crl.id._sirepo_dict.copy() - combined_dict["response"][f"radius{radius}"] = expected_response - print(f"Radius {radius} added") + key = f"Radius {radius} µm" + combined_dict["request"][key] = crl.id._sirepo_dict.copy() + combined_dict["response"][key] = expected_response + print(f"{key} added") crl.id._sirepo_dict["tipRadius"] = 1500 - for lenses in range(1, 201): + for lenses in range(1, 11): crl.id._sirepo_dict["numberOfLenses"] = lenses expected_response = simulation.compute_crl_characteristics(crl.id._sirepo_dict) - combined_dict["request"][f"lenses{lenses}"] = crl.id._sirepo_dict.copy() - combined_dict["response"][f"lenses{lenses}"] = expected_response - print(f"Lenses {lenses} added") + key = f"Lenses {lenses}" + combined_dict["request"][key] = crl.id._sirepo_dict.copy() + combined_dict["response"][key] = expected_response + print(f"{key} added") crl.id._sirepo_dict["numberOfLenses"] = 1 - for thickness in range(1, 201): + for thickness in range(20, 205, 5): crl.id._sirepo_dict["wallThickness"] = thickness expected_response = simulation.compute_crl_characteristics(crl.id._sirepo_dict) - combined_dict["request"][f"thickness{thickness}"] = crl.id._sirepo_dict.copy() - combined_dict["response"][f"thickness{thickness}"] = expected_response - print(f"Thickness {thickness} added") + key = f"Thickness {thickness} µm" + combined_dict["request"][key] = crl.id._sirepo_dict.copy() + combined_dict["response"][key] = expected_response + print(f"{key} added") crl.id._sirepo_dict["wallThickness"] = 80 dict_to_file(combined_dict, fname) @@ -197,22 +212,20 @@ def _generate_test_crl_file(fname, crl, simulation): def _generate_test_crystal_file(fname, crystal, simulation): combined_dict = {"request": {}, "init": {}, "orientation": {}} - for energy in range(1, 101): + for energy in range(100, 10100, 1000): crystal.id._sirepo_dict["energy"] = energy - combined_dict["request"][f"Si energy{energy}"] = crystal.id._sirepo_dict.copy() - combined_dict["init"][f"Si energy{energy}"] = simulation.compute_crystal_init(crystal.id._sirepo_dict) - combined_dict["orientation"][f"Si energy{energy}"] = simulation.compute_crystal_orientation( - crystal.id._sirepo_dict - ) - print(f"Si Energy {energy} added") + key = f"Si {energy} eV" + combined_dict["request"][key] = crystal.id._sirepo_dict.copy() + combined_dict["init"][key] = simulation.compute_crystal_init(crystal.id._sirepo_dict) + combined_dict["orientation"][key] = simulation.compute_crystal_orientation(crystal.id._sirepo_dict) + print(f"{key} added") crystal.id._sirepo_dict["material"] = "Germanium (X0h)" - for energy in range(1, 21): + for energy in range(1000, 3100, 100): crystal.id._sirepo_dict["energy"] = energy - combined_dict["request"][f"Ge energy{energy}"] = crystal.id._sirepo_dict.copy() - combined_dict["init"][f"Ge energy{energy}"] = simulation.compute_crystal_init(crystal.id._sirepo_dict) - combined_dict["orientation"][f"Ge energy{energy}"] = simulation.compute_crystal_orientation( - crystal.id._sirepo_dict - ) - print(f"Ge Energy {energy} added") + key = f"Ge {energy} eV" + combined_dict["request"][key] = crystal.id._sirepo_dict.copy() + combined_dict["init"][key] = simulation.compute_crystal_init(crystal.id._sirepo_dict) + combined_dict["orientation"][key] = simulation.compute_crystal_orientation(crystal.id._sirepo_dict) + print(f"{key} added") dict_to_file(combined_dict, fname) diff --git a/sirepo_bluesky/tests/vcr_cassettes/test_crl_characteristics.yml b/sirepo_bluesky/tests/vcr_cassettes/test_crl_characteristics.yml index 659a65ea..9ef30555 100644 --- a/sirepo_bluesky/tests/vcr_cassettes/test_crl_characteristics.yml +++ b/sirepo_bluesky/tests/vcr_cassettes/test_crl_characteristics.yml @@ -3,9 +3,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "Al", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -16,29 +16,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '621' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":35.51923374558695,"attenuationLength":"0.007313","focalDistance":0.1188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-16.584501057072337,"attenuationLength":0.000109687,"focalDistance":110.96211644157962,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"Al","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":6.75906358e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '488' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:42:53 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -46,9 +46,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 2, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "Au", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -59,29 +59,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '621' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":35.63927340825541,"attenuationLength":"0.007313","focalDistance":0.237666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":2,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":81.69025221225716,"attenuationLength":3.3890199999999998e-06,"focalDistance":20.059614016812027,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"Au","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":3.73885559e-05,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '497' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:42:54 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -89,9 +89,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 3, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "B", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -102,29 +102,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":35.76012718666786,"attenuationLength":"0.007313","focalDistance":0.35650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":3,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-12.582265730123332,"attenuationLength":0.00286169,"focalDistance":134.99732427203452,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"B","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":5.55566567e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '486' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:42:56 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -132,9 +132,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 4, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "Be", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -145,29 +145,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '621' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":35.88180339107272,"attenuationLength":"0.007313","focalDistance":0.475333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":4,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.772548839238297,"attenuationLength":0.007312959999999999,"focalDistance":178.25015939664002,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"Be","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":4.20756987e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '496' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:42:57 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -175,9 +175,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 5, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "C", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -188,29 +188,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.004310445209285,"attenuationLength":"0.007313","focalDistance":0.5941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":5,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-12.866770928008329,"attenuationLength":0.00149468,"focalDistance":132.79506570930914,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"C","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":5.64780021e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '486' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:42:59 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -220,7 +220,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 6, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1000, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -231,29 +231,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.1276568882517,"attenuationLength":"0.007313","focalDistance":0.7130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":6,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-15.019867486971442,"attenuationLength":"0.007313","focalDistance":118.8334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1000,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 7, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1100, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -274,29 +274,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.251851376793134,"attenuationLength":"0.007313","focalDistance":0.8318344468823795,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":7,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-13.14730931352966,"attenuationLength":"0.007313","focalDistance":130.71684165294533,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1100,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -306,7 +306,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 8, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1200, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -317,29 +317,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.37690268687094,"attenuationLength":"0.007313","focalDistance":0.950667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":8,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-11.689904556585176,"attenuationLength":"0.007313","focalDistance":142.6001908941222,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1200,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -349,7 +349,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 9, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1300, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -360,29 +360,29 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.50281971603393,"attenuationLength":"0.007313","focalDistance":1.0695014317059166,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":9,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-10.52336870885933,"attenuationLength":"0.007313","focalDistance":154.48354013529905,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1300,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -392,7 +392,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 10, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1400, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -403,29 +403,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.6296114854527,"attenuationLength":"0.007313","focalDistance":1.188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":10,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-9.56852534229229,"attenuationLength":"0.007313","focalDistance":166.3668893764759,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1400,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -435,7 +435,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 11, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -446,29 +446,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.757287142074105,"attenuationLength":"0.007313","focalDistance":1.3071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":11,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '491' + - '492' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -478,7 +478,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 12, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1600, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -489,29 +489,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":12,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.09882338631813,"attenuationLength":"0.007313","focalDistance":190.1335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1600,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -521,7 +521,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 13, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1700, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -532,29 +532,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.015327346837985,"attenuationLength":"0.007313","focalDistance":1.5448354013529906,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":13,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-7.521204157341046,"attenuationLength":"0.007313","focalDistance":202.01693710000646,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1700,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '491' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -564,7 +564,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 14, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1800, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -575,29 +575,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.14571083778542,"attenuationLength":"0.007313","focalDistance":1.663668893764759,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":14,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-7.020492939740869,"attenuationLength":"0.007313","focalDistance":213.9002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1800,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '492' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -607,7 +607,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 15, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1900, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -618,29 +618,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":15,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-6.582288420781218,"attenuationLength":"0.007313","focalDistance":225.78363558236015,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1900,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -650,7 +650,7 @@ interactions: "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 16, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 2000, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -661,29 +661,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.40925296179211,"attenuationLength":"0.007313","focalDistance":1.901335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":16,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-6.195573642892285,"attenuationLength":"0.007313","focalDistance":237.666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":2000,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -691,9 +691,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 17, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -708,25 +708,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.54243135407859,"attenuationLength":"0.007313","focalDistance":2.0201693710000646,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":17,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '490' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -734,9 +734,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 2, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 18, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -751,25 +751,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.676561374688426,"attenuationLength":"0.007313","focalDistance":2.139002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":18,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-23.325401899928792,"attenuationLength":"0.007313","focalDistance":89.12511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":2,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -777,9 +777,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 3, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 19, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -794,25 +794,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.81165326000676,"attenuationLength":"0.007313","focalDistance":2.2578363558236014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":19,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-52.178591939859366,"attenuationLength":"0.007313","focalDistance":59.41674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":3,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -820,9 +820,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 4, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 20, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -837,25 +837,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.37666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":20,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-136.76964159206418,"attenuationLength":"0.007313","focalDistance":44.56255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":4,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -863,9 +863,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 5, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 21, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -880,25 +880,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":38.08476430967676,"attenuationLength":"0.007313","focalDistance":2.4955033406471383,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":21,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-5011.683299115805,"attenuationLength":"0.007313","focalDistance":35.650047723530555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":5,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -906,9 +906,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 6, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 22, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -923,25 +923,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":38.22280469420561,"attenuationLength":"0.007313","focalDistance":2.614336833058907,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":22,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":220.17606260308207,"attenuationLength":"0.007313","focalDistance":29.708373102942126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":6,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -949,9 +949,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 7, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 23, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -966,25 +966,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":38.361849389293575,"attenuationLength":"0.007313","focalDistance":2.7331703254706756,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":23,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":126.12724796819347,"attenuationLength":"0.007313","focalDistance":25.46431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":7,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '491' + - '490' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -992,9 +992,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 8, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 24, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -1009,25 +1009,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":38.5019093952244,"attenuationLength":"0.007313","focalDistance":2.8520038178824443,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":24,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":95.5245621138332,"attenuationLength":"0.007313","focalDistance":22.281279827206596,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":8,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '489' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1035,9 +1035,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 9, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 25, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -1052,25 +1052,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.9708373102942125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":25,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":80.35952387033105,"attenuationLength":"0.007313","focalDistance":19.805582068628084,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":9,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '490' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1078,9 +1078,9 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 10, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 26, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: @@ -1091,29 +1091,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '628' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":38.785120149904,"attenuationLength":"0.007313","focalDistance":3.089670802705981,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":26,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":71.30365299749822,"attenuationLength":"0.007313","focalDistance":17.825023861765278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":10,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '487' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1121,11 +1121,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 27, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 20}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1134,29 +1134,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":38.928293717335485,"attenuationLength":"0.007313","focalDistance":3.2085042951177494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":27,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":20,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '491' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1164,11 +1164,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 28, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 25}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1177,29 +1177,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":39.0725282391041,"attenuationLength":"0.007313","focalDistance":3.327337787529518,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":28,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":25,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1207,11 +1207,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 29, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 30}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1220,29 +1220,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":39.21783555199883,"attenuationLength":"0.007313","focalDistance":3.4461712799412867,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":29,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":30,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '490' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1250,11 +1250,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 30, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 35}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1263,29 +1263,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.565004772353055,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":30,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":35,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1293,11 +1293,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 31, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 40}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1306,29 +1306,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":39.51171678531951,"attenuationLength":"0.007313","focalDistance":3.683838264764824,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":31,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":40,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1336,11 +1336,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 32, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 45}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1349,29 +1349,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":39.66031527632802,"attenuationLength":"0.007313","focalDistance":3.802671757176592,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":32,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":45,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '489' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1379,11 +1379,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 33, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 50}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1392,29 +1392,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":39.81003570647585,"attenuationLength":"0.007313","focalDistance":3.92150524958836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":33,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":50,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1422,11 +1422,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 34, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 55}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1435,29 +1435,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":39.9608908301048,"attenuationLength":"0.007313","focalDistance":4.040338742000129,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":34,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":55,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '488' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:03 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -1465,11 +1465,11 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 35, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": 60}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1478,46211 +1478,29 @@ interactions: Connection: - keep-alive Content-Length: - - '627' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":40.11289359561595,"attenuationLength":"0.007313","focalDistance":4.159172234411897,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":35,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 36, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.26605714917451,"attenuationLength":"0.007313","focalDistance":4.278005726823666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":36,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 37, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.420394838499945,"attenuationLength":"0.007313","focalDistance":4.396839219235434,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":37,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 38, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.57592021674359,"attenuationLength":"0.007313","focalDistance":4.515672711647203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":38,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 39, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.73264704645607,"attenuationLength":"0.007313","focalDistance":4.6345062040589715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":39,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 40, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.890589303647104,"attenuationLength":"0.007313","focalDistance":4.75333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":40,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 41, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.04976118194006,"attenuationLength":"0.007313","focalDistance":4.872173188882509,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":41,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 42, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.210177096823976,"attenuationLength":"0.007313","focalDistance":4.991006681294277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":42,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 43, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.37185169000562,"attenuationLength":"0.007313","focalDistance":5.109840173706045,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":43,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 44, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.534799833864454,"attenuationLength":"0.007313","focalDistance":5.228673666117814,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":44,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 45, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.69903663601322,"attenuationLength":"0.007313","focalDistance":5.347507158529583,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":45,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 46, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.86457744396724,"attenuationLength":"0.007313","focalDistance":5.466340650941351,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":46,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 47, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.031437849925325,"attenuationLength":"0.007313","focalDistance":5.585174143353119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":47,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 48, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.199633695665455,"attenuationLength":"0.007313","focalDistance":5.704007635764889,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":48,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 49, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.36918107755853,"attenuationLength":"0.007313","focalDistance":5.822841128176656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":49,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 50, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":50,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 51, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.712396139187035,"attenuationLength":"0.007313","focalDistance":6.060508113000194,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":51,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 52, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.8860973314721,"attenuationLength":"0.007313","focalDistance":6.179341605411962,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":52,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 53, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.061217095917826,"attenuationLength":"0.007313","focalDistance":6.298175097823731,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":53,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 54, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.23777288143572,"attenuationLength":"0.007313","focalDistance":6.417008590235499,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":54,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 55, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.41578242428536,"attenuationLength":"0.007313","focalDistance":6.535842082647267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":55,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 56, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.59526375401393,"attenuationLength":"0.007313","focalDistance":6.654675575059036,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":56,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 57, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.77623519954359,"attenuationLength":"0.007313","focalDistance":6.773509067470805,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":57,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 58, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.95871539541125,"attenuationLength":"0.007313","focalDistance":6.892342559882573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":58,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 59, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.1427232881649,"attenuationLength":"0.007313","focalDistance":7.011176052294341,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":59,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 60, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.32827814292137,"attenuationLength":"0.007313","focalDistance":7.13000954470611,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":60,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 61, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.51539955009015,"attenuationLength":"0.007313","focalDistance":7.2488430371178785,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":61,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 62, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.7041074322682,"attenuationLength":"0.007313","focalDistance":7.367676529529648,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":62,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 63, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.89442205131093,"attenuationLength":"0.007313","focalDistance":7.486510021941416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":63,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 64, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.086364015584536,"attenuationLength":"0.007313","focalDistance":7.605343514353184,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":64,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 65, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.279954287405175,"attenuationLength":"0.007313","focalDistance":7.724177006764952,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":65,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 66, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.47521419067061,"attenuationLength":"0.007313","focalDistance":7.84301049917672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":66,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 67, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.67216541869024,"attenuationLength":"0.007313","focalDistance":7.96184399158849,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":67,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 68, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.87083004221933,"attenuationLength":"0.007313","focalDistance":8.080677484000258,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":68,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 69, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.07123051770404,"attenuationLength":"0.007313","focalDistance":8.199510976412027,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":69,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 70, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.27338969574335,"attenuationLength":"0.007313","focalDistance":8.318344468823794,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":70,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 71, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.47733082977488,"attenuationLength":"0.007313","focalDistance":8.437177961235562,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":71,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 72, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.683077584991324,"attenuationLength":"0.007313","focalDistance":8.556011453647333,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":72,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 73, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.890654047494806,"attenuationLength":"0.007313","focalDistance":8.674844946059102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":73,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 74, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.10008473369656,"attenuationLength":"0.007313","focalDistance":8.793678438470868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":74,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 75, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":75,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 76, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.52460905256264,"attenuationLength":"0.007313","focalDistance":9.031345423294406,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":76,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 77, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.73975395778255,"attenuationLength":"0.007313","focalDistance":9.150178915706174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":77,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 78, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.956855652455744,"attenuationLength":"0.007313","focalDistance":9.269012408117943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":78,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 79, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.17594095467547,"attenuationLength":"0.007313","focalDistance":9.387845900529712,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":79,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 80, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.39703717484534,"attenuationLength":"0.007313","focalDistance":9.50667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":80,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 81, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.62017212702837,"attenuationLength":"0.007313","focalDistance":9.625512885353247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":81,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 82, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.845374140611405,"attenuationLength":"0.007313","focalDistance":9.744346377765018,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":82,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 83, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.07267207229514,"attenuationLength":"0.007313","focalDistance":9.863179870176786,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":83,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 84, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.30209531842059,"attenuationLength":"0.007313","focalDistance":9.982013362588553,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":84,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 85, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.53367382764289,"attenuationLength":"0.007313","focalDistance":10.100846855000322,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":85,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 86, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.76743811396399,"attenuationLength":"0.007313","focalDistance":10.21968034741209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":86,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 87, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.003419270136064,"attenuationLength":"0.007313","focalDistance":10.33851383982386,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":87,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 88, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.24164898144819,"attenuationLength":"0.007313","focalDistance":10.457347332235628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":88,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 89, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.482159539908906,"attenuationLength":"0.007313","focalDistance":10.576180824647397,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":89,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 90, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.724983858838094,"attenuationLength":"0.007313","focalDistance":10.695014317059165,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":90,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 91, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.97015548788211,"attenuationLength":"0.007313","focalDistance":10.813847809470932,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":91,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 92, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.21770862846641,"attenuationLength":"0.007313","focalDistance":10.932681301882702,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":92,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 93, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.467678149700646,"attenuationLength":"0.007313","focalDistance":11.051514794294471,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":93,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:03 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 94, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.720099604751866,"attenuationLength":"0.007313","focalDistance":11.170348286706238,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":94,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 95, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.975009247701855,"attenuationLength":"0.007313","focalDistance":11.289181779118007,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":95,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 96, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":52.2324440509055,"attenuationLength":"0.007313","focalDistance":11.408015271529777,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":96,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 97, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":52.49244172286747,"attenuationLength":"0.007313","focalDistance":11.526848763941546,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":97,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 98, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":52.75504072665565,"attenuationLength":"0.007313","focalDistance":11.645682256353313,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":98,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 99, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.02028029886988,"attenuationLength":"0.007313","focalDistance":11.764515748765081,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":99,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 100, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.28820046918587,"attenuationLength":"0.007313","focalDistance":11.88334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":100,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 101, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.55884208049473,"attenuationLength":"0.007313","focalDistance":12.002182733588619,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":101,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 102, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.83224680965924,"attenuationLength":"0.007313","focalDistance":12.121016226000387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":102,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 103, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.108457188909235,"attenuationLength":"0.007313","focalDistance":12.239849718412156,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":103,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 104, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.387516627898904,"attenuationLength":"0.007313","focalDistance":12.358683210823925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":104,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 105, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.66946943645035,"attenuationLength":"0.007313","focalDistance":12.477516703235692,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":105,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 106, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.95436084800816,"attenuationLength":"0.007313","focalDistance":12.596350195647462,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":106,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 107, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.24223704383117,"attenuationLength":"0.007313","focalDistance":12.71518368805923,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":107,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 108, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.53314517794869,"attenuationLength":"0.007313","focalDistance":12.834017180470997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":108,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 109, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.827133402909325,"attenuationLength":"0.007313","focalDistance":12.952850672882766,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":109,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 110, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":56.12425089635205,"attenuationLength":"0.007313","focalDistance":13.071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":110,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 111, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":56.424547888430396,"attenuationLength":"0.007313","focalDistance":13.190517657706303,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":111,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 112, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":56.728075690121614,"attenuationLength":"0.007313","focalDistance":13.309351150118072,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":112,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 113, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.03488672245465,"attenuationLength":"0.007313","focalDistance":13.42818464252984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":113,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 114, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.34503454669167,"attenuationLength":"0.007313","focalDistance":13.54701813494161,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":114,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 115, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.65857389549971,"attenuationLength":"0.007313","focalDistance":13.665851627353376,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":115,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 116, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.97556070515056,"attenuationLength":"0.007313","focalDistance":13.784685119765147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":116,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 117, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":58.29605214878869,"attenuationLength":"0.007313","focalDistance":13.903518612176915,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":117,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 118, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":58.62010667080868,"attenuationLength":"0.007313","focalDistance":14.022352104588682,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":118,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 119, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":58.947784022385704,"attenuationLength":"0.007313","focalDistance":14.141185597000451,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":119,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 120, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":59.279145298204384,"attenuationLength":"0.007313","focalDistance":14.26001908941222,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":120,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 121, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":59.614252974433285,"attenuationLength":"0.007313","focalDistance":14.378852581823988,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":121,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 122, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":59.95317094799499,"attenuationLength":"0.007313","focalDistance":14.497686074235757,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":122,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 123, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.29596457718315,"attenuationLength":"0.007313","focalDistance":14.616519566647524,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":123,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 124, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.64270072368114,"attenuationLength":"0.007313","focalDistance":14.735353059059296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":124,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 125, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":125,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 126, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":61.34827579466647,"attenuationLength":"0.007313","focalDistance":14.973020043882832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":126,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 127, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":61.70725635840967,"attenuationLength":"0.007313","focalDistance":15.0918535362946,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":127,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 128, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":62.07046281276721,"attenuationLength":"0.007313","focalDistance":15.210687028706367,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":128,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 129, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":62.43797021982327,"attenuationLength":"0.007313","focalDistance":15.329520521118136,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":129,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 130, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":62.80985542996359,"attenuationLength":"0.007313","focalDistance":15.448354013529904,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":130,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 131, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":63.186197135450755,"attenuationLength":"0.007313","focalDistance":15.567187505941673,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":131,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 132, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":63.56707592593728,"attenuationLength":"0.007313","focalDistance":15.68602099835344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":132,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 133, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":63.952574345998684,"attenuationLength":"0.007313","focalDistance":15.804854490765212,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":133,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 134, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":64.34277695477256,"attenuationLength":"0.007313","focalDistance":15.92368798317698,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":134,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 135, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":64.73777038779457,"attenuationLength":"0.007313","focalDistance":16.04252147558875,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":135,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 136, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.13764342112603,"attenuationLength":"0.007313","focalDistance":16.161354968000516,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":136,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 137, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.54248703787286,"attenuationLength":"0.007313","focalDistance":16.280188460412283,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":137,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 138, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.9523944972008,"attenuationLength":"0.007313","focalDistance":16.399021952824054,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":138,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 139, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":66.36746140595632,"attenuationLength":"0.007313","focalDistance":16.51785544523582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":139,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 140, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":66.78778579300958,"attenuationLength":"0.007313","focalDistance":16.636688937647587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":140,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 141, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":67.21346818644002,"attenuationLength":"0.007313","focalDistance":16.755522430059358,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":141,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 142, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":67.64461169369277,"attenuationLength":"0.007313","focalDistance":16.874355922471125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":142,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 143, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":68.08132208484001,"attenuationLength":"0.007313","focalDistance":16.993189414882895,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":143,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 144, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":68.52370787908836,"attenuationLength":"0.007313","focalDistance":17.112022907294666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":144,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 145, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":68.97188043468114,"attenuationLength":"0.007313","focalDistance":17.230856399706433,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":145,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 146, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":69.4259540423518,"attenuationLength":"0.007313","focalDistance":17.349689892118203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":146,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 147, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":69.88604602249325,"attenuationLength":"0.007313","focalDistance":17.46852338452997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":147,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 148, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":70.3522768262167,"attenuationLength":"0.007313","focalDistance":17.587356876941737,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":148,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 149, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":70.82477014048287,"attenuationLength":"0.007313","focalDistance":17.706190369353507,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":149,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 150, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":71.3036529974982,"attenuationLength":"0.007313","focalDistance":17.825023861765274,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":150,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 151, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":71.78905588857947,"attenuationLength":"0.007313","focalDistance":17.94385735417704,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":151,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 152, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":72.28111288270102,"attenuationLength":"0.007313","focalDistance":18.06269084658881,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":152,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 153, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":72.779961749951,"attenuationLength":"0.007313","focalDistance":18.181524339000582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":153,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 154, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":73.28574409013524,"attenuationLength":"0.007313","focalDistance":18.30035783141235,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":154,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 155, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":73.79860546678125,"attenuationLength":"0.007313","focalDistance":18.41919132382412,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":155,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 156, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":74.31869554680817,"attenuationLength":"0.007313","focalDistance":18.538024816235886,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":156,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 157, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":74.84616824614484,"attenuationLength":"0.007313","focalDistance":18.656858308647653,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":157,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 158, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":75.38118188159316,"attenuationLength":"0.007313","focalDistance":18.775691801059423,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":158,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 159, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":75.92389932925147,"attenuationLength":"0.007313","focalDistance":18.89452529347119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":159,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 160, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":76.47448818983152,"attenuationLength":"0.007313","focalDistance":19.01335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":160,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 161, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":77.03312096122056,"attenuationLength":"0.007313","focalDistance":19.132192278294728,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":161,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 162, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":77.59997521866279,"attenuationLength":"0.007313","focalDistance":19.251025770706494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":162,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 163, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":78.17523380295484,"attenuationLength":"0.007313","focalDistance":19.36985926311827,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":163,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 164, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":78.75908501707428,"attenuationLength":"0.007313","focalDistance":19.488692755530035,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":164,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 165, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":79.3517228316861,"attenuationLength":"0.007313","focalDistance":19.607526247941802,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":165,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 166, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":79.95334709999713,"attenuationLength":"0.007313","focalDistance":19.726359740353573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":166,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 167, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":80.56416378245933,"attenuationLength":"0.007313","focalDistance":19.84519323276534,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":167,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 168, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":81.1843851818523,"attenuationLength":"0.007313","focalDistance":19.964026725177106,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":168,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 169, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":81.8142301893086,"attenuationLength":"0.007313","focalDistance":20.082860217588877,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":169,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 170, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":82.45392454188085,"attenuationLength":"0.007313","focalDistance":20.201693710000644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":170,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 171, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":83.10370109228754,"attenuationLength":"0.007313","focalDistance":20.32052720241241,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":171,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 172, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":83.76380009151438,"attenuationLength":"0.007313","focalDistance":20.43936069482418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":172,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 173, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":84.43446948499181,"attenuationLength":"0.007313","focalDistance":20.55819418723595,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":173,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 174, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":85.1159652231157,"attenuationLength":"0.007313","focalDistance":20.67702767964772,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":174,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 175, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":85.80855158692857,"attenuationLength":"0.007313","focalDistance":20.79586117205949,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":175,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 176, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":86.51250152983101,"attenuationLength":"0.007313","focalDistance":20.914694664471256,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":176,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 177, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":87.22809703625273,"attenuationLength":"0.007313","focalDistance":21.033528156883026,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":177,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 178, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":87.95562949827212,"attenuationLength":"0.007313","focalDistance":21.152361649294793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":178,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 179, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":88.69540011124224,"attenuationLength":"0.007313","focalDistance":21.27119514170656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":179,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 180, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":89.44772028955083,"attenuationLength":"0.007313","focalDistance":21.39002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":180,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 181, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":90.21291210372027,"attenuationLength":"0.007313","focalDistance":21.508862126530097,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":181,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 182, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":90.99130874013683,"attenuationLength":"0.007313","focalDistance":21.627695618941864,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":182,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 183, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":91.78325498478733,"attenuationLength":"0.007313","focalDistance":21.746529111353638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":183,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 184, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":92.58910773247871,"attenuationLength":"0.007313","focalDistance":21.865362603765405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":184,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 185, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":93.40923652312125,"attenuationLength":"0.007313","focalDistance":21.984196096177172,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":185,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 186, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":94.24402410676765,"attenuationLength":"0.007313","focalDistance":22.103029588588942,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":186,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 187, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":95.09386703922343,"attenuationLength":"0.007313","focalDistance":22.22186308100071,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":187,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 188, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":95.95917631017616,"attenuationLength":"0.007313","focalDistance":22.340696573412476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":188,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 189, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":96.8403780059337,"attenuationLength":"0.007313","focalDistance":22.459530065824246,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":189,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 190, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":97.73791400901644,"attenuationLength":"0.007313","focalDistance":22.578363558236013,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":190,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 191, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":98.65224273701777,"attenuationLength":"0.007313","focalDistance":22.697197050647784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":191,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 192, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":99.5838399233275,"attenuationLength":"0.007313","focalDistance":22.816030543059554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":192,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 193, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":100.53319944251271,"attenuationLength":"0.007313","focalDistance":22.93486403547132,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":193,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 194, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":101.50083418336436,"attenuationLength":"0.007313","focalDistance":23.05369752788309,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":194,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 195, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":102.48727697285224,"attenuationLength":"0.007313","focalDistance":23.17253102029486,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":195,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 196, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":103.49308155448628,"attenuationLength":"0.007313","focalDistance":23.291364512706625,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":196,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 197, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":104.5188236248579,"attenuationLength":"0.007313","focalDistance":23.410198005118396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":197,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 198, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":105.56510193243889,"attenuationLength":"0.007313","focalDistance":23.529031497530163,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":198,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 199, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":106.63253944304438,"attenuationLength":"0.007313","focalDistance":23.64786498994193,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":199,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 200, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":107.72178457672646,"attenuationLength":"0.007313","focalDistance":23.7666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":200,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 2, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-23.325401899928792,"attenuationLength":"0.007313","focalDistance":89.12511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":2,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 3, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-52.178591939859366,"attenuationLength":"0.007313","focalDistance":59.41674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":3,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:04 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 4, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-136.76964159206418,"attenuationLength":"0.007313","focalDistance":44.56255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":4,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 5, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-5011.683299115805,"attenuationLength":"0.007313","focalDistance":35.650047723530555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":5,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 6, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":220.17606260308207,"attenuationLength":"0.007313","focalDistance":29.708373102942126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":6,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 7, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":126.12724796819347,"attenuationLength":"0.007313","focalDistance":25.46431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":7,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 8, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":95.5245621138332,"attenuationLength":"0.007313","focalDistance":22.281279827206596,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":8,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 9, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":80.35952387033105,"attenuationLength":"0.007313","focalDistance":19.805582068628084,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":9,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 10, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":71.30365299749822,"attenuationLength":"0.007313","focalDistance":17.825023861765278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":10,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 11, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.28427931793271,"attenuationLength":"0.007313","focalDistance":16.204567147059343,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":11,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 12, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":12,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 13, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.780080820525846,"attenuationLength":"0.007313","focalDistance":13.71155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":13,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 14, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.28360860767267,"attenuationLength":"0.007313","focalDistance":12.73215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":14,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 15, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.288200469185874,"attenuationLength":"0.007313","focalDistance":11.883349241176852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":15,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 16, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.65676240168851,"attenuationLength":"0.007313","focalDistance":11.140639913603298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":16,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 17, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.29803329476719,"attenuationLength":"0.007313","focalDistance":10.485308153979574,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":17,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 18, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.148908874163354,"attenuationLength":"0.007313","focalDistance":9.902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":18,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 19, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.16436025663314,"attenuationLength":"0.007313","focalDistance":9.381591506192251,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":19,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 20, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882639,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":20,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 21, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.56528551941808,"attenuationLength":"0.007313","focalDistance":8.488106600840608,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":21,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 22, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.90713671509984,"attenuationLength":"0.007313","focalDistance":8.102283573529672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":22,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 23, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.32225932021564,"attenuationLength":"0.007313","focalDistance":7.750010374680555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":23,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 24, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.79906261986619,"attenuationLength":"0.007313","focalDistance":7.4270932757355315,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":24,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 25, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.32827814292138,"attenuationLength":"0.007313","focalDistance":7.130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":25,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 26, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.902405815386416,"attenuationLength":"0.007313","focalDistance":6.85577840837126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":26,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 27, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.515311405724994,"attenuationLength":"0.007313","focalDistance":6.601860689542695,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":27,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 28, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.161929145947745,"attenuationLength":"0.007313","focalDistance":6.366079950630455,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":28,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 29, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.838038806992714,"attenuationLength":"0.007313","focalDistance":6.146559952332853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":29,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 30, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588426,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":30,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 31, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.265103721046444,"attenuationLength":"0.007313","focalDistance":5.750007697343637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":31,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 32, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.01050759462439,"attenuationLength":"0.007313","focalDistance":5.570319956801649,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":32,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 33, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.774119872763706,"attenuationLength":"0.007313","focalDistance":5.4015223823531135,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":33,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 34, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.554054630644146,"attenuationLength":"0.007313","focalDistance":5.242654076989787,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":34,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 35, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.348677696464215,"attenuationLength":"0.007313","focalDistance":5.092863960504364,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":35,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 36, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.15656599980219,"attenuationLength":"0.007313","focalDistance":4.951395517157021,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":36,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 37, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.976474550581216,"attenuationLength":"0.007313","focalDistance":4.817574016693317,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":37,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 38, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.80730942829118,"attenuationLength":"0.007313","focalDistance":4.6907957530961255,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":38,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 39, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.648105542775006,"attenuationLength":"0.007313","focalDistance":4.570518938914174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":39,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 40, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.49800821130249,"attenuationLength":"0.007313","focalDistance":4.456255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":40,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 41, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.356257809147,"attenuationLength":"0.007313","focalDistance":4.347566795552506,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":41,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 42, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.22217691163612,"attenuationLength":"0.007313","focalDistance":4.244053300420304,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":42,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 43, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.095159468293346,"attenuationLength":"0.007313","focalDistance":4.145354386457041,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":43,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 44, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.97466164400618,"attenuationLength":"0.007313","focalDistance":4.051141786764836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":44,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 45, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.860194035233036,"attenuationLength":"0.007313","focalDistance":3.961116413725617,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":45,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 46, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.75131502628382,"attenuationLength":"0.007313","focalDistance":3.8750051873402773,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":46,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 47, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.647625095502164,"attenuationLength":"0.007313","focalDistance":3.792558268460697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":47,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 48, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.54876191658683,"attenuationLength":"0.007313","focalDistance":3.7135466378677657,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":48,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 49, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.454396128451435,"attenuationLength":"0.007313","focalDistance":3.637759971788832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":49,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 50, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.5650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":50,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 51, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.277982590676956,"attenuationLength":"0.007313","focalDistance":3.4951027179931913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":51,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 52, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.19541027500935,"attenuationLength":"0.007313","focalDistance":3.42788920418563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":52,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 53, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.11628100582182,"attenuationLength":"0.007313","focalDistance":3.363212049389675,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":53,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 54, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.04038383230436,"attenuationLength":"0.007313","focalDistance":3.3009303447713476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":54,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 55, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.96752469164058,"attenuationLength":"0.007313","focalDistance":3.240913429411868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":55,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 56, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.89752475217474,"attenuationLength":"0.007313","focalDistance":3.1830399753152276,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":56,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 57, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.830218947881654,"attenuationLength":"0.007313","focalDistance":3.12719716873075,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":57,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 58, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.7654546788564,"attenuationLength":"0.007313","focalDistance":3.0732799761664267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":58,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 59, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.70309065628845,"attenuationLength":"0.007313","focalDistance":3.0211904850449622,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":59,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 60, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.970837310294213,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":60,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 61, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.585048687415764,"attenuationLength":"0.007313","focalDistance":2.922135059305783,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":61,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 62, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.529135996495,"attenuationLength":"0.007313","focalDistance":2.8750038486718186,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":62,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 63, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.4751525041305,"attenuationLength":"0.007313","focalDistance":2.829368866946869,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":63,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 64, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.423000056725556,"attenuationLength":"0.007313","focalDistance":2.7851599784008245,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":64,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 65, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.37258704811054,"attenuationLength":"0.007313","focalDistance":2.742311363348504,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":65,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 66, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.32382788255768,"attenuationLength":"0.007313","focalDistance":2.7007611911765568,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":66,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 67, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.2766424897917,"attenuationLength":"0.007313","focalDistance":2.6604513226515336,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":67,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 68, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.23095588621591,"attenuationLength":"0.007313","focalDistance":2.6213270384948935,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":68,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 69, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.186697777296,"attenuationLength":"0.007313","focalDistance":2.583336791560185,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":69,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 70, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.14380219666683,"attenuationLength":"0.007313","focalDistance":2.546431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":70,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 71, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.10220717806532,"attenuationLength":"0.007313","focalDistance":2.510566741093701,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":71,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 72, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.06185445665789,"attenuationLength":"0.007313","focalDistance":2.4756977585785105,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":72,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 73, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.022689196735115,"attenuationLength":"0.007313","focalDistance":2.4417840906527775,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":73,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 74, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.9846597430972,"attenuationLength":"0.007313","focalDistance":2.4087870083466587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":74,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 75, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.3766698482353705,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":75,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 76, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.911816191878906,"attenuationLength":"0.007313","focalDistance":2.3453978765480628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":76,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 77, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.87691273501992,"attenuationLength":"0.007313","focalDistance":2.3149381638656203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":77,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 78, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.842966000116036,"attenuationLength":"0.007313","focalDistance":2.285259469457087,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":78,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 79, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.80993718262206,"attenuationLength":"0.007313","focalDistance":2.256332134400668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":79,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 80, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.77778954854356,"attenuationLength":"0.007313","focalDistance":2.2281279827206597,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":80,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 81, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.74648829815311,"attenuationLength":"0.007313","focalDistance":2.2006202298475652,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":81,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 82, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.71600044033088,"attenuationLength":"0.007313","focalDistance":2.173783397776253,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":82,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 83, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.68629467657573,"attenuationLength":"0.007313","focalDistance":2.1475932363572623,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":83,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 84, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.65734129382953,"attenuationLength":"0.007313","focalDistance":2.122026650210152,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":84,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 85, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.62911206534324,"attenuationLength":"0.007313","focalDistance":2.0970616307959147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":85,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 86, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.60158015888938,"attenuationLength":"0.007313","focalDistance":2.0726771932285204,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":86,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 87, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.574720051693575,"attenuationLength":"0.007313","focalDistance":2.0488533174442844,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":87,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 88, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.54850745151831,"attenuationLength":"0.007313","focalDistance":2.025570893382418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":88,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 89, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.52291922338584,"attenuationLength":"0.007313","focalDistance":2.002811669861267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":89,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 90, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.4979333214758,"attenuationLength":"0.007313","focalDistance":1.9805582068628085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":90,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 91, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.47352872577608,"attenuationLength":"0.007313","focalDistance":1.9587938309632171,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":91,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 92, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.44968538310439,"attenuationLength":"0.007313","focalDistance":1.9375025936701387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":92,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 93, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.42638415215271,"attenuationLength":"0.007313","focalDistance":1.9166692324478791,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":93,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 94, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.40360675223803,"attenuationLength":"0.007313","focalDistance":1.8962791342303484,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":94,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 95, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.381335715471096,"attenuationLength":"0.007313","focalDistance":1.87631830123845,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":95,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 96, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.359554342080074,"attenuationLength":"0.007313","focalDistance":1.8567733189338829,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":96,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 97, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.338246658649005,"attenuationLength":"0.007313","focalDistance":1.8376313259551833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":97,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 98, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.31739737905157,"attenuationLength":"0.007313","focalDistance":1.818879985894416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":98,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 99, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.2969918678794,"attenuationLength":"0.007313","focalDistance":1.8005074607843714,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":99,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 100, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":100,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 101, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.257456659342935,"attenuationLength":"0.007313","focalDistance":1.7648538476995324,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":101,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 102, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.23830064695806,"attenuationLength":"0.007313","focalDistance":1.7475513589965956,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":102,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 103, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.21953571453978,"attenuationLength":"0.007313","focalDistance":1.730584840948085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":103,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 104, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.201150006950805,"attenuationLength":"0.007313","focalDistance":1.713944602092815,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":104,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 105, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.18313214342683,"attenuationLength":"0.007313","focalDistance":1.6976213201681216,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":105,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 106, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.1654711940846,"attenuationLength":"0.007313","focalDistance":1.6816060246948374,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":106,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 107, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.14815665781217,"attenuationLength":"0.007313","focalDistance":1.6658900805388108,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":107,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 108, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.13117844144766,"attenuationLength":"0.007313","focalDistance":1.6504651723856738,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":108,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 109, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.11452684015957,"attenuationLength":"0.007313","focalDistance":1.6353232900702088,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":109,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 110, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.09819251894869,"attenuationLength":"0.007313","focalDistance":1.620456714705934,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":110,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 111, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.08216649519735,"attenuationLength":"0.007313","focalDistance":1.6058580055644391,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":111,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:05 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 112, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.0664401221975,"attenuationLength":"0.007313","focalDistance":1.5915199876576138,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":112,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 113, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.05100507359433,"attenuationLength":"0.007313","focalDistance":1.5774357399792278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":113,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 114, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.03585332868637,"attenuationLength":"0.007313","focalDistance":1.563598584365375,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":114,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 115, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.02097715852769,"attenuationLength":"0.007313","focalDistance":1.550002074936111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":115,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 116, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.00636911278157,"attenuationLength":"0.007313","focalDistance":1.5366399880832133,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":116,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 117, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.99202200727869,"attenuationLength":"0.007313","focalDistance":1.5235063129713913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":117,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 118, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.97792891223611,"attenuationLength":"0.007313","focalDistance":1.5105952425224811,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":118,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 119, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.96408314109652,"attenuationLength":"0.007313","focalDistance":1.4979011648542249,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":119,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 120, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.950478239949966,"attenuationLength":"0.007313","focalDistance":1.4854186551471065,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":120,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 121, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.93710797750289,"attenuationLength":"0.007313","focalDistance":1.4731424679144858,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":121,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 122, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.923966335561744,"attenuationLength":"0.007313","focalDistance":1.4610675296528914,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":122,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 123, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.9110475000006,"attenuationLength":"0.007313","focalDistance":1.4491889318508355,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":123,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 124, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.89834585218438,"attenuationLength":"0.007313","focalDistance":1.4375019243359093,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":124,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 125, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":125,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 126, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.87357257421747,"attenuationLength":"0.007313","focalDistance":1.4146844334734345,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":126,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 127, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.86149061291759,"attenuationLength":"0.007313","focalDistance":1.4035451859657697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":127,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 128, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.849605162698005,"attenuationLength":"0.007313","focalDistance":1.3925799892004123,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":128,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 129, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.83791146790387,"attenuationLength":"0.007313","focalDistance":1.3817847954856803,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":129,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 130, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.826404925104335,"attenuationLength":"0.007313","focalDistance":1.371155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":130,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 131, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.81508107705016,"attenuationLength":"0.007313","focalDistance":1.360688844409563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":131,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 132, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.80393560691698,"attenuationLength":"0.007313","focalDistance":1.3503805955882784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":132,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 133, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.792964332818414,"attenuationLength":"0.007313","focalDistance":1.3402273580274644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":133,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 134, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.78216320257449,"attenuationLength":"0.007313","focalDistance":1.3302256613257668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":134,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 135, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.77152828872157,"attenuationLength":"0.007313","focalDistance":1.320372137908539,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":135,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 136, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.76105578375092,"attenuationLength":"0.007313","focalDistance":1.3106635192474467,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":136,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 137, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.750741995563736,"attenuationLength":"0.007313","focalDistance":1.3010966322456405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":137,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 138, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.74058334313128,"attenuationLength":"0.007313","focalDistance":1.2916683957800925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":138,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 139, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.730576352349345,"attenuationLength":"0.007313","focalDistance":1.2823758173931852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":139,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 140, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.72071765207712,"attenuationLength":"0.007313","focalDistance":1.273215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":140,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 141, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.711003970350724,"attenuationLength":"0.007313","focalDistance":1.264186089486899,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":141,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 142, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.70143213076272,"attenuationLength":"0.007313","focalDistance":1.2552833705468505,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":142,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 143, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.691999048999,"attenuationLength":"0.007313","focalDistance":1.246505165158411,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":143,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 144, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.68270172952528,"attenuationLength":"0.007313","focalDistance":1.2378488792892552,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":144,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 145, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.673537262415536,"attenuationLength":"0.007313","focalDistance":1.2293119904665706,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":145,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 146, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.66450282031554,"attenuationLength":"0.007313","focalDistance":1.2208920453263887,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":146,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 147, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.655595655534654,"attenuationLength":"0.007313","focalDistance":1.2125866572629438,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":147,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 148, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.64681309725971,"attenuationLength":"0.007313","focalDistance":1.2043935041733294,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":148,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 149, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.638152548884975,"attenuationLength":"0.007313","focalDistance":1.1963103262929715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":149,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 150, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.629611485452706,"attenuationLength":"0.007313","focalDistance":1.1883349241176853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":150,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 151, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.62118745119878,"attenuationLength":"0.007313","focalDistance":1.1804651564082964,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":151,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 152, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.612878057198685,"attenuationLength":"0.007313","focalDistance":1.1726989382740314,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":152,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 153, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.60468097910882,"attenuationLength":"0.007313","focalDistance":1.165034239331064,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":153,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 154, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.59659395499888,"attenuationLength":"0.007313","focalDistance":1.1574690819328102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":154,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 155, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.5886147832709,"attenuationLength":"0.007313","focalDistance":1.1500015394687275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":155,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 156, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.580741320661026,"attenuationLength":"0.007313","focalDistance":1.1426297347285435,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":156,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 157, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.57297148032021,"attenuationLength":"0.007313","focalDistance":1.1353518383289984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":157,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 158, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.56530322997014,"attenuationLength":"0.007313","focalDistance":1.128166067200334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":158,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 159, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.557734590131055,"attenuationLength":"0.007313","focalDistance":1.1210706831298916,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":159,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 160, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.55026363241819,"attenuationLength":"0.007313","focalDistance":1.1140639913603299,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":160,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 161, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.542888477903745,"attenuationLength":"0.007313","focalDistance":1.1071443392400793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":161,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 162, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.53560729554145,"attenuationLength":"0.007313","focalDistance":1.1003101149237826,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":162,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 163, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.52841830065101,"attenuationLength":"0.007313","focalDistance":1.093559746120569,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":163,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 164, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.52131975345973,"attenuationLength":"0.007313","focalDistance":1.0868916988881265,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":164,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 165, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.514309957698806,"attenuationLength":"0.007313","focalDistance":1.0803044764706229,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":165,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 166, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.50738725925205,"attenuationLength":"0.007313","focalDistance":1.0737966181786311,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":166,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 167, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.500550044854506,"attenuationLength":"0.007313","focalDistance":1.067366698309298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":167,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 168, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.493796740839166,"attenuationLength":"0.007313","focalDistance":1.061013325105076,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":168,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 169, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.48712581192938,"attenuationLength":"0.007313","focalDistance":1.0547351397494247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":169,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 170, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.48053576007531,"attenuationLength":"0.007313","focalDistance":1.0485308153979573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":170,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 171, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.47402512333238,"attenuationLength":"0.007313","focalDistance":1.0423990562435834,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":171,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 172, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.46759247478006,"attenuationLength":"0.007313","focalDistance":1.0363385966142602,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":172,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 173, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.46123642147926,"attenuationLength":"0.007313","focalDistance":1.030348200102039,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":173,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 174, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.454955603466765,"attenuationLength":"0.007313","focalDistance":1.0244266587221422,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":174,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 175, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.44874869278512,"attenuationLength":"0.007313","focalDistance":1.018572792100873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":175,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 176, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.44261439254663,"attenuationLength":"0.007313","focalDistance":1.012785446691209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":176,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 177, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.43655143602999,"attenuationLength":"0.007313","focalDistance":1.0070634950149873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":177,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 178, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.43055858580821,"attenuationLength":"0.007313","focalDistance":1.0014058349306334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":178,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 179, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.424634632906674,"attenuationLength":"0.007313","focalDistance":0.9958113889254344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":179,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 180, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.41877839599005,"attenuationLength":"0.007313","focalDistance":0.9902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":180,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 181, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.41298872057695,"attenuationLength":"0.007313","focalDistance":0.9848079481638273,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":181,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 182, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.40726447828112,"attenuationLength":"0.007313","focalDistance":0.9793969154816086,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":182,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 183, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.40160456607837,"attenuationLength":"0.007313","focalDistance":0.9740450197685943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":183,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 184, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.39600790559795,"attenuationLength":"0.007313","focalDistance":0.9687512968350693,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":184,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 185, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.3904734424376,"attenuationLength":"0.007313","focalDistance":0.9635148033386636,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":185,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 186, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.38500014550132,"attenuationLength":"0.007313","focalDistance":0.9583346162239396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":186,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 187, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.379587006358975,"attenuationLength":"0.007313","focalDistance":0.9532098321799612,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":187,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 188, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.37423303862684,"attenuationLength":"0.007313","focalDistance":0.9481395671151742,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":188,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 189, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.36893727736845,"attenuationLength":"0.007313","focalDistance":0.9431229556489563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":189,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 190, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.363698778514824,"attenuationLength":"0.007313","focalDistance":0.938159150619225,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":190,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 191, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.358516618303376,"attenuationLength":"0.007313","focalDistance":0.9332473226055118,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":191,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 192, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.353389892734896,"attenuationLength":"0.007313","focalDistance":0.9283866594669414,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":192,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 193, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.348317717047806,"attenuationLength":"0.007313","focalDistance":0.9235763658945739,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":193,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 194, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.34329922520914,"attenuationLength":"0.007313","focalDistance":0.9188156629775917,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":194,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 195, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.33833356942159,"attenuationLength":"0.007313","focalDistance":0.9141037877828347,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":195,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 196, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.33341991964607,"attenuationLength":"0.007313","focalDistance":0.909439992947208,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":196,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 197, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.32855746313913,"attenuationLength":"0.007313","focalDistance":0.9048235462825014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":197,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 198, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.32374540400484,"attenuationLength":"0.007313","focalDistance":0.9002537303921857,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":198,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 199, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.31898296276049,"attenuationLength":"0.007313","focalDistance":0.8957298422997626,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":199,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 200, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.31426937591563,"attenuationLength":"0.007313","focalDistance":0.8912511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":200,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 1}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":1,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 2}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":2,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 3}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":3,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 4}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":4,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 5}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":5,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 6}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":6,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 7}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":7,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 8}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":8,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 9}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":9,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 10}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":10,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 11}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":11,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 12}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":12,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 13}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":13,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 14}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":14,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 15}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":15,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 16}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":16,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:06 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 17}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":17,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 18}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":18,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 19}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":19,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 20}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":20,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 21}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":21,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 22}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":22,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 23}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":23,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 24}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":24,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 25}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":25,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 26}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":26,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 27}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":27,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 28}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":28,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 29}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":29,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 30}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":30,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 31}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":31,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 32}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":32,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 33}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":33,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 34}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":34,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 35}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":35,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 36}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":36,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 37}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":37,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 38}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":38,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 39}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":39,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 40}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":40,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 41}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":41,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 42}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":42,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 43}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":43,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 44}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":44,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 45}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":45,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 46}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":46,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 47}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":47,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 48}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":48,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 49}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":49,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 50}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":50,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 51}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":51,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 52}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":52,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 53}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":53,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 54}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":54,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 55}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":55,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 56}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":56,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 57}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":57,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 58}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":58,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 59}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":59,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 60}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":60,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 61}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":61,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 62}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":62,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 63}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":63,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 64}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":64,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 65}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":65,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 66}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":66,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 67}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":67,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 68}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":68,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 69}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":69,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 70}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":70,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 71}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":71,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 72}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":72,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 73}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":73,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 74}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":74,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 75}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":75,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 76}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":76,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 77}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":77,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 78}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":78,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 79}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":79,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 80}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":80,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 81}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":81,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 82}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":82,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 83}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":83,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 84}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":84,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 85}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":85,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 86}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":86,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 87}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":87,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 88}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":88,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 89}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":89,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 90}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":90,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 91}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":91,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 92}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":92,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 93}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":93,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 94}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":94,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 95}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":95,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 96}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":96,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 97}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":97,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 98}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":98,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 99}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":99,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 100}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":100,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 101}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":101,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 102}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":102,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 103}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":103,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 104}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":104,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 105}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":105,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 106}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":106,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 107}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":107,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 108}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":108,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 109}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":109,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 110}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":110,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 111}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":111,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 112}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":112,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 113}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":113,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 114}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":114,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 115}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":115,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 116}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":116,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 117}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":117,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 118}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":118,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 119}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":119,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:07 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 120}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":120,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 121}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":121,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 122}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":122,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 123}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":123,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 124}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":124,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 125}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":125,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 126}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":126,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 127}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":127,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 128}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":128,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 129}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":129,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 130}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":130,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 131}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":131,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 132}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":132,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 133}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":133,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 134}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":134,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 135}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":135,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 136}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":136,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 137}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":137,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 138}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":138,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 139}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":139,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 140}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":140,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 141}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":141,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 142}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":142,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 143}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":143,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 144}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":144,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 145}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":145,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 146}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":146,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 147}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":147,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 148}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":148,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 149}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":149,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 150}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":150,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 151}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":151,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 152}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":152,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 153}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":153,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 154}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":154,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 155}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":155,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 156}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":156,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 157}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":157,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 158}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":158,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 159}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":159,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 160}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":160,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 161}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":161,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 162}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":162,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 163}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":163,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 164}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":164,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 165}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":165,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 166}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":166,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 167}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":167,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 168}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":168,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 169}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":169,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 170}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":170,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 171}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":171,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 172}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":172,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 173}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":173,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 174}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":174,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 175}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":175,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 176}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":176,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 177}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":177,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 178}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":178,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 179}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":179,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 180}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":180,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 181}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":181,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 182}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":182,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 183}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":183,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 184}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":184,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 185}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":185,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 186}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":186,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 187}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":187,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 188}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":188,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 189}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":189,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 190}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":190,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 191}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":191,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 192}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":192,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 193}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":193,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 194}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":194,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 195}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":195,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 196}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":196,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 197}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":197,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 198}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":198,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 199}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":199,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 200}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":200,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":35.51923374558695,"attenuationLength":"0.007313","focalDistance":0.1188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 2, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":35.63927340825541,"attenuationLength":"0.007313","focalDistance":0.237666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":2,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 3, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":35.76012718666786,"attenuationLength":"0.007313","focalDistance":0.35650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":3,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 4, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":35.88180339107272,"attenuationLength":"0.007313","focalDistance":0.475333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":4,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 5, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.004310445209285,"attenuationLength":"0.007313","focalDistance":0.5941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":5,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 6, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.1276568882517,"attenuationLength":"0.007313","focalDistance":0.7130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":6,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 7, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.251851376793134,"attenuationLength":"0.007313","focalDistance":0.8318344468823795,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":7,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 8, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.37690268687094,"attenuationLength":"0.007313","focalDistance":0.950667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":8,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 9, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '626' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.50281971603393,"attenuationLength":"0.007313","focalDistance":1.0695014317059166,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":9,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 10, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.6296114854527,"attenuationLength":"0.007313","focalDistance":1.188334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":10,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 11, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.757287142074105,"attenuationLength":"0.007313","focalDistance":1.3071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":11,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 12, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":12,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 13, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.015327346837985,"attenuationLength":"0.007313","focalDistance":1.5448354013529906,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":13,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 14, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.14571083778542,"attenuationLength":"0.007313","focalDistance":1.663668893764759,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":14,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 15, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":15,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 16, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.40925296179211,"attenuationLength":"0.007313","focalDistance":1.901335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":16,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 17, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.54243135407859,"attenuationLength":"0.007313","focalDistance":2.0201693710000646,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":17,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 18, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.676561374688426,"attenuationLength":"0.007313","focalDistance":2.139002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":18,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 19, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.81165326000676,"attenuationLength":"0.007313","focalDistance":2.2578363558236014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":19,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 20, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.37666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":20,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 21, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.08476430967676,"attenuationLength":"0.007313","focalDistance":2.4955033406471383,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":21,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 22, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.22280469420561,"attenuationLength":"0.007313","focalDistance":2.614336833058907,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":22,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 23, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.361849389293575,"attenuationLength":"0.007313","focalDistance":2.7331703254706756,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":23,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 24, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.5019093952244,"attenuationLength":"0.007313","focalDistance":2.8520038178824443,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":24,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 25, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.9708373102942125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":25,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:08 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 26, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.785120149904,"attenuationLength":"0.007313","focalDistance":3.089670802705981,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":26,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '487' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 27, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.928293717335485,"attenuationLength":"0.007313","focalDistance":3.2085042951177494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":27,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 28, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.0725282391041,"attenuationLength":"0.007313","focalDistance":3.327337787529518,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":28,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 29, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.21783555199883,"attenuationLength":"0.007313","focalDistance":3.4461712799412867,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":29,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 30, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.565004772353055,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":30,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 31, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.51171678531951,"attenuationLength":"0.007313","focalDistance":3.683838264764824,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":31,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 32, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.66031527632802,"attenuationLength":"0.007313","focalDistance":3.802671757176592,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":32,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 33, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.81003570647585,"attenuationLength":"0.007313","focalDistance":3.92150524958836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":33,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 34, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.9608908301048,"attenuationLength":"0.007313","focalDistance":4.040338742000129,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":34,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 35, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.11289359561595,"attenuationLength":"0.007313","focalDistance":4.159172234411897,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":35,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 36, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.26605714917451,"attenuationLength":"0.007313","focalDistance":4.278005726823666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":36,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 37, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.420394838499945,"attenuationLength":"0.007313","focalDistance":4.396839219235434,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":37,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 38, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.57592021674359,"attenuationLength":"0.007313","focalDistance":4.515672711647203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":38,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 39, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.73264704645607,"attenuationLength":"0.007313","focalDistance":4.6345062040589715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":39,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 40, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.890589303647104,"attenuationLength":"0.007313","focalDistance":4.75333969647074,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":40,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 41, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.04976118194006,"attenuationLength":"0.007313","focalDistance":4.872173188882509,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":41,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 42, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.210177096823976,"attenuationLength":"0.007313","focalDistance":4.991006681294277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":42,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 43, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.37185169000562,"attenuationLength":"0.007313","focalDistance":5.109840173706045,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":43,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 44, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.534799833864454,"attenuationLength":"0.007313","focalDistance":5.228673666117814,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":44,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 45, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.69903663601322,"attenuationLength":"0.007313","focalDistance":5.347507158529583,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":45,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 46, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.86457744396724,"attenuationLength":"0.007313","focalDistance":5.466340650941351,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":46,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 47, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.031437849925325,"attenuationLength":"0.007313","focalDistance":5.585174143353119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":47,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 48, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.199633695665455,"attenuationLength":"0.007313","focalDistance":5.704007635764889,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":48,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 49, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.36918107755853,"attenuationLength":"0.007313","focalDistance":5.822841128176656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":49,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 50, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":50,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 51, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.712396139187035,"attenuationLength":"0.007313","focalDistance":6.060508113000194,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":51,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 52, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.8860973314721,"attenuationLength":"0.007313","focalDistance":6.179341605411962,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":52,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 53, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.061217095917826,"attenuationLength":"0.007313","focalDistance":6.298175097823731,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":53,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 54, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.23777288143572,"attenuationLength":"0.007313","focalDistance":6.417008590235499,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":54,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 55, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.41578242428536,"attenuationLength":"0.007313","focalDistance":6.535842082647267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":55,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 56, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.59526375401393,"attenuationLength":"0.007313","focalDistance":6.654675575059036,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":56,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 57, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.77623519954359,"attenuationLength":"0.007313","focalDistance":6.773509067470805,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":57,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 58, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.95871539541125,"attenuationLength":"0.007313","focalDistance":6.892342559882573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":58,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 59, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.1427232881649,"attenuationLength":"0.007313","focalDistance":7.011176052294341,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":59,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 60, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.32827814292137,"attenuationLength":"0.007313","focalDistance":7.13000954470611,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":60,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 61, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.51539955009015,"attenuationLength":"0.007313","focalDistance":7.2488430371178785,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":61,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 62, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.7041074322682,"attenuationLength":"0.007313","focalDistance":7.367676529529648,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":62,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 63, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.89442205131093,"attenuationLength":"0.007313","focalDistance":7.486510021941416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":63,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 64, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.086364015584536,"attenuationLength":"0.007313","focalDistance":7.605343514353184,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":64,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 65, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.279954287405175,"attenuationLength":"0.007313","focalDistance":7.724177006764952,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":65,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 66, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.47521419067061,"attenuationLength":"0.007313","focalDistance":7.84301049917672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":66,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 67, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.67216541869024,"attenuationLength":"0.007313","focalDistance":7.96184399158849,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":67,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 68, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.87083004221933,"attenuationLength":"0.007313","focalDistance":8.080677484000258,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":68,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 69, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.07123051770404,"attenuationLength":"0.007313","focalDistance":8.199510976412027,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":69,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 70, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.27338969574335,"attenuationLength":"0.007313","focalDistance":8.318344468823794,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":70,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 71, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.47733082977488,"attenuationLength":"0.007313","focalDistance":8.437177961235562,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":71,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 72, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.683077584991324,"attenuationLength":"0.007313","focalDistance":8.556011453647333,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":72,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 73, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.890654047494806,"attenuationLength":"0.007313","focalDistance":8.674844946059102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":73,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 74, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.10008473369656,"attenuationLength":"0.007313","focalDistance":8.793678438470868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":74,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 75, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":75,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 76, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.52460905256264,"attenuationLength":"0.007313","focalDistance":9.031345423294406,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":76,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 77, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.73975395778255,"attenuationLength":"0.007313","focalDistance":9.150178915706174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":77,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 78, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.956855652455744,"attenuationLength":"0.007313","focalDistance":9.269012408117943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":78,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 79, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.17594095467547,"attenuationLength":"0.007313","focalDistance":9.387845900529712,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":79,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 80, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.39703717484534,"attenuationLength":"0.007313","focalDistance":9.50667939294148,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":80,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 81, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.62017212702837,"attenuationLength":"0.007313","focalDistance":9.625512885353247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":81,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 82, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.845374140611405,"attenuationLength":"0.007313","focalDistance":9.744346377765018,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":82,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 83, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.07267207229514,"attenuationLength":"0.007313","focalDistance":9.863179870176786,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":83,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 84, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.30209531842059,"attenuationLength":"0.007313","focalDistance":9.982013362588553,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":84,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 85, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.53367382764289,"attenuationLength":"0.007313","focalDistance":10.100846855000322,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":85,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 86, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.76743811396399,"attenuationLength":"0.007313","focalDistance":10.21968034741209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":86,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 87, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.003419270136064,"attenuationLength":"0.007313","focalDistance":10.33851383982386,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":87,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 88, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.24164898144819,"attenuationLength":"0.007313","focalDistance":10.457347332235628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":88,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 89, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.482159539908906,"attenuationLength":"0.007313","focalDistance":10.576180824647397,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":89,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 90, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.724983858838094,"attenuationLength":"0.007313","focalDistance":10.695014317059165,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":90,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 91, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.97015548788211,"attenuationLength":"0.007313","focalDistance":10.813847809470932,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":91,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 92, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.21770862846641,"attenuationLength":"0.007313","focalDistance":10.932681301882702,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":92,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 93, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.467678149700646,"attenuationLength":"0.007313","focalDistance":11.051514794294471,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":93,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 94, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.720099604751866,"attenuationLength":"0.007313","focalDistance":11.170348286706238,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":94,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 95, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.975009247701855,"attenuationLength":"0.007313","focalDistance":11.289181779118007,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":95,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 96, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":52.2324440509055,"attenuationLength":"0.007313","focalDistance":11.408015271529777,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":96,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 97, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":52.49244172286747,"attenuationLength":"0.007313","focalDistance":11.526848763941546,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":97,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 98, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":52.75504072665565,"attenuationLength":"0.007313","focalDistance":11.645682256353313,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":98,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 99, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.02028029886988,"attenuationLength":"0.007313","focalDistance":11.764515748765081,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":99,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 100, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.28820046918587,"attenuationLength":"0.007313","focalDistance":11.88334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":100,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 101, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.55884208049473,"attenuationLength":"0.007313","focalDistance":12.002182733588619,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":101,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 102, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.83224680965924,"attenuationLength":"0.007313","focalDistance":12.121016226000387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":102,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 103, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.108457188909235,"attenuationLength":"0.007313","focalDistance":12.239849718412156,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":103,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 104, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.387516627898904,"attenuationLength":"0.007313","focalDistance":12.358683210823925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":104,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 105, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.66946943645035,"attenuationLength":"0.007313","focalDistance":12.477516703235692,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":105,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 106, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":54.95436084800816,"attenuationLength":"0.007313","focalDistance":12.596350195647462,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":106,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 107, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.24223704383117,"attenuationLength":"0.007313","focalDistance":12.71518368805923,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":107,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 108, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.53314517794869,"attenuationLength":"0.007313","focalDistance":12.834017180470997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":108,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 109, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.827133402909325,"attenuationLength":"0.007313","focalDistance":12.952850672882766,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":109,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 110, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":56.12425089635205,"attenuationLength":"0.007313","focalDistance":13.071684165294535,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":110,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 111, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":56.424547888430396,"attenuationLength":"0.007313","focalDistance":13.190517657706303,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":111,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 112, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":56.728075690121614,"attenuationLength":"0.007313","focalDistance":13.309351150118072,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":112,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 113, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.03488672245465,"attenuationLength":"0.007313","focalDistance":13.42818464252984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":113,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 114, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.34503454669167,"attenuationLength":"0.007313","focalDistance":13.54701813494161,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":114,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 115, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.65857389549971,"attenuationLength":"0.007313","focalDistance":13.665851627353376,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":115,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 116, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.97556070515056,"attenuationLength":"0.007313","focalDistance":13.784685119765147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":116,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 117, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":58.29605214878869,"attenuationLength":"0.007313","focalDistance":13.903518612176915,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":117,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 118, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":58.62010667080868,"attenuationLength":"0.007313","focalDistance":14.022352104588682,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":118,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 119, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":58.947784022385704,"attenuationLength":"0.007313","focalDistance":14.141185597000451,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":119,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 120, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":59.279145298204384,"attenuationLength":"0.007313","focalDistance":14.26001908941222,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":120,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 121, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":59.614252974433285,"attenuationLength":"0.007313","focalDistance":14.378852581823988,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":121,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 122, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":59.95317094799499,"attenuationLength":"0.007313","focalDistance":14.497686074235757,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":122,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 123, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.29596457718315,"attenuationLength":"0.007313","focalDistance":14.616519566647524,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":123,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 124, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.64270072368114,"attenuationLength":"0.007313","focalDistance":14.735353059059296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":124,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 125, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":125,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 126, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":61.34827579466647,"attenuationLength":"0.007313","focalDistance":14.973020043882832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":126,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 127, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":61.70725635840967,"attenuationLength":"0.007313","focalDistance":15.0918535362946,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":127,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 128, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":62.07046281276721,"attenuationLength":"0.007313","focalDistance":15.210687028706367,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":128,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 129, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":62.43797021982327,"attenuationLength":"0.007313","focalDistance":15.329520521118136,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":129,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:09 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 130, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":62.80985542996359,"attenuationLength":"0.007313","focalDistance":15.448354013529904,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":130,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 131, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":63.186197135450755,"attenuationLength":"0.007313","focalDistance":15.567187505941673,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":131,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 132, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":63.56707592593728,"attenuationLength":"0.007313","focalDistance":15.68602099835344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":132,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 133, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":63.952574345998684,"attenuationLength":"0.007313","focalDistance":15.804854490765212,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":133,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 134, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":64.34277695477256,"attenuationLength":"0.007313","focalDistance":15.92368798317698,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":134,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 135, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":64.73777038779457,"attenuationLength":"0.007313","focalDistance":16.04252147558875,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":135,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 136, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.13764342112603,"attenuationLength":"0.007313","focalDistance":16.161354968000516,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":136,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 137, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.54248703787286,"attenuationLength":"0.007313","focalDistance":16.280188460412283,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":137,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 138, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.9523944972008,"attenuationLength":"0.007313","focalDistance":16.399021952824054,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":138,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 139, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":66.36746140595632,"attenuationLength":"0.007313","focalDistance":16.51785544523582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":139,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 140, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":66.78778579300958,"attenuationLength":"0.007313","focalDistance":16.636688937647587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":140,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 141, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":67.21346818644002,"attenuationLength":"0.007313","focalDistance":16.755522430059358,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":141,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 142, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":67.64461169369277,"attenuationLength":"0.007313","focalDistance":16.874355922471125,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":142,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 143, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":68.08132208484001,"attenuationLength":"0.007313","focalDistance":16.993189414882895,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":143,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 144, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":68.52370787908836,"attenuationLength":"0.007313","focalDistance":17.112022907294666,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":144,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 145, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":68.97188043468114,"attenuationLength":"0.007313","focalDistance":17.230856399706433,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":145,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 146, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":69.4259540423518,"attenuationLength":"0.007313","focalDistance":17.349689892118203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":146,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 147, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":69.88604602249325,"attenuationLength":"0.007313","focalDistance":17.46852338452997,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":147,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 148, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":70.3522768262167,"attenuationLength":"0.007313","focalDistance":17.587356876941737,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":148,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 149, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":70.82477014048287,"attenuationLength":"0.007313","focalDistance":17.706190369353507,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":149,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 150, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":71.3036529974982,"attenuationLength":"0.007313","focalDistance":17.825023861765274,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":150,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 151, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":71.78905588857947,"attenuationLength":"0.007313","focalDistance":17.94385735417704,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":151,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 152, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":72.28111288270102,"attenuationLength":"0.007313","focalDistance":18.06269084658881,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":152,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 153, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":72.779961749951,"attenuationLength":"0.007313","focalDistance":18.181524339000582,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":153,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 154, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":73.28574409013524,"attenuationLength":"0.007313","focalDistance":18.30035783141235,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":154,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 155, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":73.79860546678125,"attenuationLength":"0.007313","focalDistance":18.41919132382412,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":155,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 156, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":74.31869554680817,"attenuationLength":"0.007313","focalDistance":18.538024816235886,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":156,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 157, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":74.84616824614484,"attenuationLength":"0.007313","focalDistance":18.656858308647653,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":157,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 158, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":75.38118188159316,"attenuationLength":"0.007313","focalDistance":18.775691801059423,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":158,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 159, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":75.92389932925147,"attenuationLength":"0.007313","focalDistance":18.89452529347119,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":159,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 160, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":76.47448818983152,"attenuationLength":"0.007313","focalDistance":19.01335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":160,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 161, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":77.03312096122056,"attenuationLength":"0.007313","focalDistance":19.132192278294728,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":161,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 162, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":77.59997521866279,"attenuationLength":"0.007313","focalDistance":19.251025770706494,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":162,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 163, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":78.17523380295484,"attenuationLength":"0.007313","focalDistance":19.36985926311827,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":163,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 164, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":78.75908501707428,"attenuationLength":"0.007313","focalDistance":19.488692755530035,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":164,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 165, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":79.3517228316861,"attenuationLength":"0.007313","focalDistance":19.607526247941802,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":165,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 166, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":79.95334709999713,"attenuationLength":"0.007313","focalDistance":19.726359740353573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":166,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 167, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":80.56416378245933,"attenuationLength":"0.007313","focalDistance":19.84519323276534,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":167,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 168, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":81.1843851818523,"attenuationLength":"0.007313","focalDistance":19.964026725177106,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":168,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 169, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":81.8142301893086,"attenuationLength":"0.007313","focalDistance":20.082860217588877,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":169,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 170, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":82.45392454188085,"attenuationLength":"0.007313","focalDistance":20.201693710000644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":170,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 171, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":83.10370109228754,"attenuationLength":"0.007313","focalDistance":20.32052720241241,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":171,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 172, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":83.76380009151438,"attenuationLength":"0.007313","focalDistance":20.43936069482418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":172,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 173, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":84.43446948499181,"attenuationLength":"0.007313","focalDistance":20.55819418723595,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":173,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 174, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":85.1159652231157,"attenuationLength":"0.007313","focalDistance":20.67702767964772,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":174,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 175, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":85.80855158692857,"attenuationLength":"0.007313","focalDistance":20.79586117205949,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":175,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 176, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":86.51250152983101,"attenuationLength":"0.007313","focalDistance":20.914694664471256,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":176,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 177, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":87.22809703625273,"attenuationLength":"0.007313","focalDistance":21.033528156883026,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":177,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 178, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":87.95562949827212,"attenuationLength":"0.007313","focalDistance":21.152361649294793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":178,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 179, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":88.69540011124224,"attenuationLength":"0.007313","focalDistance":21.27119514170656,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":179,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 180, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":89.44772028955083,"attenuationLength":"0.007313","focalDistance":21.39002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":180,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 181, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":90.21291210372027,"attenuationLength":"0.007313","focalDistance":21.508862126530097,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":181,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 182, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":90.99130874013683,"attenuationLength":"0.007313","focalDistance":21.627695618941864,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":182,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 183, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":91.78325498478733,"attenuationLength":"0.007313","focalDistance":21.746529111353638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":183,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 184, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":92.58910773247871,"attenuationLength":"0.007313","focalDistance":21.865362603765405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":184,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 185, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":93.40923652312125,"attenuationLength":"0.007313","focalDistance":21.984196096177172,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":185,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 186, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":94.24402410676765,"attenuationLength":"0.007313","focalDistance":22.103029588588942,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":186,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 187, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":95.09386703922343,"attenuationLength":"0.007313","focalDistance":22.22186308100071,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":187,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 188, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":95.95917631017616,"attenuationLength":"0.007313","focalDistance":22.340696573412476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":188,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 189, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":96.8403780059337,"attenuationLength":"0.007313","focalDistance":22.459530065824246,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":189,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 190, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":97.73791400901644,"attenuationLength":"0.007313","focalDistance":22.578363558236013,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":190,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 191, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":98.65224273701777,"attenuationLength":"0.007313","focalDistance":22.697197050647784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":191,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 192, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":99.5838399233275,"attenuationLength":"0.007313","focalDistance":22.816030543059554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":192,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 193, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":100.53319944251271,"attenuationLength":"0.007313","focalDistance":22.93486403547132,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":193,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 194, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":101.50083418336436,"attenuationLength":"0.007313","focalDistance":23.05369752788309,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":194,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 195, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":102.48727697285224,"attenuationLength":"0.007313","focalDistance":23.17253102029486,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":195,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 196, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":103.49308155448628,"attenuationLength":"0.007313","focalDistance":23.291364512706625,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":196,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 197, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":104.5188236248579,"attenuationLength":"0.007313","focalDistance":23.410198005118396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":197,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 198, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":105.56510193243889,"attenuationLength":"0.007313","focalDistance":23.529031497530163,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":198,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 199, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":106.63253944304438,"attenuationLength":"0.007313","focalDistance":23.64786498994193,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":199,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 200, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":107.72178457672646,"attenuationLength":"0.007313","focalDistance":23.7666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":200,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 2, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-23.325401899928792,"attenuationLength":"0.007313","focalDistance":89.12511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":2,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 3, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-52.178591939859366,"attenuationLength":"0.007313","focalDistance":59.41674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":3,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 4, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-136.76964159206418,"attenuationLength":"0.007313","focalDistance":44.56255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":4,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 5, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-5011.683299115805,"attenuationLength":"0.007313","focalDistance":35.650047723530555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":5,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 6, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":220.17606260308207,"attenuationLength":"0.007313","focalDistance":29.708373102942126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":6,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 7, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":126.12724796819347,"attenuationLength":"0.007313","focalDistance":25.46431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":7,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 8, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":95.5245621138332,"attenuationLength":"0.007313","focalDistance":22.281279827206596,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":8,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 9, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '627' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":80.35952387033105,"attenuationLength":"0.007313","focalDistance":19.805582068628084,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":9,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 10, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":71.30365299749822,"attenuationLength":"0.007313","focalDistance":17.825023861765278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":10,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 11, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":65.28427931793271,"attenuationLength":"0.007313","focalDistance":16.204567147059343,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":11,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 12, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":60.99344779603872,"attenuationLength":"0.007313","focalDistance":14.854186551471063,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":12,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 13, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":57.780080820525846,"attenuationLength":"0.007313","focalDistance":13.71155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":13,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 14, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":55.28360860767267,"attenuationLength":"0.007313","focalDistance":12.73215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":14,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 15, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":53.288200469185874,"attenuationLength":"0.007313","focalDistance":11.883349241176852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":15,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 16, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":51.65676240168851,"attenuationLength":"0.007313","focalDistance":11.140639913603298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":16,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 17, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":50.29803329476719,"attenuationLength":"0.007313","focalDistance":10.485308153979574,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":17,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 18, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":49.148908874163354,"attenuationLength":"0.007313","focalDistance":9.902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":18,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 19, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":48.16436025663314,"attenuationLength":"0.007313","focalDistance":9.381591506192251,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":19,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 20, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":47.31139459996966,"attenuationLength":"0.007313","focalDistance":8.912511930882639,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":20,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 21, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":46.56528551941808,"attenuationLength":"0.007313","focalDistance":8.488106600840608,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":21,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 22, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.90713671509984,"attenuationLength":"0.007313","focalDistance":8.102283573529672,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":22,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 23, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":45.32225932021564,"attenuationLength":"0.007313","focalDistance":7.750010374680555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":23,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 24, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.79906261986619,"attenuationLength":"0.007313","focalDistance":7.4270932757355315,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":24,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 25, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":44.32827814292138,"attenuationLength":"0.007313","focalDistance":7.130009544706111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":25,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:10 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 26, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.902405815386416,"attenuationLength":"0.007313","focalDistance":6.85577840837126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":26,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 27, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.515311405724994,"attenuationLength":"0.007313","focalDistance":6.601860689542695,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":27,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 28, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":43.161929145947745,"attenuationLength":"0.007313","focalDistance":6.366079950630455,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":28,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 29, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.838038806992714,"attenuationLength":"0.007313","focalDistance":6.146559952332853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":29,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 30, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.54009635170347,"attenuationLength":"0.007313","focalDistance":5.941674620588426,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":30,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 31, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.265103721046444,"attenuationLength":"0.007313","focalDistance":5.750007697343637,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":31,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 32, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":42.01050759462439,"attenuationLength":"0.007313","focalDistance":5.570319956801649,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":32,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 33, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.774119872763706,"attenuationLength":"0.007313","focalDistance":5.4015223823531135,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":33,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 34, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.554054630644146,"attenuationLength":"0.007313","focalDistance":5.242654076989787,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":34,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 35, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.348677696464215,"attenuationLength":"0.007313","focalDistance":5.092863960504364,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":35,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 36, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":41.15656599980219,"attenuationLength":"0.007313","focalDistance":4.951395517157021,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":36,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 37, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.976474550581216,"attenuationLength":"0.007313","focalDistance":4.817574016693317,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":37,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 38, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.80730942829118,"attenuationLength":"0.007313","focalDistance":4.6907957530961255,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":38,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 39, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.648105542775006,"attenuationLength":"0.007313","focalDistance":4.570518938914174,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":39,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 40, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.49800821130249,"attenuationLength":"0.007313","focalDistance":4.456255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":40,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 41, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.356257809147,"attenuationLength":"0.007313","focalDistance":4.347566795552506,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":41,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 42, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.22217691163612,"attenuationLength":"0.007313","focalDistance":4.244053300420304,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":42,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 43, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":40.095159468293346,"attenuationLength":"0.007313","focalDistance":4.145354386457041,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":43,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 44, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.97466164400618,"attenuationLength":"0.007313","focalDistance":4.051141786764836,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":44,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 45, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.860194035233036,"attenuationLength":"0.007313","focalDistance":3.961116413725617,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":45,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 46, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.75131502628382,"attenuationLength":"0.007313","focalDistance":3.8750051873402773,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":46,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 47, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.647625095502164,"attenuationLength":"0.007313","focalDistance":3.792558268460697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":47,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 48, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.54876191658683,"attenuationLength":"0.007313","focalDistance":3.7135466378677657,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":48,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 49, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.454396128451435,"attenuationLength":"0.007313","focalDistance":3.637759971788832,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":49,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 50, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.36422766954585,"attenuationLength":"0.007313","focalDistance":3.5650047723530554,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":50,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 51, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.277982590676956,"attenuationLength":"0.007313","focalDistance":3.4951027179931913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":51,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 52, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.19541027500935,"attenuationLength":"0.007313","focalDistance":3.42788920418563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":52,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 53, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.11628100582182,"attenuationLength":"0.007313","focalDistance":3.363212049389675,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":53,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 54, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":39.04038383230436,"attenuationLength":"0.007313","focalDistance":3.3009303447713476,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":54,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 55, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.96752469164058,"attenuationLength":"0.007313","focalDistance":3.240913429411868,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":55,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 56, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.89752475217474,"attenuationLength":"0.007313","focalDistance":3.1830399753152276,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":56,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 57, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.830218947881654,"attenuationLength":"0.007313","focalDistance":3.12719716873075,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":57,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 58, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.7654546788564,"attenuationLength":"0.007313","focalDistance":3.0732799761664267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":58,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 59, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.70309065628845,"attenuationLength":"0.007313","focalDistance":3.0211904850449622,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":59,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 60, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.64299587351971,"attenuationLength":"0.007313","focalDistance":2.970837310294213,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":60,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 61, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.585048687415764,"attenuationLength":"0.007313","focalDistance":2.922135059305783,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":61,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 62, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.529135996495,"attenuationLength":"0.007313","focalDistance":2.8750038486718186,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":62,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 63, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.4751525041305,"attenuationLength":"0.007313","focalDistance":2.829368866946869,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":63,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 64, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.423000056725556,"attenuationLength":"0.007313","focalDistance":2.7851599784008245,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":64,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 65, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.37258704811054,"attenuationLength":"0.007313","focalDistance":2.742311363348504,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":65,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 66, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.32382788255768,"attenuationLength":"0.007313","focalDistance":2.7007611911765568,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":66,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 67, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.2766424897917,"attenuationLength":"0.007313","focalDistance":2.6604513226515336,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":67,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 68, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.23095588621591,"attenuationLength":"0.007313","focalDistance":2.6213270384948935,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":68,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 69, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.186697777296,"attenuationLength":"0.007313","focalDistance":2.583336791560185,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":69,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '488' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 70, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.14380219666683,"attenuationLength":"0.007313","focalDistance":2.546431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":70,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 71, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.10220717806532,"attenuationLength":"0.007313","focalDistance":2.510566741093701,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":71,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 72, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.06185445665789,"attenuationLength":"0.007313","focalDistance":2.4756977585785105,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":72,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 73, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":38.022689196735115,"attenuationLength":"0.007313","focalDistance":2.4417840906527775,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":73,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 74, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.9846597430972,"attenuationLength":"0.007313","focalDistance":2.4087870083466587,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":74,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 75, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.947717393760065,"attenuationLength":"0.007313","focalDistance":2.3766698482353705,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":75,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 76, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.911816191878906,"attenuationLength":"0.007313","focalDistance":2.3453978765480628,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":76,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 77, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.87691273501992,"attenuationLength":"0.007313","focalDistance":2.3149381638656203,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":77,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 78, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.842966000116036,"attenuationLength":"0.007313","focalDistance":2.285259469457087,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":78,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 79, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.80993718262206,"attenuationLength":"0.007313","focalDistance":2.256332134400668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":79,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 80, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.77778954854356,"attenuationLength":"0.007313","focalDistance":2.2281279827206597,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":80,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 81, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.74648829815311,"attenuationLength":"0.007313","focalDistance":2.2006202298475652,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":81,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 82, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.71600044033088,"attenuationLength":"0.007313","focalDistance":2.173783397776253,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":82,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 83, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.68629467657573,"attenuationLength":"0.007313","focalDistance":2.1475932363572623,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":83,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 84, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.65734129382953,"attenuationLength":"0.007313","focalDistance":2.122026650210152,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":84,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 85, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.62911206534324,"attenuationLength":"0.007313","focalDistance":2.0970616307959147,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":85,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 86, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.60158015888938,"attenuationLength":"0.007313","focalDistance":2.0726771932285204,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":86,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 87, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.574720051693575,"attenuationLength":"0.007313","focalDistance":2.0488533174442844,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":87,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 88, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.54850745151831,"attenuationLength":"0.007313","focalDistance":2.025570893382418,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":88,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 89, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.52291922338584,"attenuationLength":"0.007313","focalDistance":2.002811669861267,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":89,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 90, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.4979333214758,"attenuationLength":"0.007313","focalDistance":1.9805582068628085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":90,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 91, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.47352872577608,"attenuationLength":"0.007313","focalDistance":1.9587938309632171,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":91,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 92, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.44968538310439,"attenuationLength":"0.007313","focalDistance":1.9375025936701387,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":92,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 93, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.42638415215271,"attenuationLength":"0.007313","focalDistance":1.9166692324478791,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":93,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 94, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.40360675223803,"attenuationLength":"0.007313","focalDistance":1.8962791342303484,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":94,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 95, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.381335715471096,"attenuationLength":"0.007313","focalDistance":1.87631830123845,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":95,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 96, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.359554342080074,"attenuationLength":"0.007313","focalDistance":1.8567733189338829,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":96,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 97, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.338246658649005,"attenuationLength":"0.007313","focalDistance":1.8376313259551833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":97,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 98, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.31739737905157,"attenuationLength":"0.007313","focalDistance":1.818879985894416,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":98,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 99, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '628' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.2969918678794,"attenuationLength":"0.007313","focalDistance":1.8005074607843714,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":99,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '490' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 100, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.27701610618103,"attenuationLength":"0.007313","focalDistance":1.7825023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":100,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 101, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.257456659342935,"attenuationLength":"0.007313","focalDistance":1.7648538476995324,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":101,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 102, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.23830064695806,"attenuationLength":"0.007313","focalDistance":1.7475513589965956,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":102,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 103, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.21953571453978,"attenuationLength":"0.007313","focalDistance":1.730584840948085,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":103,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 104, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.201150006950805,"attenuationLength":"0.007313","focalDistance":1.713944602092815,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":104,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 105, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.18313214342683,"attenuationLength":"0.007313","focalDistance":1.6976213201681216,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":105,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 106, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.1654711940846,"attenuationLength":"0.007313","focalDistance":1.6816060246948374,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":106,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 107, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.14815665781217,"attenuationLength":"0.007313","focalDistance":1.6658900805388108,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":107,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 108, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.13117844144766,"attenuationLength":"0.007313","focalDistance":1.6504651723856738,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":108,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 109, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.11452684015957,"attenuationLength":"0.007313","focalDistance":1.6353232900702088,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":109,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 110, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.09819251894869,"attenuationLength":"0.007313","focalDistance":1.620456714705934,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":110,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 111, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.08216649519735,"attenuationLength":"0.007313","focalDistance":1.6058580055644391,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":111,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 112, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.0664401221975,"attenuationLength":"0.007313","focalDistance":1.5915199876576138,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":112,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 113, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.05100507359433,"attenuationLength":"0.007313","focalDistance":1.5774357399792278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":113,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 114, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.03585332868637,"attenuationLength":"0.007313","focalDistance":1.563598584365375,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":114,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 115, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.02097715852769,"attenuationLength":"0.007313","focalDistance":1.550002074936111,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":115,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 116, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":37.00636911278157,"attenuationLength":"0.007313","focalDistance":1.5366399880832133,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":116,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 117, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.99202200727869,"attenuationLength":"0.007313","focalDistance":1.5235063129713913,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":117,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 118, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.97792891223611,"attenuationLength":"0.007313","focalDistance":1.5105952425224811,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":118,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 119, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.96408314109652,"attenuationLength":"0.007313","focalDistance":1.4979011648542249,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":119,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 120, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.950478239949966,"attenuationLength":"0.007313","focalDistance":1.4854186551471065,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":120,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 121, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.93710797750289,"attenuationLength":"0.007313","focalDistance":1.4731424679144858,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":121,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 122, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.923966335561744,"attenuationLength":"0.007313","focalDistance":1.4610675296528914,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":122,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 123, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.9110475000006,"attenuationLength":"0.007313","focalDistance":1.4491889318508355,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":123,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 124, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.89834585218438,"attenuationLength":"0.007313","focalDistance":1.4375019243359093,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":124,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 125, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.88585596082095,"attenuationLength":"0.007313","focalDistance":1.4260019089412221,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":125,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 126, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.87357257421747,"attenuationLength":"0.007313","focalDistance":1.4146844334734345,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":126,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 127, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.86149061291759,"attenuationLength":"0.007313","focalDistance":1.4035451859657697,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":127,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 128, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.849605162698005,"attenuationLength":"0.007313","focalDistance":1.3925799892004123,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":128,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 129, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.83791146790387,"attenuationLength":"0.007313","focalDistance":1.3817847954856803,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":129,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 130, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.826404925104335,"attenuationLength":"0.007313","focalDistance":1.371155681674252,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":130,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 131, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.81508107705016,"attenuationLength":"0.007313","focalDistance":1.360688844409563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":131,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 132, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.80393560691698,"attenuationLength":"0.007313","focalDistance":1.3503805955882784,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":132,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 133, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.792964332818414,"attenuationLength":"0.007313","focalDistance":1.3402273580274644,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":133,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 134, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.78216320257449,"attenuationLength":"0.007313","focalDistance":1.3302256613257668,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":134,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 135, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.77152828872157,"attenuationLength":"0.007313","focalDistance":1.320372137908539,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":135,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:11 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 136, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.76105578375092,"attenuationLength":"0.007313","focalDistance":1.3106635192474467,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":136,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 137, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.750741995563736,"attenuationLength":"0.007313","focalDistance":1.3010966322456405,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":137,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 138, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.74058334313128,"attenuationLength":"0.007313","focalDistance":1.2916683957800925,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":138,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 139, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.730576352349345,"attenuationLength":"0.007313","focalDistance":1.2823758173931852,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":139,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 140, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.72071765207712,"attenuationLength":"0.007313","focalDistance":1.273215990126091,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":140,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 141, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.711003970350724,"attenuationLength":"0.007313","focalDistance":1.264186089486899,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":141,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 142, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.70143213076272,"attenuationLength":"0.007313","focalDistance":1.2552833705468505,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":142,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 143, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.691999048999,"attenuationLength":"0.007313","focalDistance":1.246505165158411,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":143,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '489' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 144, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.68270172952528,"attenuationLength":"0.007313","focalDistance":1.2378488792892552,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":144,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 145, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.673537262415536,"attenuationLength":"0.007313","focalDistance":1.2293119904665706,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":145,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 146, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.66450282031554,"attenuationLength":"0.007313","focalDistance":1.2208920453263887,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":146,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 147, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.655595655534654,"attenuationLength":"0.007313","focalDistance":1.2125866572629438,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":147,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 148, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.64681309725971,"attenuationLength":"0.007313","focalDistance":1.2043935041733294,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":148,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 149, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.638152548884975,"attenuationLength":"0.007313","focalDistance":1.1963103262929715,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":149,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 150, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.629611485452706,"attenuationLength":"0.007313","focalDistance":1.1883349241176853,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":150,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 151, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.62118745119878,"attenuationLength":"0.007313","focalDistance":1.1804651564082964,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":151,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 152, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.612878057198685,"attenuationLength":"0.007313","focalDistance":1.1726989382740314,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":152,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 153, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.60468097910882,"attenuationLength":"0.007313","focalDistance":1.165034239331064,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":153,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 154, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.59659395499888,"attenuationLength":"0.007313","focalDistance":1.1574690819328102,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":154,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 155, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.5886147832709,"attenuationLength":"0.007313","focalDistance":1.1500015394687275,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":155,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 156, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.580741320661026,"attenuationLength":"0.007313","focalDistance":1.1426297347285435,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":156,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 157, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.57297148032021,"attenuationLength":"0.007313","focalDistance":1.1353518383289984,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":157,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 158, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.56530322997014,"attenuationLength":"0.007313","focalDistance":1.128166067200334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":158,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 159, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.557734590131055,"attenuationLength":"0.007313","focalDistance":1.1210706831298916,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":159,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 160, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.55026363241819,"attenuationLength":"0.007313","focalDistance":1.1140639913603299,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":160,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 161, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.542888477903745,"attenuationLength":"0.007313","focalDistance":1.1071443392400793,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":161,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 162, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.53560729554145,"attenuationLength":"0.007313","focalDistance":1.1003101149237826,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":162,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 163, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.52841830065101,"attenuationLength":"0.007313","focalDistance":1.093559746120569,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":163,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 164, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.52131975345973,"attenuationLength":"0.007313","focalDistance":1.0868916988881265,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":164,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 165, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.514309957698806,"attenuationLength":"0.007313","focalDistance":1.0803044764706229,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":165,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 166, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.50738725925205,"attenuationLength":"0.007313","focalDistance":1.0737966181786311,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":166,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 167, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.500550044854506,"attenuationLength":"0.007313","focalDistance":1.067366698309298,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":167,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 168, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.493796740839166,"attenuationLength":"0.007313","focalDistance":1.061013325105076,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":168,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 169, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.48712581192938,"attenuationLength":"0.007313","focalDistance":1.0547351397494247,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":169,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 170, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.48053576007531,"attenuationLength":"0.007313","focalDistance":1.0485308153979573,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":170,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 171, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.47402512333238,"attenuationLength":"0.007313","focalDistance":1.0423990562435834,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":171,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 172, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.46759247478006,"attenuationLength":"0.007313","focalDistance":1.0363385966142602,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":172,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 173, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.46123642147926,"attenuationLength":"0.007313","focalDistance":1.030348200102039,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":173,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 174, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.454955603466765,"attenuationLength":"0.007313","focalDistance":1.0244266587221422,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":174,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 175, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.44874869278512,"attenuationLength":"0.007313","focalDistance":1.018572792100873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":175,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 176, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.44261439254663,"attenuationLength":"0.007313","focalDistance":1.012785446691209,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":176,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 177, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.43655143602999,"attenuationLength":"0.007313","focalDistance":1.0070634950149873,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":177,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 178, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.43055858580821,"attenuationLength":"0.007313","focalDistance":1.0014058349306334,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":178,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 179, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.424634632906674,"attenuationLength":"0.007313","focalDistance":0.9958113889254344,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":179,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 180, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.41877839599005,"attenuationLength":"0.007313","focalDistance":0.9902791034314042,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":180,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 181, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.41298872057695,"attenuationLength":"0.007313","focalDistance":0.9848079481638273,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":181,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 182, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.40726447828112,"attenuationLength":"0.007313","focalDistance":0.9793969154816086,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":182,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 183, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.40160456607837,"attenuationLength":"0.007313","focalDistance":0.9740450197685943,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":183,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 184, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.39600790559795,"attenuationLength":"0.007313","focalDistance":0.9687512968350693,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":184,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 185, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.3904734424376,"attenuationLength":"0.007313","focalDistance":0.9635148033386636,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":185,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 186, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.38500014550132,"attenuationLength":"0.007313","focalDistance":0.9583346162239396,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":186,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 187, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.379587006358975,"attenuationLength":"0.007313","focalDistance":0.9532098321799612,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":187,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 188, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.37423303862684,"attenuationLength":"0.007313","focalDistance":0.9481395671151742,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":188,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 189, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.36893727736845,"attenuationLength":"0.007313","focalDistance":0.9431229556489563,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":189,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 190, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.363698778514824,"attenuationLength":"0.007313","focalDistance":0.938159150619225,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":190,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 191, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.358516618303376,"attenuationLength":"0.007313","focalDistance":0.9332473226055118,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":191,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 192, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.353389892734896,"attenuationLength":"0.007313","focalDistance":0.9283866594669414,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":192,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 193, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.348317717047806,"attenuationLength":"0.007313","focalDistance":0.9235763658945739,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":193,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '493' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 194, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.34329922520914,"attenuationLength":"0.007313","focalDistance":0.9188156629775917,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":194,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 195, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.33833356942159,"attenuationLength":"0.007313","focalDistance":0.9141037877828347,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":195,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 196, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.33341991964607,"attenuationLength":"0.007313","focalDistance":0.909439992947208,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":196,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '491' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 197, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.32855746313913,"attenuationLength":"0.007313","focalDistance":0.9048235462825014,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":197,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 198, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.32374540400484,"attenuationLength":"0.007313","focalDistance":0.9002537303921857,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":198,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 199, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.31898296276049,"attenuationLength":"0.007313","focalDistance":0.8957298422997626,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":199,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 200, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '629' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":36.31426937591563,"attenuationLength":"0.007313","focalDistance":0.8912511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":200,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '492' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 1}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":1,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 2}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":2,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 3}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":3,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 4}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":4,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 5}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":5,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 6}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":6,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 7}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":7,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 8}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":8,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 9}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '619' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":9,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '482' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 10}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":10,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 11}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":11,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 12}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":12,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 13}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":13,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 14}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":14,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 15}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":15,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 16}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":16,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 17}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":17,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 18}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":18,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 19}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":19,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 20}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":20,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 21}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":21,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 22}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":22,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 23}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":23,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 24}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":24,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 25}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":25,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 26}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":26,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 27}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":27,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 28}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":28,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 29}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":29,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 30}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":30,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 31}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":31,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 32}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":32,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 33}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":33,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 34}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":34,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 35}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":35,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 36}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":36,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 37}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":37,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 38}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":38,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 39}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":39,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 40}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":40,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 41}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":41,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 42}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":42,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 43}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":43,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 44}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":44,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 45}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":45,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 46}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":46,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 47}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":47,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:12 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 48}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":48,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 49}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":49,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 50}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":50,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 51}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":51,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 52}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":52,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 53}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":53,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 54}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":54,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 55}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":55,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 56}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":56,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 57}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":57,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 58}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":58,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 59}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":59,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 60}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":60,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 61}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":61,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 62}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":62,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 63}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":63,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 64}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":64,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 65}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":65,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 66}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":66,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 67}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":67,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 68}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":68,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 69}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":69,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 70}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":70,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 71}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":71,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 72}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":72,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 73}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":73,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 74}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":74,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 75}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":75,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 76}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":76,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 77}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":77,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 78}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":78,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 79}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":79,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 80}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":80,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 81}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":81,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 82}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":82,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 83}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":83,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 84}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":84,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 85}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":85,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 86}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":86,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 87}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":87,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 88}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":88,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 89}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":89,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 90}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":90,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 91}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":91,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 92}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":92,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 93}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":93,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 94}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":94,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 95}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":95,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 96}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":96,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 97}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":97,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 98}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":98,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 99}, "photon_energy": "9000", "simulationId": - "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '620' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":99,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '483' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 100}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":100,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 101}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":101,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 102}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":102,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 103}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":103,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 104}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":104,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 105}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":105,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 106}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":106,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 107}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":107,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 108}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":108,"state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '484' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:46:13 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": - "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": - "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 109}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":109,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":60,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47693,8 +1511,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 110}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 65}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -47703,29 +1521,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":110,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":65,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47736,8 +1554,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 111}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 70}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -47746,29 +1564,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":111,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":70,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47779,8 +1597,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 112}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 75}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -47789,29 +1607,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":112,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":75,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47822,8 +1640,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 113}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 80}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -47832,29 +1650,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":113,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":80,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47865,8 +1683,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 114}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 85}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -47875,29 +1693,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":114,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":85,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47908,8 +1726,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 115}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 90}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -47918,29 +1736,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":115,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":90,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47951,8 +1769,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 116}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 95}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -47961,29 +1779,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":116,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":95,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -47994,7 +1812,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 117}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 100}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48008,25 +1826,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":117,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":100,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48037,7 +1855,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 118}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 105}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48051,25 +1869,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":118,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":105,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48080,7 +1898,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 119}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 110}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48094,25 +1912,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":119,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":110,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48123,7 +1941,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 120}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 115}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48137,25 +1955,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":120,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":115,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48166,7 +1984,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 121}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 120}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48180,25 +1998,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":121,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":120,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48209,7 +2027,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 122}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 125}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48223,25 +2041,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":122,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":125,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48252,7 +2070,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 123}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 130}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48266,25 +2084,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":123,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":130,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48295,7 +2113,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 124}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 135}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48309,25 +2127,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":124,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":135,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48338,7 +2156,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 125}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 140}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48352,25 +2170,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":125,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":140,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48381,7 +2199,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 126}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 145}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48395,25 +2213,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":126,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":145,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48424,7 +2242,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 127}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 150}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48438,25 +2256,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":127,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":150,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48467,7 +2285,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 128}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 155}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48481,25 +2299,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":128,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":155,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48510,7 +2328,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 129}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 160}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48524,25 +2342,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":129,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":160,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48553,7 +2371,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 130}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 165}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48567,25 +2385,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":130,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":165,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48596,7 +2414,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 131}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 170}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48610,25 +2428,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":131,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":170,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48639,7 +2457,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 132}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 175}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48653,25 +2471,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":132,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":175,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48682,7 +2500,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 133}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 180}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48696,25 +2514,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":133,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":180,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48725,7 +2543,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 134}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 185}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48739,25 +2557,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":134,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":185,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48768,7 +2586,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 135}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 190}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48782,25 +2600,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":135,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":190,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48811,7 +2629,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 136}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 195}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48825,25 +2643,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":136,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":195,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48854,7 +2672,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 137}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 200}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48868,25 +2686,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":137,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":200,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48894,10 +2712,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 138}, "photon_energy": "9000", + "Al", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48911,25 +2729,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":138,"state":"completed"}' + string: '{"absoluteFocusPosition":-16.584501057072337,"attenuationLength":0.000109687,"focalDistance":110.96211644157962,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"Al","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":6.75906358e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '488' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:00 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48937,10 +2755,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 139}, "photon_energy": "9000", + "Au", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48954,25 +2772,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":139,"state":"completed"}' + string: '{"absoluteFocusPosition":81.69025221225716,"attenuationLength":3.3890199999999998e-06,"focalDistance":20.059614016812027,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"Au","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":3.73885559e-05,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '497' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:02 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -48980,10 +2798,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 140}, "photon_energy": "9000", + "B", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -48993,29 +2811,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":140,"state":"completed"}' + string: '{"absoluteFocusPosition":-12.582265730123332,"attenuationLength":0.00286169,"focalDistance":134.99732427203452,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"B","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":5.55566567e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '486' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:03 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49023,10 +2841,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 141}, "photon_energy": "9000", + "Be", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49040,25 +2858,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":141,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.772548839238297,"attenuationLength":0.007312959999999999,"focalDistance":178.25015939664002,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"Be","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":4.20756987e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '496' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:04 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49066,10 +2884,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", - "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 142}, "photon_energy": "9000", + "C", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": + "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500.0, + "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49079,29 +2897,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":142,"state":"completed"}' + string: '{"absoluteFocusPosition":-12.866770928008329,"attenuationLength":0.00149468,"focalDistance":132.79506570930914,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"C","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":5.64780021e-06,"shape":"1","tipRadius":1500.0,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '486' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:06 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49109,10 +2927,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 143}, "photon_energy": "9000", + 1000, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49122,29 +2940,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":143,"state":"completed"}' + string: '{"absoluteFocusPosition":-15.019867486971442,"attenuationLength":"0.007313","focalDistance":118.8334924117685,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1000,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49152,10 +2970,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 144}, "photon_energy": "9000", + 1100, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49165,29 +2983,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":144,"state":"completed"}' + string: '{"absoluteFocusPosition":-13.14730931352966,"attenuationLength":"0.007313","focalDistance":130.71684165294533,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1100,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49195,10 +3013,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 145}, "photon_energy": "9000", + 1200, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49208,29 +3026,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":145,"state":"completed"}' + string: '{"absoluteFocusPosition":-11.689904556585176,"attenuationLength":"0.007313","focalDistance":142.6001908941222,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1200,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49238,10 +3056,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 146}, "photon_energy": "9000", + 1300, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49251,29 +3069,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":146,"state":"completed"}' + string: '{"absoluteFocusPosition":-10.52336870885933,"attenuationLength":"0.007313","focalDistance":154.48354013529905,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1300,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49281,10 +3099,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 147}, "photon_energy": "9000", + 1400, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49294,29 +3112,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":147,"state":"completed"}' + string: '{"absoluteFocusPosition":-9.56852534229229,"attenuationLength":"0.007313","focalDistance":166.3668893764759,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1400,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49324,10 +3142,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 148}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49337,29 +3155,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":148,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '492' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49367,10 +3185,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 149}, "photon_energy": "9000", + 1600, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49380,29 +3198,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":149,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.09882338631813,"attenuationLength":"0.007313","focalDistance":190.1335878588296,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1600,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49410,10 +3228,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 150}, "photon_energy": "9000", + 1700, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49423,29 +3241,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":150,"state":"completed"}' + string: '{"absoluteFocusPosition":-7.521204157341046,"attenuationLength":"0.007313","focalDistance":202.01693710000646,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1700,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49453,10 +3271,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 151}, "photon_energy": "9000", + 1800, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49466,29 +3284,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":151,"state":"completed"}' + string: '{"absoluteFocusPosition":-7.020492939740869,"attenuationLength":"0.007313","focalDistance":213.9002863411833,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1800,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '492' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49496,10 +3314,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 152}, "photon_energy": "9000", + 1900, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49509,29 +3327,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":152,"state":"completed"}' + string: '{"absoluteFocusPosition":-6.582288420781218,"attenuationLength":"0.007313","focalDistance":225.78363558236015,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1900,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '493' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49539,10 +3357,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": "1", "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": - 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 153}, "photon_energy": "9000", + 2000, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49552,29 +3370,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '629' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":153,"state":"completed"}' + string: '{"absoluteFocusPosition":-6.195573642892285,"attenuationLength":"0.007313","focalDistance":237.666984823537,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":"1","position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":2000,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49585,7 +3403,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 154}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49595,29 +3413,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":154,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '490' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49625,10 +3443,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 2, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 155}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49638,29 +3456,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":155,"state":"completed"}' + string: '{"absoluteFocusPosition":-23.325401899928792,"attenuationLength":"0.007313","focalDistance":89.12511930882638,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":2,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49668,10 +3486,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 3, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 156}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49681,29 +3499,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":156,"state":"completed"}' + string: '{"absoluteFocusPosition":-52.178591939859366,"attenuationLength":"0.007313","focalDistance":59.41674620588425,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":3,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49711,10 +3529,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 4, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 157}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49724,29 +3542,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":157,"state":"completed"}' + string: '{"absoluteFocusPosition":-136.76964159206418,"attenuationLength":"0.007313","focalDistance":44.56255965441319,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":4,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49754,10 +3572,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 5, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 158}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49767,29 +3585,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":158,"state":"completed"}' + string: '{"absoluteFocusPosition":-5011.683299115805,"attenuationLength":"0.007313","focalDistance":35.650047723530555,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":5,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49797,10 +3615,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 6, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 159}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49810,29 +3628,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":159,"state":"completed"}' + string: '{"absoluteFocusPosition":220.17606260308207,"attenuationLength":"0.007313","focalDistance":29.708373102942126,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":6,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49840,10 +3658,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 7, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 160}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49853,29 +3671,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":160,"state":"completed"}' + string: '{"absoluteFocusPosition":126.12724796819347,"attenuationLength":"0.007313","focalDistance":25.46431980252182,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":7,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '490' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:13 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49883,10 +3701,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 8, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 161}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49896,29 +3714,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":161,"state":"completed"}' + string: '{"absoluteFocusPosition":95.5245621138332,"attenuationLength":"0.007313","focalDistance":22.281279827206596,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":8,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '489' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49926,10 +3744,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 9, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 162}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49939,29 +3757,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '627' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":162,"state":"completed"}' + string: '{"absoluteFocusPosition":80.35952387033105,"attenuationLength":"0.007313","focalDistance":19.805582068628084,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":9,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '490' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -49969,10 +3787,10 @@ interactions: body: '{"method": "crl_characteristics", "optical_element": {"absoluteFocusPosition": "-8.7725", "attenuationLength": "0.007313", "focalDistance": "178.2502", "focalPlane": "2", "horizontalApertureSize": "1", "horizontalOffset": 0, "id": 6, "material": - "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", + "User-defined", "method": "server", "numberOfLenses": 10, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 163}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": "80.e-06"}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -49982,29 +3800,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '628' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":163,"state":"completed"}' + string: '{"absoluteFocusPosition":71.30365299749822,"attenuationLength":"0.007313","focalDistance":17.825023861765278,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":10,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":"80.e-06","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '491' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50015,8 +3833,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 164}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 20}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50025,29 +3843,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":164,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":20,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50058,8 +3876,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 165}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 25}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50068,29 +3886,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":165,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":25,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50101,8 +3919,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 166}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 30}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50111,29 +3929,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":166,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":30,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50144,8 +3962,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 167}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 35}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50154,29 +3972,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":167,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":35,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50187,8 +4005,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 168}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 40}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50197,29 +4015,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":168,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":40,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50230,8 +4048,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 169}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 45}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50240,29 +4058,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":169,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":45,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50273,8 +4091,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 170}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 50}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50283,29 +4101,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":170,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":50,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50316,8 +4134,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 171}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 55}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50326,29 +4144,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":171,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":55,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50359,8 +4177,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 172}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 60}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50369,29 +4187,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":172,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":60,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50402,8 +4220,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 173}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 65}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50412,29 +4230,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":173,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":65,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50445,8 +4263,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 174}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 70}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50455,29 +4273,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":174,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":70,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50488,8 +4306,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 175}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 75}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50498,29 +4316,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":175,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":75,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50531,8 +4349,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 176}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 80}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50541,29 +4359,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":176,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":80,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50574,8 +4392,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 177}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 85}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50584,29 +4402,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":177,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":85,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50617,8 +4435,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 178}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 90}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50627,29 +4445,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":178,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":90,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50660,8 +4478,8 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 179}, "photon_energy": "9000", - "simulationId": "HXV1JQ5c", "simulationType": "srw"}' + "2.4", "verticalOffset": 0, "wallThickness": 95}, "photon_energy": "9000", "simulationId": + "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -50670,29 +4488,29 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '620' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":179,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":95,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '484' + - '483' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50703,7 +4521,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 180}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 100}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -50717,25 +4535,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":180,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":100,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50746,7 +4564,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 181}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 105}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -50760,25 +4578,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":181,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":105,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50789,7 +4607,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 182}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 110}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -50803,25 +4621,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":182,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":110,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50832,7 +4650,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 183}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 115}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -50846,25 +4664,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":183,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":115,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50875,7 +4693,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 184}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 120}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -50889,25 +4707,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":184,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":120,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50918,7 +4736,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 185}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 125}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -50932,25 +4750,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":185,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":125,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -50961,7 +4779,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 186}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 130}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -50975,25 +4793,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":186,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":130,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51004,7 +4822,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 187}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 135}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51018,25 +4836,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":187,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":135,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51047,7 +4865,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 188}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 140}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51061,25 +4879,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":188,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":140,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51090,7 +4908,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 189}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 145}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51104,25 +4922,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":189,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":145,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51133,7 +4951,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 190}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 150}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51147,25 +4965,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":190,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":150,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51176,7 +4994,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 191}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 155}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51190,25 +5008,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":191,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":155,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51219,7 +5037,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 192}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 160}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51233,25 +5051,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":192,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":160,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51262,7 +5080,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 193}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 165}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51276,25 +5094,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":193,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":165,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51305,7 +5123,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 194}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 170}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51319,25 +5137,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":194,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":170,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51348,7 +5166,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 195}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 175}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51362,25 +5180,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":195,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":175,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51391,7 +5209,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 196}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 180}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51405,25 +5223,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":196,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":180,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51434,7 +5252,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 197}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 185}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51448,25 +5266,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":197,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":185,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51477,7 +5295,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 198}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 190}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51491,25 +5309,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":198,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":190,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51520,7 +5338,7 @@ interactions: "User-defined", "method": "server", "numberOfLenses": 1, "position": "35.4", "radius": "1.5e-03", "refractiveIndex": "4.207568e-6", "shape": "1", "tipRadius": 1500, "tipWallThickness": 80.0, "title": "CRL1", "type": "crl", "verticalApertureSize": - "2.4", "verticalOffset": 0, "wallThickness": 199}, "photon_energy": "9000", + "2.4", "verticalOffset": 0, "wallThickness": 195}, "photon_energy": "9000", "simulationId": "HXV1JQ5c", "simulationType": "srw"}' headers: Accept: @@ -51534,25 +5352,25 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":199,"state":"completed"}' + string: '{"absoluteFocusPosition":-8.77254397421175,"attenuationLength":"0.007313","focalDistance":178.25023861765277,"focalPlane":"2","horizontalApertureSize":"1","horizontalOffset":0,"id":6,"material":"User-defined","method":"server","numberOfLenses":1,"position":"35.4","radius":"1.5e-03","refractiveIndex":"4.207568e-6","shape":"1","tipRadius":1500,"tipWallThickness":80.0,"title":"CRL1","type":"crl","verticalApertureSize":"2.4","verticalOffset":0,"wallThickness":195,"state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK @@ -51577,7 +5395,7 @@ interactions: Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9ybFg3X1M3eTN2bGE0bXRJSHVJUzJLQThUNzlwUUVCMGRMN1dNUXZCRk1wamRfWjR4eFRQb1Z6WVg3LWZoWmdhNkpGZEVoOHFEdzdyZldpcFE3VjZxcFhmUTlmVm9FWVhSQWxTOC1MNHNiTHRMOXllYnFUa01lX1hxa3QyX01qMVM= + - sirepo_dev=Z0FBQUFBQmt0Wm05bWpLYTBnNkw1Zk94bWQ0NFo3NkZMa2plQUZobllMVC02b1lrdHlsRUM3dFNkcmw0QlkxZ1lYb2VvWmV0aXRNSF9Sa2VCTVpwb3k3dHVCc2JsNWtGMXZ3Q3MxZm9mMXp5Q3BYQWZSdXVnZ0dCeUhrckUyUDFTbU1kNFVuazE4UUs= User-Agent: - python-requests/2.31.0 method: POST @@ -51591,11 +5409,11 @@ interactions: Content-Length: - '484' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:46:14 GMT + - Mon, 17 Jul 2023 19:43:07 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK diff --git a/sirepo_bluesky/tests/vcr_cassettes/test_crystal_characteristics.yml b/sirepo_bluesky/tests/vcr_cassettes/test_crystal_characteristics.yml index 3f93c092..e1b5a201 100644 --- a/sirepo_bluesky/tests/vcr_cassettes/test_crystal_characteristics.yml +++ b/sirepo_bluesky/tests/vcr_cassettes/test_crystal_characteristics.yml @@ -1,7 +1,7 @@ interactions: - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -20,37 +20,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '935' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '663' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:13 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -69,45 +69,46 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '935' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '663' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -116,37 +117,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '844' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '663' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -165,37 +166,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.775815295846148e-05,"psi0r":-0.0007230563528916463,"psiHBi":3.3343483892850474e-05,"psiHBr":-0.00036777952885757545,"psiHi":3.3343483892850474e-05,"psiHr":-0.00036777952885757545,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -214,45 +215,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.775815295846148e-05,"psi0r":-0.0007230563528916463,"psiHBi":3.3343483892850474e-05,"psiHBr":-0.00036777952885757545,"psiHi":3.3343483892850474e-05,"psiHr":-0.00036777952885757545,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.775815295846148e-05, + "psi0r": -0.0007230563528916463, "psiHBi": 3.3343483892850474e-05, "psiHBr": + -0.00036777952885757545, "psiHi": 3.3343483892850474e-05, "psiHr": -0.00036777952885757545, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -261,37 +264,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '968' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":null,"nvy":null,"nvz":null,"orientation":"y","outframevx":null,"outframevy":null,"outoptvx":null,"outoptvy":null,"outoptvz":null,"position":25,"psi0i":4.775815295846148e-05,"psi0r":-0.0007230563528916463,"psiHBi":3.3343483892850474e-05,"psiHBr":-0.00036777952885757545,"psiHi":3.3343483892850474e-05,"psiHr":-0.00036777952885757545,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":null,"tvy":null,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '723' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -310,37 +313,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.550874281994092e-05,"psi0r":-0.00019768851095602687,"psiHBi":3.8754741493853286e-05,"psiHBr":-0.00010042053949014805,"psiHi":3.8754741493853286e-05,"psiHr":-0.00010042053949014805,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '788' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -359,45 +362,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.550874281994092e-05,"psi0r":-0.00019768851095602687,"psiHBi":3.8754741493853286e-05,"psiHBr":-0.00010042053949014805,"psiHi":3.8754741493853286e-05,"psiHr":-0.00010042053949014805,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '788' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 5.550874281994092e-05, + "psi0r": -0.00019768851095602687, "psiHBi": 3.8754741493853286e-05, "psiHBr": + -0.00010042053949014805, "psiHi": 3.8754741493853286e-05, "psiHr": -0.00010042053949014805, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -406,37 +411,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '969' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":2100,"grazingAngle":1227.248798040984,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.3368294359510057,"nvz":-0.9415656807025877,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.6342940742837546,"outoptvz":-0.7730918621538547,"position":25,"psi0i":5.550874281994092e-05,"psi0r":-0.00019768851095602687,"psiHBi":3.8754741493853286e-05,"psiHBr":-0.00010042053949014805,"psiHi":3.8754741493853286e-05,"psiHr":-0.00010042053949014805,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9415656807025877,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -455,37 +460,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":3100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.3184602101969748e-05,"psi0r":-0.00010180547837392904,"psiHBi":9.205141752509539e-06,"psiHBr":-5.382320618895492e-05,"psiHi":9.205141752509539e-06,"psiHr":-5.382320618895492e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -504,45 +509,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":3100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.3184602101969748e-05,"psi0r":-0.00010180547837392904,"psiHBi":9.205141752509539e-06,"psiHBr":-5.382320618895492e-05,"psiHi":9.205141752509539e-06,"psiHr":-5.382320618895492e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 3100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 1.3184602101969748e-05, + "psi0r": -0.00010180547837392904, "psiHBi": 9.205141752509539e-06, "psiHBr": + -5.382320618895492e-05, "psiHi": 9.205141752509539e-06, "psiHr": -5.382320618895492e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -551,37 +558,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '966' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":3100,"grazingAngle":691.6923052921726,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.7701676958847513,"nvz":-0.6378414538234194,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9824897656619258,"outoptvz":0.1863165595688534,"position":25,"psi0i":1.3184602101969748e-05,"psi0r":-0.00010180547837392904,"psiHBi":9.205141752509539e-06,"psiHBr":-5.382320618895492e-05,"psiHi":9.205141752509539e-06,"psiHr":-5.382320618895492e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.6378414538234194,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '783' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -600,37 +607,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":4100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.678525603384994e-06,"psi0r":-5.886888691106302e-05,"psiHBi":3.2664232897457006e-06,"psiHBr":-3.123648013400793e-05,"psiHi":3.2664232897457006e-06,"psiHr":-3.123648013400793e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -649,45 +656,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":4100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.678525603384994e-06,"psi0r":-5.886888691106302e-05,"psiHBi":3.2664232897457006e-06,"psiHBr":-3.123648013400793e-05,"psiHi":3.2664232897457006e-06,"psiHr":-3.123648013400793e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 4100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.678525603384994e-06, + "psi0r": -5.886888691106302e-05, "psiHBi": 3.2664232897457006e-06, "psiHBr": + -3.123648013400793e-05, "psiHi": 3.2664232897457006e-06, "psiHr": -3.123648013400793e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -696,37 +705,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '966' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":4100,"grazingAngle":503.2449836256724,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.8760222161656793,"nvz":-0.4822707504962039,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.8449597832831399,"outoptvz":0.5348298464316565,"position":25,"psi0i":4.678525603384994e-06,"psi0r":-5.886888691106302e-05,"psiHBi":3.2664232897457006e-06,"psiHBr":-3.123648013400793e-05,"psiHi":3.2664232897457006e-06,"psiHr":-3.123648013400793e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.4822707504962039,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '783' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -745,37 +754,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":5100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.0523773295954145e-06,"psi0r":-3.8023651003149884e-05,"psiHBi":1.4329157681398895e-06,"psiHBr":-2.017196200081669e-05,"psiHi":1.4329157681398895e-06,"psiHr":-2.017196200081669e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -794,45 +803,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":5100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.0523773295954145e-06,"psi0r":-3.8023651003149884e-05,"psiHBi":1.4329157681398895e-06,"psiHBr":-2.017196200081669e-05,"psiHi":1.4329157681398895e-06,"psiHr":-2.017196200081669e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 5100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 2.0523773295954145e-06, + "psi0r": -3.8023651003149884e-05, "psiHBi": 1.4329157681398895e-06, "psiHBr": + -2.017196200081669e-05, "psiHi": 1.4329157681398895e-06, "psiHr": -2.017196200081669e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -841,37 +852,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '968' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":5100,"grazingAngle":398.14352552740775,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9217823515825332,"nvz":-0.38770774600332036,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.7147643156754082,"outoptvz":0.6993654073780498,"position":25,"psi0i":2.0523773295954145e-06,"psi0r":-3.8023651003149884e-05,"psiHBi":1.4329157681398895e-06,"psiHBr":-2.017196200081669e-05,"psiHi":1.4329157681398895e-06,"psiHr":-2.017196200081669e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.38770774600332036,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '788' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -890,37 +901,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":6100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.0335239555772833e-06,"psi0r":-2.650355670204137e-05,"psiHBi":7.215791907957492e-07,"psiHBr":-1.4047819646432538e-05,"psiHi":7.215791907957492e-07,"psiHr":-1.4047819646432538e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -939,45 +950,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":6100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.0335239555772833e-06,"psi0r":-2.650355670204137e-05,"psiHBi":7.215791907957492e-07,"psiHBr":-1.4047819646432538e-05,"psiHi":7.215791907957492e-07,"psiHr":-1.4047819646432538e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 6100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 1.0335239555772833e-06, + "psi0r": -2.650355670204137e-05, "psiHBi": 7.215791907957492e-07, "psiHBr": + -1.4047819646432538e-05, "psiHi": 7.215791907957492e-07, "psiHr": -1.4047819646432538e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -986,37 +999,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '967' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":6100,"grazingAngle":330.1119699408576,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.946006054519345,"nvz":-0.3241489546685935,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.6132937473652125,"outoptvz":0.7898549103745162,"position":25,"psi0i":1.0335239555772833e-06,"psi0r":-2.650355670204137e-05,"psiHBi":7.215791907957492e-07,"psiHBr":-1.4047819646432538e-05,"psiHi":7.215791907957492e-07,"psiHr":-1.4047819646432538e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.3241489546685935,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '783' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -1035,37 +1048,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":7100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.735902620398632e-07,"psi0r":-1.9504732641222407e-05,"psiHBi":4.004656059470476e-07,"psiHBr":-1.0328310676988145e-05,"psiHi":4.004656059470476e-07,"psiHr":-1.0328310676988145e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -1084,45 +1097,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":7100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.735902620398632e-07,"psi0r":-1.9504732641222407e-05,"psiHBi":4.004656059470476e-07,"psiHBr":-1.0328310676988145e-05,"psiHi":4.004656059470476e-07,"psiHr":-1.0328310676988145e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 7100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 5.735902620398632e-07, + "psi0r": -1.9504732641222407e-05, "psiHBi": 4.004656059470476e-07, "psiHBr": + -1.0328310676988145e-05, "psiHi": 4.004656059470476e-07, "psiHr": -1.0328310676988145e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1131,37 +1146,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '967' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":7100,"grazingAngle":282.22577483930144,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9604379528006559,"nvz":-0.2784940552688424,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.5349525206191195,"outoptvz":0.8448821223598298,"position":25,"psi0i":5.735902620398632e-07,"psi0r":-1.9504732641222407e-05,"psiHBi":4.004656059470476e-07,"psiHBr":-1.0328310676988145e-05,"psiHi":4.004656059470476e-07,"psiHr":-1.0328310676988145e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.2784940552688424,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -1180,37 +1195,37 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":8100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.42352258621059e-07,"psi0r":-1.4942990208797548e-05,"psiHBi":2.3902132544658607e-07,"psiHBr":-7.905479491308993e-06,"psiHi":2.3902132544658607e-07,"psiHr":-7.905479491308993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -1229,45 +1244,47 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":8100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.42352258621059e-07,"psi0r":-1.4942990208797548e-05,"psiHBi":2.3902132544658607e-07,"psiHBr":-7.905479491308993e-06,"psiHi":2.3902132544658607e-07,"psiHr":-7.905479491308993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 8100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 3.42352258621059e-07, + "psi0r": -1.4942990208797548e-05, "psiHBi": 2.3902132544658607e-07, "psiHBr": + -7.905479491308993e-06, "psiHi": 2.3902132544658607e-07, "psiHr": -7.905479491308993e-06, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1276,37 +1293,37 @@ interactions: Connection: - keep-alive Content-Length: - - '842' + - '966' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":8100,"grazingAngle":246.6038632664837,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9697470501806547,"nvz":-0.24411197976731688,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.47345374458623024,"outoptvz":0.8808186826681622,"position":25,"psi0i":3.42352258621059e-07,"psi0r":-1.4942990208797548e-05,"psiHBi":2.3902132544658607e-07,"psiHBr":-7.905479491308993e-06,"psiHi":2.3902132544658607e-07,"psiHr":-7.905479491308993e-06,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.24411197976731688,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '661' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -1325,37 +1342,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":9100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.1671096399276739e-07,"psi0r":-1.1811865976063941e-05,"psiHBi":1.5130188438363172e-07,"psiHBr":-6.244347024147993e-06,"psiHi":1.5130188438363172e-07,"psiHr":-6.244347024147993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -1374,45 +1391,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":9100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.1671096399276739e-07,"psi0r":-1.1811865976063941e-05,"psiHBi":1.5130188438363172e-07,"psiHBr":-6.244347024147993e-06,"psiHi":1.5130188438363172e-07,"psiHr":-6.244347024147993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 9100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 2.1671096399276739e-07, + "psi0r": -1.1811865976063941e-05, "psiHBi": 1.5130188438363172e-07, "psiHBr": + -6.244347024147993e-06, "psiHi": 1.5130188438363172e-07, "psiHr": -6.244347024147993e-06, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1421,45 +1440,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '968' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":9100,"grazingAngle":219.03360804148804,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9761078889488081,"nvz":-0.2172864218765209,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.42418998111026185,"outoptvz":0.9055732217361971,"position":25,"psi0i":2.1671096399276739e-07,"psi0r":-1.1811865976063941e-05,"psiHBi":1.5130188438363172e-07,"psiHBr":-6.244347024147993e-06,"psiHi":1.5130188438363172e-07,"psiHr":-6.244347024147993e-06,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.2172864218765209,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -1470,45 +1489,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -1519,45 +1538,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:14 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1566,45 +1586,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:15 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -1615,45 +1635,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:15 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -1664,45 +1684,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:15 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -1711,25876 +1732,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:34 GMT + - Mon, 17 Jul 2023 19:41:15 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 21, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 22, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 23, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 24, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:34 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 25, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 26, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 27, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 28, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 29, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 30, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 31, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 32, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 33, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 34, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 35, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 36, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 37, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 38, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 39, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 40, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 41, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 42, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 43, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 44, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 45, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 46, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 47, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 48, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 49, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 50, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 51, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 52, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 53, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 54, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 55, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 56, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 57, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 58, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 59, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 60, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 61, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 62, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:35 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 63, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 64, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 65, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 66, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 67, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 68, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 69, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 70, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 71, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 72, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 73, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 74, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 75, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 76, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 77, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 78, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 79, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 80, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 81, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 82, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 83, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 84, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 85, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 86, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 87, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 88, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 89, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 90, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 91, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 92, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 93, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 94, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 95, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 96, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 97, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 98, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 99, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '935' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '663' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '935' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '663' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, - "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", - "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": - "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, - "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, - "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": - "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '844' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '663' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:36 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:37 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:37 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:37 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:37 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:37 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:37 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:38 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:39 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:39 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:39 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:39 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:39 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:39 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:39 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:40 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:40 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:40 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:40 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '849' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '668' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:40 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:40 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:41 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:42 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:42 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:42 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:42 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:42 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:42 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:43 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:43 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:43 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:43 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:43 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:43 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:43 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:44 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:44 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:44 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:44 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:44 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": - -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, - "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": - 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '941' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '850' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '669' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:45 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '933' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '842' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '661' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 21, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 21, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":21,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 22, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 22, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":22,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 23, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 23, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":23,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 24, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 24, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":24,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 25, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 25, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":25,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 26, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 26, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":26,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 27, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 27, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":27,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 28, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 28, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":28,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 29, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 29, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":29,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 30, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 30, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":30,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 31, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 31, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":31,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 32, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 32, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":32,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 33, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 33, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":33,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 34, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 34, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":34,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 35, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 35, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":35,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 36, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 36, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":36,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 37, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 37, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":37,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 38, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 38, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":38,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 39, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 39, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":39,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 40, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 40, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":40,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 41, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 41, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":41,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 42, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 42, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":42,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 43, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 43, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":43,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 44, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 44, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":44,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 45, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 45, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":45,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 46, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 46, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":46,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 47, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 47, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":47,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:46 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 48, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 48, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":48,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 49, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 49, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":49,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 50, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 50, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":50,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 51, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 51, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":51,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 52, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 52, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":52,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 53, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 53, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":53,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 54, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 54, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":54,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 55, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 55, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":55,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 56, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 56, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":56,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 57, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 57, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":57,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 58, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 58, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":58,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 59, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 59, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":59,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 60, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 60, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":60,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 61, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 61, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":61,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 62, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 62, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":62,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 63, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 63, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":63,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 64, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 64, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":64,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 65, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 65, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":65,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 66, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 66, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":66,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 67, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 67, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":67,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 68, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 68, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":68,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 69, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 69, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":69,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 70, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", - "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": - "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '934' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 70, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '843' - Content-Type: - - application/json - Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= - User-Agent: - - python-requests/2.31.0 - method: POST - uri: http://localhost:8000/stateless-compute - response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":70,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' - headers: - Access-Control-Allow-Origin: - - '*' - Content-Length: - - '662' - Content-Type: - - application/json - Date: - - Thu, 06 Jul 2023 14:45:47 GMT - Server: - - Werkzeug/2.0.3 Python/3.9.15 - status: - code: 200 - message: OK -- request: - body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, - "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -27591,45 +1781,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:15 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 71, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -27640,45 +1830,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:16 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 71, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -27687,45 +1878,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":71,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:16 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -27736,45 +1927,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:16 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 72, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -27785,45 +1976,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:16 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 72, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -27832,45 +2024,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":72,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:16 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -27881,45 +2073,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:16 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 73, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -27930,45 +2122,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:17 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 73, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -27977,45 +2170,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":73,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:17 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28026,45 +2219,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:17 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 74, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28075,45 +2268,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:17 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 74, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -28122,45 +2316,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":74,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:17 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28171,45 +2365,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:17 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 75, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28220,45 +2414,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:18 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 75, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -28267,45 +2462,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":75,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:18 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28316,45 +2511,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:18 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 76, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28365,45 +2560,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:18 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 76, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -28412,45 +2608,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":76,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:19 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28461,45 +2657,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:19 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 77, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28510,45 +2706,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:19 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 77, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 1800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -28557,45 +2754,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":77,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:19 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28606,45 +2803,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":1900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00014559,"psi0r":-0.00049264,"psiHBi":0.00010184,"psiHBr":0.00029019,"psiHi":0.00010184,"psiHr":0.00029019,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:19 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 78, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28655,44 +2852,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":1900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00014559,"psi0r":-0.00049264,"psiHBi":0.00010184,"psiHBr":0.00029019,"psiHi":0.00010184,"psiHr":0.00029019,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:20 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 78, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 1900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 0.00014559, "psi0r": + -0.00049264, "psiHBi": 0.00010184, "psiHBr": 0.00029019, "psiHi": 0.00010184, + "psiHr": 0.00029019, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -28702,45 +2900,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":78,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":1900,"grazingAngle":1527.9567664241413,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.04282645818011888,"nvz":-0.9990825263609341,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.08557433206736768,"outoptvz":-0.9963317889594931,"position":25,"psi0i":0.00014559,"psi0r":-0.00049264,"psiHBi":0.00010184,"psiHBr":0.00029019,"psiHi":0.00010184,"psiHr":0.00029019,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9990825263609341,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '724' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:20 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28751,45 +2949,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.0001219,"psi0r":-0.00045163,"psiHBi":8.5268e-05,"psiHBr":0.00026681,"psiHi":8.5268e-05,"psiHr":0.00026681,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:20 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 79, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28800,44 +2998,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.0001219,"psi0r":-0.00045163,"psiHBi":8.5268e-05,"psiHBr":0.00026681,"psiHi":8.5268e-05,"psiHr":0.00026681,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:20 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 79, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 0.0001219, "psi0r": + -0.00045163, "psiHBi": 8.5268e-05, "psiHBr": 0.00026681, "psiHi": 8.5268e-05, + "psiHr": 0.00026681, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -28847,45 +3046,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":79,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2000,"grazingAngle":1250.5053237483464,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.3148427776915903,"nvz":-0.9491438380643072,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.5976621648100469,"outoptvz":-0.8017480506708877,"position":25,"psi0i":0.0001219,"psi0r":-0.00045163,"psiHBi":8.5268e-05,"psiHBr":0.00026681,"psiHi":8.5268e-05,"psiHr":0.00026681,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9491438380643072,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:20 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28896,45 +3095,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00010295,"psi0r":-0.00041453,"psiHBi":7.2015e-05,"psiHBr":0.00024543,"psiHi":7.2015e-05,"psiHr":0.00024543,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:20 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 80, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -28945,44 +3144,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00010295,"psi0r":-0.00041453,"psiHBi":7.2015e-05,"psiHBr":0.00024543,"psiHi":7.2015e-05,"psiHr":0.00024543,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:21 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 80, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 0.00010295, "psi0r": + -0.00041453, "psiHBi": 7.2015e-05, "psiHBr": 0.00024543, "psiHi": 7.2015e-05, + "psiHr": 0.00024543, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -28992,45 +3192,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":80,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2100,"grazingAngle":1128.9137849278982,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.42764194218839835,"nvz":-0.9039482116146558,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.7731323377052415,"outoptvz":-0.6342447385626692,"position":25,"psi0i":0.00010295,"psi0r":-0.00041453,"psiHBi":7.2015e-05,"psiHBr":0.00024543,"psiHi":7.2015e-05,"psiHr":0.00024543,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9039482116146558,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '723' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:21 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29041,45 +3241,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":8.7636e-05,"psi0r":-0.00038117,"psiHBi":6.1302e-05,"psiHBr":0.00022604,"psiHi":6.1302e-05,"psiHr":0.00022604,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:21 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 81, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29090,44 +3290,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":8.7636e-05,"psi0r":-0.00038117,"psiHBi":6.1302e-05,"psiHBr":0.00022604,"psiHi":6.1302e-05,"psiHr":0.00022604,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:21 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 81, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 8.7636e-05, "psi0r": + -0.00038117, "psiHBi": 6.1302e-05, "psiHBr": 0.00022604, "psiHi": 6.1302e-05, + "psiHr": 0.00022604, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -29137,45 +3338,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":81,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2200,"grazingAngle":1040.9026687621063,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.5054415857453782,"nvz":-0.8628608250460774,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.8722514873777096,"outoptvz":-0.48905760679839466,"position":25,"psi0i":8.7636e-05,"psi0r":-0.00038117,"psiHBi":6.1302e-05,"psiHBr":0.00022604,"psiHi":6.1302e-05,"psiHr":0.00022604,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.8628608250460774,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '723' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:21 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29186,45 +3387,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":7.5136e-05,"psi0r":-0.00035124,"psiHBi":5.2559e-05,"psiHBr":0.00020856,"psiHi":5.2559e-05,"psiHr":0.00020856,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:21 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 82, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29235,44 +3436,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":7.5136e-05,"psi0r":-0.00035124,"psiHBi":5.2559e-05,"psiHBr":0.00020856,"psiHi":5.2559e-05,"psiHr":0.00020856,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:22 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 82, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 7.5136e-05, "psi0r": + -0.00035124, "psiHBi": 5.2559e-05, "psiHBr": 0.00020856, "psiHi": 5.2559e-05, + "psiHr": 0.00020856, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -29282,45 +3484,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":82,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2300,"grazingAngle":970.8146700641615,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.5646273339466237,"nvz":-0.825345972159753,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9320257916882915,"outoptvz":-0.36239194752065534,"position":25,"psi0i":7.5136e-05,"psi0r":-0.00035124,"psiHBi":5.2559e-05,"psiHBr":0.00020856,"psiHi":5.2559e-05,"psiHr":0.00020856,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.825345972159753,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:22 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29331,45 +3533,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":6.4844e-05,"psi0r":-0.0003244,"psiHBi":4.5359e-05,"psiHBr":0.00019282,"psiHi":4.5359e-05,"psiHr":0.00019282,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:22 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 83, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29380,44 +3582,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":6.4844e-05,"psi0r":-0.0003244,"psiHBi":4.5359e-05,"psiHBr":0.00019282,"psiHi":4.5359e-05,"psiHr":0.00019282,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:22 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 83, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 6.4844e-05, "psi0r": + -0.0003244, "psiHBi": 4.5359e-05, "psiHBr": 0.00019282, "psiHi": 4.5359e-05, + "psiHr": 0.00019282, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -29427,45 +3630,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":83,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2400,"grazingAngle":912.3717400876939,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6118715273700553,"nvz":-0.7909571631851092,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679283350447179,"outoptvz":-0.2512264679876711,"position":25,"psi0i":6.4844e-05,"psi0r":-0.0003244,"psiHBi":4.5359e-05,"psiHBr":0.00019282,"psiHi":4.5359e-05,"psiHr":0.00019282,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909571631851092,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:23 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29476,45 +3679,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.6299e-05,"psi0r":-0.0003003,"psiHBi":3.9382e-05,"psiHBr":0.00017863,"psiHi":3.9382e-05,"psiHr":0.00017863,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:23 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 84, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29525,44 +3728,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.6299e-05,"psi0r":-0.0003003,"psiHBi":3.9382e-05,"psiHBr":0.00017863,"psiHi":3.9382e-05,"psiHr":0.00017863,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:23 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 84, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 5.6299e-05, "psi0r": + -0.0003003, "psiHBi": 3.9382e-05, "psiHBr": 0.00017863, "psiHi": 3.9382e-05, + "psiHr": 0.00017863, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -29572,45 +3776,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":84,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2500,"grazingAngle":862.2664209435566,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6507182037027589,"nvz":-0.7593193131811246,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9882057990200681,"outoptvz":-0.1531316387397088,"position":25,"psi0i":5.6299e-05,"psi0r":-0.0003003,"psiHBi":3.9382e-05,"psiHBr":0.00017863,"psiHi":3.9382e-05,"psiHr":0.00017863,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7593193131811246,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:23 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29621,45 +3825,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.9153e-05,"psi0r":-0.00027864,"psiHBi":3.4383e-05,"psiHBr":0.00016585,"psiHi":3.4383e-05,"psiHr":0.00016585,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:23 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 85, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29670,44 +3874,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.9153e-05,"psi0r":-0.00027864,"psiHBi":3.4383e-05,"psiHBr":0.00016585,"psiHi":3.4383e-05,"psiHr":0.00016585,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:23 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 85, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.9153e-05, "psi0r": + -0.00027864, "psiHBi": 3.4383e-05, "psiHBr": 0.00016585, "psiHi": 3.4383e-05, + "psiHr": 0.00016585, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -29717,45 +3922,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":85,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2600,"grazingAngle":818.4902969125865,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6833242425244953,"nvz":-0.7301150454403229,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.997810620762492,"outoptvz":-0.06613595915665141,"position":25,"psi0i":4.9153e-05,"psi0r":-0.00027864,"psiHBi":3.4383e-05,"psiHBr":0.00016585,"psiHi":3.4383e-05,"psiHr":0.00016585,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7301150454403229,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:24 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29766,45 +3971,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.3134e-05,"psi0r":-0.00025912,"psiHBi":3.0173e-05,"psiHBr":0.00015431,"psiHi":3.0173e-05,"psiHr":0.00015431,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:24 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 86, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29815,44 +4020,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.3134e-05,"psi0r":-0.00025912,"psiHBi":3.0173e-05,"psiHBr":0.00015431,"psiHi":3.0173e-05,"psiHr":0.00015431,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:47 GMT + - Mon, 17 Jul 2023 19:41:24 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 86, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.3134e-05, "psi0r": + -0.00025912, "psiHBi": 3.0173e-05, "psiHBr": 0.00015431, "psiHi": 3.0173e-05, + "psiHr": 0.00015431, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -29862,45 +4068,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":86,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2700,"grazingAngle":779.7110548304645,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.711116717523621,"nvz":-0.7030739748123455,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9999353142896803,"outoptvz":0.011373971883132139,"position":25,"psi0i":4.3134e-05,"psi0r":-0.00025912,"psiHBi":3.0173e-05,"psiHBr":0.00015431,"psiHi":3.0173e-05,"psiHr":0.00015431,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7030739748123455,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:24 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29911,45 +4117,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.716e-05,"psi0r":-0.00024149,"psiHBi":3.2832e-05,"psiHBr":0.00014387,"psiHi":3.2832e-05,"psiHr":0.00014387,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:24 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 87, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -29960,44 +4166,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.716e-05,"psi0r":-0.00024149,"psiHBi":3.2832e-05,"psiHBr":0.00014387,"psiHi":3.2832e-05,"psiHr":0.00014387,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:24 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 87, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.716e-05, "psi0r": + -0.00024149, "psiHBi": 3.2832e-05, "psiHBr": 0.00014387, "psiHi": 3.2832e-05, + "psiHr": 0.00014387, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -30007,45 +4214,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":87,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2800,"grazingAngle":744.9914378039773,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.7350937072819351,"nvz":-0.6779655164641493,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9967363698138866,"outoptvz":0.08072551697099953,"position":25,"psi0i":4.716e-05,"psi0r":-0.00024149,"psiHBi":3.2832e-05,"psiHBr":0.00014387,"psiHi":3.2832e-05,"psiHr":0.00014387,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.6779655164641493,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:25 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -30056,45 +4263,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.1297e-05,"psi0r":-0.00022554,"psiHBi":2.8751e-05,"psiHBr":0.00013441,"psiHi":2.8751e-05,"psiHr":0.00013441,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:25 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 88, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -30105,44 +4312,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.1297e-05,"psi0r":-0.00022554,"psiHBi":2.8751e-05,"psiHBr":0.00013441,"psiHi":2.8751e-05,"psiHr":0.00013441,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:25 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 88, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.1297e-05, "psi0r": + -0.00022554, "psiHBi": 2.8751e-05, "psiHBr": 0.00013441, "psiHi": 2.8751e-05, + "psiHr": 0.00013441, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -30152,45 +4360,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":88,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2900,"grazingAngle":713.6366246100541,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.7559863918050825,"nvz":-0.6545873321456291,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9897182307001786,"outoptvz":0.14303084918893544,"position":25,"psi0i":4.1297e-05,"psi0r":-0.00022554,"psiHBi":2.8751e-05,"psiHBr":0.00013441,"psiHi":2.8751e-05,"psiHr":0.00013441,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.6545873321456291,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:25 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -30201,45 +4409,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":3000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.632e-05,"psi0r":-0.00021106,"psiHBi":2.5287e-05,"psiHBr":0.00012581,"psiHi":2.5287e-05,"psiHr":0.00012581,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:25 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 89, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -30250,44 +4458,45 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":3000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.632e-05,"psi0r":-0.00021106,"psiHBi":2.5287e-05,"psiHBr":0.00012581,"psiHi":2.5287e-05,"psiHr":0.00012581,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:25 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 89, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 3000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 3.632e-05, "psi0r": + -0.00021106, "psiHBi": 2.5287e-05, "psiHBr": 0.00012581, "psiHi": 2.5287e-05, + "psiHr": 0.00012581, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: @@ -30297,37 +4506,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":89,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":3000,"grazingAngle":685.1222509583164,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.7743416964232114,"nvz":-0.632767680259053,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9799567979471506,"outoptvz":0.19921012563915377,"position":25,"psi0i":3.632e-05,"psi0r":-0.00021106,"psiHBi":2.5287e-05,"psiHBr":0.00012581,"psiHi":2.5287e-05,"psiHr":0.00012581,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.632767680259053,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '718' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30346,37 +4555,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '935' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '663' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 90, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30395,45 +4604,46 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '935' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '663' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 90, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -30442,37 +4652,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '844' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":90,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '663' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30491,37 +4701,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.775815295846148e-05,"psi0r":-0.0007230563528916463,"psiHBi":3.3343483892850474e-05,"psiHBr":-0.00036777952885757545,"psiHi":3.3343483892850474e-05,"psiHr":-0.00036777952885757545,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 91, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30540,45 +4750,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.775815295846148e-05,"psi0r":-0.0007230563528916463,"psiHBi":3.3343483892850474e-05,"psiHBr":-0.00036777952885757545,"psiHi":3.3343483892850474e-05,"psiHr":-0.00036777952885757545,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 91, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.775815295846148e-05, + "psi0r": -0.0007230563528916463, "psiHBi": 3.3343483892850474e-05, "psiHBr": + -0.00036777952885757545, "psiHi": 3.3343483892850474e-05, "psiHr": -0.00036777952885757545, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -30587,37 +4799,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '968' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":91,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":null,"nvy":null,"nvz":null,"orientation":"y","outframevx":null,"outframevy":null,"outoptvx":null,"outoptvy":null,"outoptvz":null,"position":25,"psi0i":4.775815295846148e-05,"psi0r":-0.0007230563528916463,"psiHBi":3.3343483892850474e-05,"psiHBr":-0.00036777952885757545,"psiHi":3.3343483892850474e-05,"psiHr":-0.00036777952885757545,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":null,"tvy":null,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '723' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30636,37 +4848,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.550874281994092e-05,"psi0r":-0.00019768851095602687,"psiHBi":3.8754741493853286e-05,"psiHBr":-0.00010042053949014805,"psiHi":3.8754741493853286e-05,"psiHr":-0.00010042053949014805,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '788' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 92, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30685,45 +4897,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.550874281994092e-05,"psi0r":-0.00019768851095602687,"psiHBi":3.8754741493853286e-05,"psiHBr":-0.00010042053949014805,"psiHi":3.8754741493853286e-05,"psiHr":-0.00010042053949014805,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '788' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 92, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 5.550874281994092e-05, + "psi0r": -0.00019768851095602687, "psiHBi": 3.8754741493853286e-05, "psiHBr": + -0.00010042053949014805, "psiHi": 3.8754741493853286e-05, "psiHr": -0.00010042053949014805, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -30732,37 +4946,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '969' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":92,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":2100,"grazingAngle":1227.248798040984,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.3368294359510057,"nvz":-0.9415656807025877,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.6342940742837546,"outoptvz":-0.7730918621538547,"position":25,"psi0i":5.550874281994092e-05,"psi0r":-0.00019768851095602687,"psiHBi":3.8754741493853286e-05,"psiHBr":-0.00010042053949014805,"psiHi":3.8754741493853286e-05,"psiHr":-0.00010042053949014805,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9415656807025877,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30781,37 +4995,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":3100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.3184602101969748e-05,"psi0r":-0.00010180547837392904,"psiHBi":9.205141752509539e-06,"psiHBr":-5.382320618895492e-05,"psiHi":9.205141752509539e-06,"psiHr":-5.382320618895492e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 93, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30830,45 +5044,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":3100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.3184602101969748e-05,"psi0r":-0.00010180547837392904,"psiHBi":9.205141752509539e-06,"psiHBr":-5.382320618895492e-05,"psiHi":9.205141752509539e-06,"psiHr":-5.382320618895492e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 93, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 3100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 1.3184602101969748e-05, + "psi0r": -0.00010180547837392904, "psiHBi": 9.205141752509539e-06, "psiHBr": + -5.382320618895492e-05, "psiHi": 9.205141752509539e-06, "psiHr": -5.382320618895492e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -30877,37 +5093,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '966' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":93,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":3100,"grazingAngle":691.6923052921726,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.7701676958847513,"nvz":-0.6378414538234194,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9824897656619258,"outoptvz":0.1863165595688534,"position":25,"psi0i":1.3184602101969748e-05,"psi0r":-0.00010180547837392904,"psiHBi":9.205141752509539e-06,"psiHBr":-5.382320618895492e-05,"psiHi":9.205141752509539e-06,"psiHr":-5.382320618895492e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.6378414538234194,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '783' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30926,37 +5142,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":4100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.678525603384994e-06,"psi0r":-5.886888691106302e-05,"psiHBi":3.2664232897457006e-06,"psiHBr":-3.123648013400793e-05,"psiHi":3.2664232897457006e-06,"psiHr":-3.123648013400793e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 94, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -30975,45 +5191,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":4100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.678525603384994e-06,"psi0r":-5.886888691106302e-05,"psiHBi":3.2664232897457006e-06,"psiHBr":-3.123648013400793e-05,"psiHi":3.2664232897457006e-06,"psiHr":-3.123648013400793e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 94, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 4100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.678525603384994e-06, + "psi0r": -5.886888691106302e-05, "psiHBi": 3.2664232897457006e-06, "psiHBr": + -3.123648013400793e-05, "psiHi": 3.2664232897457006e-06, "psiHr": -3.123648013400793e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -31022,37 +5240,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '966' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":94,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":4100,"grazingAngle":503.2449836256724,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.8760222161656793,"nvz":-0.4822707504962039,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.8449597832831399,"outoptvz":0.5348298464316565,"position":25,"psi0i":4.678525603384994e-06,"psi0r":-5.886888691106302e-05,"psiHBi":3.2664232897457006e-06,"psiHBr":-3.123648013400793e-05,"psiHi":3.2664232897457006e-06,"psiHr":-3.123648013400793e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.4822707504962039,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '783' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31071,37 +5289,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":5100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.0523773295954145e-06,"psi0r":-3.8023651003149884e-05,"psiHBi":1.4329157681398895e-06,"psiHBr":-2.017196200081669e-05,"psiHi":1.4329157681398895e-06,"psiHr":-2.017196200081669e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 95, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31120,45 +5338,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":5100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.0523773295954145e-06,"psi0r":-3.8023651003149884e-05,"psiHBi":1.4329157681398895e-06,"psiHBr":-2.017196200081669e-05,"psiHi":1.4329157681398895e-06,"psiHr":-2.017196200081669e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 95, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 5100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 2.0523773295954145e-06, + "psi0r": -3.8023651003149884e-05, "psiHBi": 1.4329157681398895e-06, "psiHBr": + -2.017196200081669e-05, "psiHi": 1.4329157681398895e-06, "psiHr": -2.017196200081669e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -31167,37 +5387,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '968' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":95,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":5100,"grazingAngle":398.14352552740775,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9217823515825332,"nvz":-0.38770774600332036,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.7147643156754082,"outoptvz":0.6993654073780498,"position":25,"psi0i":2.0523773295954145e-06,"psi0r":-3.8023651003149884e-05,"psiHBi":1.4329157681398895e-06,"psiHBr":-2.017196200081669e-05,"psiHi":1.4329157681398895e-06,"psiHr":-2.017196200081669e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.38770774600332036,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '788' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31216,37 +5436,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":6100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.0335239555772833e-06,"psi0r":-2.650355670204137e-05,"psiHBi":7.215791907957492e-07,"psiHBr":-1.4047819646432538e-05,"psiHi":7.215791907957492e-07,"psiHr":-1.4047819646432538e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 96, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31265,45 +5485,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":6100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":1.0335239555772833e-06,"psi0r":-2.650355670204137e-05,"psiHBi":7.215791907957492e-07,"psiHBr":-1.4047819646432538e-05,"psiHi":7.215791907957492e-07,"psiHr":-1.4047819646432538e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 96, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 6100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 1.0335239555772833e-06, + "psi0r": -2.650355670204137e-05, "psiHBi": 7.215791907957492e-07, "psiHBr": + -1.4047819646432538e-05, "psiHi": 7.215791907957492e-07, "psiHr": -1.4047819646432538e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -31312,37 +5534,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '967' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":96,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":6100,"grazingAngle":330.1119699408576,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.946006054519345,"nvz":-0.3241489546685935,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.6132937473652125,"outoptvz":0.7898549103745162,"position":25,"psi0i":1.0335239555772833e-06,"psi0r":-2.650355670204137e-05,"psiHBi":7.215791907957492e-07,"psiHBr":-1.4047819646432538e-05,"psiHi":7.215791907957492e-07,"psiHr":-1.4047819646432538e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.3241489546685935,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '783' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31361,37 +5583,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":7100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.735902620398632e-07,"psi0r":-1.9504732641222407e-05,"psiHBi":4.004656059470476e-07,"psiHBr":-1.0328310676988145e-05,"psiHi":4.004656059470476e-07,"psiHr":-1.0328310676988145e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 97, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31410,45 +5632,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":7100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.735902620398632e-07,"psi0r":-1.9504732641222407e-05,"psiHBi":4.004656059470476e-07,"psiHBr":-1.0328310676988145e-05,"psiHi":4.004656059470476e-07,"psiHr":-1.0328310676988145e-05,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 97, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 7100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 5.735902620398632e-07, + "psi0r": -1.9504732641222407e-05, "psiHBi": 4.004656059470476e-07, "psiHBr": + -1.0328310676988145e-05, "psiHi": 4.004656059470476e-07, "psiHr": -1.0328310676988145e-05, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -31457,37 +5681,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '967' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":97,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":7100,"grazingAngle":282.22577483930144,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9604379528006559,"nvz":-0.2784940552688424,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.5349525206191195,"outoptvz":0.8448821223598298,"position":25,"psi0i":5.735902620398632e-07,"psi0r":-1.9504732641222407e-05,"psiHBi":4.004656059470476e-07,"psiHBr":-1.0328310676988145e-05,"psiHi":4.004656059470476e-07,"psiHr":-1.0328310676988145e-05,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.2784940552688424,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31506,37 +5730,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":8100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.42352258621059e-07,"psi0r":-1.4942990208797548e-05,"psiHBi":2.3902132544658607e-07,"psiHBr":-7.905479491308993e-06,"psiHi":2.3902132544658607e-07,"psiHr":-7.905479491308993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 98, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31555,45 +5779,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":8100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.42352258621059e-07,"psi0r":-1.4942990208797548e-05,"psiHBi":2.3902132544658607e-07,"psiHBr":-7.905479491308993e-06,"psiHi":2.3902132544658607e-07,"psiHr":-7.905479491308993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '785' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 98, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 8100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 3.42352258621059e-07, + "psi0r": -1.4942990208797548e-05, "psiHBi": 2.3902132544658607e-07, "psiHBr": + -7.905479491308993e-06, "psiHi": 2.3902132544658607e-07, "psiHr": -7.905479491308993e-06, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -31602,37 +5828,37 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '966' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":98,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":8100,"grazingAngle":246.6038632664837,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9697470501806547,"nvz":-0.24411197976731688,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.47345374458623024,"outoptvz":0.8808186826681622,"position":25,"psi0i":3.42352258621059e-07,"psi0r":-1.4942990208797548e-05,"psiHBi":2.3902132544658607e-07,"psiHBr":-7.905479491308993e-06,"psiHi":2.3902132544658607e-07,"psiHr":-7.905479491308993e-06,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.24411197976731688,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '786' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31651,37 +5877,37 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":9100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.1671096399276739e-07,"psi0r":-1.1811865976063941e-05,"psiHBi":1.5130188438363172e-07,"psiHBr":-6.244347024147993e-06,"psiHi":1.5130188438363172e-07,"psiHr":-6.244347024147993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 99, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": @@ -31700,45 +5926,47 @@ interactions: Connection: - keep-alive Content-Length: - - '934' + - '936' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":9100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":2.1671096399276739e-07,"psi0r":-1.1811865976063941e-05,"psiHBi":1.5130188438363172e-07,"psiHBr":-6.244347024147993e-06,"psiHi":1.5130188438363172e-07,"psiHr":-6.244347024147993e-06,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 99, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, - "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": "Mono Crystal 1", - "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": - "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": + "0", "energy": 9100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", + "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 2.1671096399276739e-07, + "psi0r": -1.1811865976063941e-05, "psiHBi": 1.5130188438363172e-07, "psiHBr": + -6.244347024147993e-06, "psiHi": 1.5130188438363172e-07, "psiHr": -6.244347024147993e-06, + "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, + "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "photon_energy": + 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -31747,45 +5975,45 @@ interactions: Connection: - keep-alive Content-Length: - - '843' + - '968' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":99,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.1355713563754857,"diffractionAngle":"0","energy":9100,"grazingAngle":219.03360804148804,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si + (SRW)","nvx":0,"nvy":0.9761078889488081,"nvz":-0.2172864218765209,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.42418998111026185,"outoptvz":0.9055732217361971,"position":25,"psi0i":2.1671096399276739e-07,"psi0r":-1.1811865976063941e-05,"psiHBi":1.5130188438363172e-07,"psiHBr":-6.244347024147993e-06,"psiHi":1.5130188438363172e-07,"psiHr":-6.244347024147993e-06,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.2172864218765209,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '662' + - '787' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -31796,45 +6024,45 @@ interactions: Connection: - keep-alive Content-Length: - - '935' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '663' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 100, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", "nvx": 0, "nvy": 0.6119182833983884, - "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": - 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, - "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": -0.00015133473800612508, - "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, "psiHi": - 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": 0, - "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": + 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": + 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": + -0.25111202888553913, "position": 25, "psi0i": 2.8733167819721347e-05, "psi0r": + -0.00015133473800612508, "psiHBi": 2.006074060738366e-05, "psiHBr": -7.912710547916795e-05, + "psiHi": 2.006074060738366e-05, "psiHr": -7.912710547916795e-05, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": "1"}, "simulationId": "00000002", "simulationType": "srw"}' headers: @@ -31845,40 +6073,40 @@ interactions: Connection: - keep-alive Content-Length: - - '935' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '663' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, - "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Si (SRW)", - "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + 1000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": @@ -31893,37 +6121,37 @@ interactions: Connection: - keep-alive Content-Length: - - '844' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: - body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Si - (SRW)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + body: + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '663' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -31942,37 +6170,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -31991,46 +6219,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 1, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -32039,37 +6267,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32088,37 +6316,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:26 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32137,46 +6365,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:27 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 2, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -32185,37 +6413,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":2,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:27 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32234,37 +6462,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:48 GMT + - Mon, 17 Jul 2023 19:41:27 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32283,46 +6511,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:49 GMT + - Mon, 17 Jul 2023 19:41:27 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 3, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -32331,37 +6559,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":3,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:49 GMT + - Mon, 17 Jul 2023 19:41:27 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32380,37 +6608,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:49 GMT + - Mon, 17 Jul 2023 19:41:27 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 4, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32429,46 +6657,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:49 GMT + - Mon, 17 Jul 2023 19:41:27 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 4, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -32477,37 +6705,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":4,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:49 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32526,37 +6754,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:49 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 5, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32575,46 +6803,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 5, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -32623,37 +6851,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":5,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32672,37 +6900,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 6, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32721,46 +6949,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 6, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -32769,37 +6997,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":6,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32818,37 +7046,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:28 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 7, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32867,46 +7095,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:29 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 7, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -32915,37 +7143,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":7,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:29 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -32964,37 +7192,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:29 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 8, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33013,46 +7241,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:29 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 8, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 1800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, + "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, + "psiHBi": null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": + 0, "title": "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", + "useCase": "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": + "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -33061,37 +7289,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '852' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":8,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":1800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '671' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:50 GMT + - Mon, 17 Jul 2023 19:41:29 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33110,37 +7338,37 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":1900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00014559,"psi0r":-0.00049264,"psiHBi":0.00010184,"psiHBr":0.00029019,"psiHi":0.00010184,"psiHr":0.00029019,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:51 GMT + - Mon, 17 Jul 2023 19:41:29 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 9, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 1900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33159,46 +7387,46 @@ interactions: Connection: - keep-alive Content-Length: - - '940' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":1900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00014559,"psi0r":-0.00049264,"psiHBi":0.00010184,"psiHBr":0.00029019,"psiHi":0.00010184,"psiHr":0.00029019,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:51 GMT + - Mon, 17 Jul 2023 19:41:29 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 9, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 1900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 0.00014559, "psi0r": + -0.00049264, "psiHBi": 0.00010184, "psiHBr": 0.00029019, "psiHi": 0.00010184, + "psiHr": 0.00029019, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -33207,37 +7435,37 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":9,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":1900,"grazingAngle":1527.9567664241413,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.04282645818011888,"nvz":-0.9990825263609341,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.08557433206736768,"outoptvz":-0.9963317889594931,"position":25,"psi0i":0.00014559,"psi0r":-0.00049264,"psiHBi":0.00010184,"psiHBr":0.00029019,"psiHi":0.00010184,"psiHr":0.00029019,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9990825263609341,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '668' + - '724' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:51 GMT + - Mon, 17 Jul 2023 19:41:30 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33256,37 +7484,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.0001219,"psi0r":-0.00045163,"psiHBi":8.5268e-05,"psiHBr":0.00026681,"psiHi":8.5268e-05,"psiHr":0.00026681,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:51 GMT + - Mon, 17 Jul 2023 19:41:30 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 10, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33305,46 +7533,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.0001219,"psi0r":-0.00045163,"psiHBi":8.5268e-05,"psiHBr":0.00026681,"psiHi":8.5268e-05,"psiHr":0.00026681,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:51 GMT + - Mon, 17 Jul 2023 19:41:30 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 10, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 0.0001219, "psi0r": + -0.00045163, "psiHBi": 8.5268e-05, "psiHBr": 0.00026681, "psiHi": 8.5268e-05, + "psiHr": 0.00026681, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -33353,37 +7581,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":10,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2000,"grazingAngle":1250.5053237483464,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.3148427776915903,"nvz":-0.9491438380643072,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.5976621648100469,"outoptvz":-0.8017480506708877,"position":25,"psi0i":0.0001219,"psi0r":-0.00045163,"psiHBi":8.5268e-05,"psiHBr":0.00026681,"psiHi":8.5268e-05,"psiHr":0.00026681,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9491438380643072,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:51 GMT + - Mon, 17 Jul 2023 19:41:30 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33402,37 +7630,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00010295,"psi0r":-0.00041453,"psiHBi":7.2015e-05,"psiHBr":0.00024543,"psiHi":7.2015e-05,"psiHr":0.00024543,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:51 GMT + - Mon, 17 Jul 2023 19:41:30 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 11, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33451,46 +7679,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2100,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":0.00010295,"psi0r":-0.00041453,"psiHBi":7.2015e-05,"psiHBr":0.00024543,"psiHi":7.2015e-05,"psiHr":0.00024543,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:30 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 11, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2100, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 0.00010295, "psi0r": + -0.00041453, "psiHBi": 7.2015e-05, "psiHBr": 0.00024543, "psiHi": 7.2015e-05, + "psiHr": 0.00024543, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -33499,37 +7727,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":11,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2100,"grazingAngle":1128.9137849278982,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.42764194218839835,"nvz":-0.9039482116146558,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.7731323377052415,"outoptvz":-0.6342447385626692,"position":25,"psi0i":0.00010295,"psi0r":-0.00041453,"psiHBi":7.2015e-05,"psiHBr":0.00024543,"psiHi":7.2015e-05,"psiHr":0.00024543,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.9039482116146558,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '723' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:31 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33548,37 +7776,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":8.7636e-05,"psi0r":-0.00038117,"psiHBi":6.1302e-05,"psiHBr":0.00022604,"psiHi":6.1302e-05,"psiHr":0.00022604,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:31 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 12, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33597,46 +7825,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2200,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":8.7636e-05,"psi0r":-0.00038117,"psiHBi":6.1302e-05,"psiHBr":0.00022604,"psiHi":6.1302e-05,"psiHr":0.00022604,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:31 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 12, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2200, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 8.7636e-05, "psi0r": + -0.00038117, "psiHBi": 6.1302e-05, "psiHBr": 0.00022604, "psiHi": 6.1302e-05, + "psiHr": 0.00022604, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -33645,37 +7873,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":12,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2200,"grazingAngle":1040.9026687621063,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.5054415857453782,"nvz":-0.8628608250460774,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.8722514873777096,"outoptvz":-0.48905760679839466,"position":25,"psi0i":8.7636e-05,"psi0r":-0.00038117,"psiHBi":6.1302e-05,"psiHBr":0.00022604,"psiHi":6.1302e-05,"psiHr":0.00022604,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.8628608250460774,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '723' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:31 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33694,37 +7922,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":7.5136e-05,"psi0r":-0.00035124,"psiHBi":5.2559e-05,"psiHBr":0.00020856,"psiHi":5.2559e-05,"psiHr":0.00020856,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:31 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 13, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33743,46 +7971,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2300,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":7.5136e-05,"psi0r":-0.00035124,"psiHBi":5.2559e-05,"psiHBr":0.00020856,"psiHi":5.2559e-05,"psiHr":0.00020856,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:32 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 13, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2300, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 7.5136e-05, "psi0r": + -0.00035124, "psiHBi": 5.2559e-05, "psiHBr": 0.00020856, "psiHi": 5.2559e-05, + "psiHr": 0.00020856, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -33791,37 +8019,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":13,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2300,"grazingAngle":970.8146700641615,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.5646273339466237,"nvz":-0.825345972159753,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9320257916882915,"outoptvz":-0.36239194752065534,"position":25,"psi0i":7.5136e-05,"psi0r":-0.00035124,"psiHBi":5.2559e-05,"psiHBr":0.00020856,"psiHi":5.2559e-05,"psiHr":0.00020856,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.825345972159753,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:32 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33840,37 +8068,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":6.4844e-05,"psi0r":-0.0003244,"psiHBi":4.5359e-05,"psiHBr":0.00019282,"psiHi":4.5359e-05,"psiHr":0.00019282,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:32 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 14, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33889,46 +8117,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2400,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":6.4844e-05,"psi0r":-0.0003244,"psiHBi":4.5359e-05,"psiHBr":0.00019282,"psiHi":4.5359e-05,"psiHr":0.00019282,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:32 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 14, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2400, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 6.4844e-05, "psi0r": + -0.0003244, "psiHBi": 4.5359e-05, "psiHBr": 0.00019282, "psiHi": 4.5359e-05, + "psiHr": 0.00019282, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -33937,37 +8165,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":14,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2400,"grazingAngle":912.3717400876939,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6118715273700553,"nvz":-0.7909571631851092,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679283350447179,"outoptvz":-0.2512264679876711,"position":25,"psi0i":6.4844e-05,"psi0r":-0.0003244,"psiHBi":4.5359e-05,"psiHBr":0.00019282,"psiHi":4.5359e-05,"psiHr":0.00019282,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7909571631851092,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:52 GMT + - Mon, 17 Jul 2023 19:41:32 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -33986,37 +8214,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.6299e-05,"psi0r":-0.0003003,"psiHBi":3.9382e-05,"psiHBr":0.00017863,"psiHi":3.9382e-05,"psiHr":0.00017863,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:32 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 15, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34035,46 +8263,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2500,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":5.6299e-05,"psi0r":-0.0003003,"psiHBi":3.9382e-05,"psiHBr":0.00017863,"psiHi":3.9382e-05,"psiHr":0.00017863,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:32 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 15, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2500, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 5.6299e-05, "psi0r": + -0.0003003, "psiHBi": 3.9382e-05, "psiHBr": 0.00017863, "psiHi": 3.9382e-05, + "psiHr": 0.00017863, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -34083,37 +8311,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":15,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2500,"grazingAngle":862.2664209435566,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6507182037027589,"nvz":-0.7593193131811246,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9882057990200681,"outoptvz":-0.1531316387397088,"position":25,"psi0i":5.6299e-05,"psi0r":-0.0003003,"psiHBi":3.9382e-05,"psiHBr":0.00017863,"psiHi":3.9382e-05,"psiHr":0.00017863,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7593193131811246,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34132,37 +8360,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.9153e-05,"psi0r":-0.00027864,"psiHBi":3.4383e-05,"psiHBr":0.00016585,"psiHi":3.4383e-05,"psiHr":0.00016585,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 16, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34181,46 +8409,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2600,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.9153e-05,"psi0r":-0.00027864,"psiHBi":3.4383e-05,"psiHBr":0.00016585,"psiHi":3.4383e-05,"psiHr":0.00016585,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 16, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2600, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.9153e-05, "psi0r": + -0.00027864, "psiHBi": 3.4383e-05, "psiHBr": 0.00016585, "psiHi": 3.4383e-05, + "psiHr": 0.00016585, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -34229,37 +8457,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":16,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2600,"grazingAngle":818.4902969125865,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6833242425244953,"nvz":-0.7301150454403229,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.997810620762492,"outoptvz":-0.06613595915665141,"position":25,"psi0i":4.9153e-05,"psi0r":-0.00027864,"psiHBi":3.4383e-05,"psiHBr":0.00016585,"psiHi":3.4383e-05,"psiHr":0.00016585,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7301150454403229,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34278,37 +8506,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.3134e-05,"psi0r":-0.00025912,"psiHBi":3.0173e-05,"psiHBr":0.00015431,"psiHi":3.0173e-05,"psiHr":0.00015431,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 17, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34327,46 +8555,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2700,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.3134e-05,"psi0r":-0.00025912,"psiHBi":3.0173e-05,"psiHBr":0.00015431,"psiHi":3.0173e-05,"psiHr":0.00015431,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 17, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2700, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.3134e-05, "psi0r": + -0.00025912, "psiHBi": 3.0173e-05, "psiHBr": 0.00015431, "psiHi": 3.0173e-05, + "psiHr": 0.00015431, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -34375,37 +8603,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":17,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2700,"grazingAngle":779.7110548304645,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.711116717523621,"nvz":-0.7030739748123455,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9999353142896803,"outoptvz":0.011373971883132139,"position":25,"psi0i":4.3134e-05,"psi0r":-0.00025912,"psiHBi":3.0173e-05,"psiHBr":0.00015431,"psiHi":3.0173e-05,"psiHr":0.00015431,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.7030739748123455,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34424,37 +8652,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.716e-05,"psi0r":-0.00024149,"psiHBi":3.2832e-05,"psiHBr":0.00014387,"psiHi":3.2832e-05,"psiHr":0.00014387,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:33 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 18, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34473,46 +8701,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2800,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.716e-05,"psi0r":-0.00024149,"psiHBi":3.2832e-05,"psiHBr":0.00014387,"psiHi":3.2832e-05,"psiHr":0.00014387,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 18, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2800, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.716e-05, "psi0r": + -0.00024149, "psiHBi": 3.2832e-05, "psiHBr": 0.00014387, "psiHi": 3.2832e-05, + "psiHr": 0.00014387, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -34521,37 +8749,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":18,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2800,"grazingAngle":744.9914378039773,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.7350937072819351,"nvz":-0.6779655164641493,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9967363698138866,"outoptvz":0.08072551697099953,"position":25,"psi0i":4.716e-05,"psi0r":-0.00024149,"psiHBi":3.2832e-05,"psiHBr":0.00014387,"psiHi":3.2832e-05,"psiHr":0.00014387,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.6779655164641493,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '720' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:53 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34570,37 +8798,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.1297e-05,"psi0r":-0.00022554,"psiHBi":2.8751e-05,"psiHBr":0.00013441,"psiHi":2.8751e-05,"psiHr":0.00013441,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:54 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 19, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 2900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34619,46 +8847,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2900,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":4.1297e-05,"psi0r":-0.00022554,"psiHBi":2.8751e-05,"psiHBr":0.00013441,"psiHi":2.8751e-05,"psiHr":0.00013441,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '722' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:54 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 19, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 2900, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 4.1297e-05, "psi0r": + -0.00022554, "psiHBi": 2.8751e-05, "psiHBr": 0.00013441, "psiHi": 2.8751e-05, + "psiHr": 0.00013441, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -34667,37 +8895,37 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '903' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":19,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":2900,"grazingAngle":713.6366246100541,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.7559863918050825,"nvz":-0.6545873321456291,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9897182307001786,"outoptvz":0.14303084918893544,"position":25,"psi0i":4.1297e-05,"psi0r":-0.00022554,"psiHBi":2.8751e-05,"psiHBr":0.00013441,"psiHi":2.8751e-05,"psiHr":0.00013441,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.6545873321456291,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:54 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34716,37 +8944,37 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":3000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.632e-05,"psi0r":-0.00021106,"psiHBi":2.5287e-05,"psiHBr":0.00012581,"psiHi":2.5287e-05,"psiHr":0.00012581,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:54 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_init", "optical_element": {"asymmetryAngle": 0, "crystalThickness": - 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 20, + 0.003, "dSpacing": 3.1355713563754857, "diffractionAngle": "0", "energy": 3000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": @@ -34765,46 +8993,46 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '943' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":3000,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":3.632e-05,"psi0r":-0.00021106,"psiHBi":2.5287e-05,"psiHBr":0.00012581,"psiHi":2.5287e-05,"psiHr":0.00012581,"rotationAngle":0,"title":"Mono Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '721' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:54 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK - request: body: '{"method": "crystal_orientation", "optical_element": {"asymmetryAngle": - 0, "crystalThickness": 0.003, "dSpacing": null, "diffractionAngle": "0", "energy": - 20, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": 1, "heightProfileFile": - "", "id": 4, "k": "1", "l": "1", "material": "Germanium (X0h)", "nvx": 0, "nvy": - 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": "y", "outframevx": - 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, "outoptvz": - -0.25111202888553913, "position": 25, "psi0i": null, "psi0r": null, "psiHBi": - null, "psiHBr": null, "psiHi": null, "psiHr": null, "rotationAngle": 0, "title": - "Mono Crystal 1", "tvx": 0, "tvy": 0.7909209912771121, "type": "crystal", "useCase": - "1", "transmissionImage": "1"}, "photon_energy": 2500, "simulationId": "00000002", - "simulationType": "srw"}' + 0, "crystalThickness": 0.003, "dSpacing": 3.2665323530210646, "diffractionAngle": + "0", "energy": 3000, "grazingAngle": 912.3126255115334, "h": "1", "heightAmplification": + 1, "heightProfileFile": "", "id": 4, "k": "1", "l": "1", "material": "Germanium + (X0h)", "nvx": 0, "nvy": 0.6119182833983884, "nvz": -0.7909209912771121, "orientation": + "y", "outframevx": 1.0, "outframevy": 0.0, "outoptvx": 0.0, "outoptvy": 0.9679580305720843, + "outoptvz": -0.25111202888553913, "position": 25, "psi0i": 3.632e-05, "psi0r": + -0.00021106, "psiHBi": 2.5287e-05, "psiHBr": 0.00012581, "psiHi": 2.5287e-05, + "psiHr": 0.00012581, "rotationAngle": 0, "title": "Mono Crystal 1", "tvx": 0, + "tvy": 0.7909209912771121, "type": "crystal", "useCase": "1", "transmissionImage": + "1"}, "photon_energy": 2500, "simulationId": "00000002", "simulationType": "srw"}' headers: Accept: - '*/*' @@ -34813,31 +9041,31 @@ interactions: Connection: - keep-alive Content-Length: - - '850' + - '902' Content-Type: - application/json Cookie: - - sirepo_dev=Z0FBQUFBQmtwdE9PUTZkS3NBeGlkNTVfS2dSTVctYmUxU0w3T2szcjRtVnhlSjR6VHdZTG8yQWRpVVhYRWo2eGVlcTB0MWotZ3dfQUNyam1CWkwzNi1SUE1pLUJ1ejZuRmNMa3ZPSUFyLW9LaHdnMlZxR3RGQW0yYjVQTXp6S0tOM0xOVVRwMURkZmY= + - sirepo_dev=Z0FBQUFBQmt0WmxaNURGME9Ca3oxUjJfVUxTU0QxQkRZc0FrNFVZUFBFaG1hV0RMeWFpZVF2ekQ3c3dNanpfeGswenAxcW5qRU5PREhPUFJ0cHowYm9VbjRudk5DeWh6YWVZcndIT3RlMkN6S2dlbUg3dXZicWNIT3d0ZW5vR054Mk9YWnY2Y3hBWVk= User-Agent: - python-requests/2.31.0 method: POST uri: http://localhost:8000/stateless-compute response: body: - string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":null,"diffractionAngle":"0","energy":20,"grazingAngle":912.3126255115334,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium - (X0h)","nvx":0,"nvy":0.6119182833983884,"nvz":-0.7909209912771121,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9679580305720843,"outoptvz":-0.25111202888553913,"position":25,"psi0i":null,"psi0r":null,"psiHBi":null,"psiHBr":null,"psiHi":null,"psiHr":null,"rotationAngle":0,"title":"Mono - Crystal 1","tvx":0,"tvy":0.7909209912771121,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' + string: '{"asymmetryAngle":0,"crystalThickness":0.003,"dSpacing":3.2665323530210646,"diffractionAngle":"0","energy":3000,"grazingAngle":685.1222509583164,"h":"1","heightAmplification":1,"heightProfileFile":"","id":4,"k":"1","l":"1","material":"Germanium + (X0h)","nvx":0,"nvy":0.7743416964232114,"nvz":-0.632767680259053,"orientation":"y","outframevx":1.0,"outframevy":0.0,"outoptvx":0.0,"outoptvy":0.9799567979471506,"outoptvz":0.19921012563915377,"position":25,"psi0i":3.632e-05,"psi0r":-0.00021106,"psiHBi":2.5287e-05,"psiHBr":0.00012581,"psiHi":2.5287e-05,"psiHr":0.00012581,"rotationAngle":0,"title":"Mono + Crystal 1","tvx":0,"tvy":0.632767680259053,"type":"crystal","useCase":"1","transmissionImage":"1","state":"completed"}' headers: Access-Control-Allow-Origin: - '*' Content-Length: - - '669' + - '718' Content-Type: - - application/json + - application/json; charset="utf8" Date: - - Thu, 06 Jul 2023 14:45:54 GMT + - Mon, 17 Jul 2023 19:41:34 GMT Server: - - Werkzeug/2.0.3 Python/3.9.15 + - TornadoServer/6.3.2 status: code: 200 message: OK