From 32a6ce2346be8a8be5c2abf0f59e598efea3812b Mon Sep 17 00:00:00 2001 From: Varvara Efremova Date: Wed, 1 Jun 2022 18:53:09 +1000 Subject: [PATCH] Convert data to generic Vega format, remove opendatafit-types dependency --- addon/modifiers/vega.ts | 2 - package.json | 1 - tests/dummy/app/controllers/application.ts | 99 +- tests/dummy/app/utils/data.ts | 55000 ++----------------- yarn.lock | 4 - 5 files changed, 3911 insertions(+), 51195 deletions(-) diff --git a/addon/modifiers/vega.ts b/addon/modifiers/vega.ts index 5334a9b..1746391 100644 --- a/addon/modifiers/vega.ts +++ b/addon/modifiers/vega.ts @@ -7,8 +7,6 @@ import * as Vega from 'vega'; import * as VegaLite from 'vega-lite'; import * as VegaTooltip from 'vega-tooltip'; -import { Resource, View } from 'opendatafit-types'; - const DEFAULT_CONFIG: Vega.Config = { background: '#fff', diff --git a/package.json b/package.json index 25ed733..1858fda 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,6 @@ "ember-cli-typescript": "^5.1.0", "ember-lodash": "^4.19.5", "ember-modifier": "^3.2.7", - "opendatafit-types": "git+ssh://git@github.com:opendatafit/opendatafit-types.git", "vega": "^5.22.1", "vega-lite": "^5.2.0", "vega-tooltip": "^0.28.0" diff --git a/tests/dummy/app/controllers/application.ts b/tests/dummy/app/controllers/application.ts index 6ce595d..efa22df 100644 --- a/tests/dummy/app/controllers/application.ts +++ b/tests/dummy/app/controllers/application.ts @@ -1,104 +1,39 @@ import Controller from '@ember/controller'; import { action } from '@ember/object'; import { tracked } from '@glimmer/tracking'; -import { cloneDeep } from 'lodash'; -import { Resource, View } from 'opendatafit-types'; +import { Spec } from 'vega'; import { - DATAPACKAGE, - DATA, - FIT_DATA, + DataRecord, + CONFIG, + SPEC, + SPEC_TYPE, + DATA_1, DATA_2, - FIT_DATA_2 } from '../utils/data'; export default class Application extends Controller { - @tracked dataResource!: Resource; - @tracked fitResource!: Resource; + @tracked spec: Spec; + @tracked specType: string; + @tracked config: object; + @tracked data: DataRecord; constructor() { super(...arguments); - this.dataResource = DATAPACKAGE.resources[4] as Resource; - this.dataResource.data = DATA; + this.spec = SPEC; + this.specType = SPEC_TYPE; + this.config = CONFIG; + this.data = DATA_1; - this.fitResource = DATAPACKAGE.resources[5] as Resource; - this.fitResource.data = FIT_DATA; - } - - get resources() { - return [ - this.dataResource, - this.fitResource - ]; - } - - get data() { - type Data = Record; - let data: Record = {}; - data[this.dataResource.name] = this.dataResource.data as Data; - data[this.fitResource.name] = this.fitResource.data as Data; - return data; - } - - get spec() { - return this.view.spec; - } - - get specType() { - return this.view.specType; - } - - get view() { - return DATAPACKAGE.views[4] as View; - } - - get config() { - return { - "background": "#fff", - "arc": {"fill": "#3e5c69"}, - "area": {"fill": "#3e5c69"}, - "line": {"stroke": "#3e5c69"}, - "path": {"stroke": "#3e5c69"}, - "rect": {"fill": "#3e5c69"}, - "shape": {"stroke": "#3e5c69"}, - "symbol": {"fill": "#3e5c69"}, - "axis": { - "domainWidth": 0.5, - "grid": true, - "labelPadding": 2, - "tickSize": 5, - "tickWidth": 0.5, - "titleFontWeight": "normal" - }, - "axisBand": {"grid": false}, - "axisX": {"gridWidth": 0.2}, - "axisY": {"gridDash": [3], "gridWidth": 0.4}, - "legend": {"labelFontSize": 11, "padding": 1, "symbolType": "square"}, - "range": { - "category": [ - "#3e5c69", - "#6793a6", - "#182429", - "#0570b0", - "#3690c0", - "#74a9cf", - "#a6bddb", - "#e2ddf2" - ] - } - }; + console.log('Constructor loaded data:', this.data); } @action updateData() { - let updatedDataResource = cloneDeep(this.dataResource) - updatedDataResource.data = DATA_2; - this.dataResource = updatedDataResource; - let updatedFitResource = cloneDeep(this.fitResource) - updatedFitResource.data = FIT_DATA_2; - this.fitResource = updatedFitResource; + this.data = DATA_2; + console.log('Data after update:', this.data); } } diff --git a/tests/dummy/app/utils/data.ts b/tests/dummy/app/utils/data.ts index f4f3172..81ea2c8 100644 --- a/tests/dummy/app/utils/data.ts +++ b/tests/dummy/app/utils/data.ts @@ -1,51136 +1,3924 @@ -import { Datapackage } from 'opendatafit-types'; +import { Spec } from 'vega'; +export type DataArray = Array>; +export type DataRecord = Record; -export const DATAPACKAGE: Datapackage = { - "algorithms": [ +export const CONFIG: object = { + "background": "#fff", + "arc": {"fill": "#3e5c69"}, + "area": {"fill": "#3e5c69"}, + "line": {"stroke": "#3e5c69"}, + "path": {"stroke": "#3e5c69"}, + "rect": {"fill": "#3e5c69"}, + "shape": {"stroke": "#3e5c69"}, + "symbol": {"fill": "#3e5c69"}, + "axis": { + "domainWidth": 0.5, + "grid": true, + "labelPadding": 2, + "tickSize": 5, + "tickWidth": 0.5, + "titleFontWeight": "normal" + }, + "axisBand": {"grid": false}, + "axisX": {"gridWidth": 0.2}, + "axisY": {"gridDash": [3], "gridWidth": 0.4}, + "legend": {"labelFontSize": 11, "padding": 1, "symbolType": "square"}, + "range": { + "category": [ + "#3e5c69", + "#6793a6", + "#182429", + "#0570b0", + "#3690c0", + "#74a9cf", + "#a6bddb", + "#e2ddf2" + ] + } +}; + +export const SPEC_TYPE: string = 'vega'; + +export const SPEC: Spec = { + "data": [ { - "name": "sas", - "title": "SAS 1D", - "code": "ZGVmIG1haW4oCiAgICBkYXRhLAogICAgcGFyYW1zLAogICAgc2ZfcGFyYW1zLAogICAgb3B0aW9ucywKICAgICoqa3dhcmdzCik6IAogICAgZnJvbSBjb3B5IGltcG9ydCBkZWVwY29weQoKICAgIGltcG9ydCBzYXNtb2RlbHMgYXMgc20KICAgIGltcG9ydCBzYXNtb2RlbHMuZGF0YQogICAgaW1wb3J0IHNhc21vZGVscy5jb3JlCiAgICBpbXBvcnQgc2FzbW9kZWxzLmJ1bXBzX21vZGVsCgogICAgZnJvbSBzYXMuc2FzY2FsYy5kYXRhbG9hZGVyLmRhdGFfaW5mbyBpbXBvcnQgRGF0YTFECiAgICBmcm9tIHNhcy5zYXNjYWxjLmRhdGFsb2FkZXIubG9hZGVyIGltcG9ydCBMb2FkZXIKCiAgICBpbXBvcnQgYnVtcHMuZml0cHJvYmxlbQogICAgaW1wb3J0IGJ1bXBzLmZpdHRlcnMKICAgIGZyb20gYnVtcHMub3B0aW9ucyBpbXBvcnQgRklUX0NPTkZJRwoKICAgIGltcG9ydCBudW1weSBhcyBucAogICAgaW1wb3J0IHBhbmRhcyBhcyBwZAoKICAgIGZyb20gZnJpY3Rpb25sZXNzIGltcG9ydCBSZXNvdXJjZSwgUGFja2FnZQoKICAgIGltcG9ydCBiYXNlNjQKICAgIGltcG9ydCBpbwoKICAgIGltcG9ydCB0ZW1wZmlsZQoKCiAgICAjID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KICAgICMgR2VuZXJhbCBoZWxwZXJzCgogICAgZGVmIGZpbmQobHN0LCBrZXksIHZhbHVlKToKICAgICAgICAjIFJldHVybiBpdGVtIGl0ZW0gbWF0Y2hpbmcgaVtrZXldID09IHZhbHVlIGluIGEgbGlzdCBvZiBkaWN0cwogICAgICAgIGZvciBkaWMgaW4gbHN0OgogICAgICAgICAgICBpZiBkaWNba2V5XSA9PSB2YWx1ZToKICAgICAgICAgICAgICAgIHJldHVybiBkaWMKICAgICAgICByZXR1cm4gTm9uZQoKCiAgICAjID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KICAgICMgU0FTIGhlbHBlcnMKCgogICAgZGVmIHBhcmFtZXRlcl9yZXNvdXJjZV90b19idW1wc19tb2RlbChrZXJuZWwsIHJlc291cmNlKToKICAgICAgICAjIFRPRE86IE5lZWQgYSB3YXkgdG8gaW5jbHVkZS9leGNsdWRlIFBEIHBhcmFtZXRlcnMgZGVwZW5kaW5nIG9uIG9wdGlvbgogICAgICAgICMgc2VsZWN0aW9uLi4uCgogICAgICAgIHBhcmFtcyA9IHJlc291cmNlLmdldF92YWx1ZXMoKQogICAgICAgIG1vZGVsID0gc20uYnVtcHNfbW9kZWwuTW9kZWwoa2VybmVsLCAqKnBhcmFtcykKCiAgICAgICAgZm9yIGtleSwgcGFyYW0gaW4gcmVzb3VyY2UuZGF0YS5pdGVtcygpOgogICAgICAgICAgICBpZiB0eXBlKChnZXRhdHRyKG1vZGVsLCBrZXkpKSkgPT0gYnVtcHMucGFyYW1ldGVyLlBhcmFtZXRlcjoKICAgICAgICAgICAgICAgIHZhcnkgPSBwYXJhbS5nZXQoInZhcnkiLCBOb25lKQogICAgICAgICAgICAgICAgaWYgdmFyeSBpcyBub3QgTm9uZToKICAgICAgICAgICAgICAgICAgICBpZiB2YXJ5OgogICAgICAgICAgICAgICAgICAgICAgICAjICh0aGlzIGFsc28gc2V0cyBmaXhlZD1GYWxzZSBpbiBidW1wcykKICAgICAgICAgICAgICAgICAgICAgICAgZ2V0YXR0cihtb2RlbCwga2V5KS5saW1pdHMgPSAoCiAgICAgICAgICAgICAgICAgICAgICAgICAgICBwYXJhbVsibG93ZXJCb3VuZCJdLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgcGFyYW1bInVwcGVyQm91bmQiXSwKICAgICAgICAgICAgICAgICAgICAgICAgKQogICAgICAgICAgICAgICAgICAgICAgICBnZXRhdHRyKG1vZGVsLCBrZXkpLmZpeGVkID0gRmFsc2UKICAgICAgICAgICAgICAgICAgICBlbHNlOgogICAgICAgICAgICAgICAgICAgICAgICBnZXRhdHRyKG1vZGVsLCBrZXkpLmZpeGVkID0gVHJ1ZQoKICAgICAgICByZXR1cm4gbW9kZWwKCgogICAgZGVmIGJ1bXBzX21vZGVsX3RvX3BhcmFtZXRlcl9yZXNvdXJjZShtb2RlbCwgcGFyYW1zKToKICAgICAgICAiIiIKICAgICAgICAiIHBhcmFtczogZnJpY3Rpb25sZXNzLlJlc291cmNlCiAgICAgICAgIiBtb2RlbDogc2FzbW9kZWxzLmJ1bXBzX21vZGVsLk1vZGVsCiAgICAgICAgIgogICAgICAgICIgVXBkYXRlcyBwYXJhbXMgcmVzb3VyY2Ugd2l0aCBmaXR0ZWQgcGFyYW1ldGVycyBmcm9tIGJ1bXBzIG1vZGVsCiAgICAgICAgIiIiCgogICAgICAgICMgYnVtcHNfbW9kZWwuTW9kZWwgY2xhc3MgaXMgYSB3cmFwcGVyIGFyb3VuZCBzYXN2aWV3X21vZGVsLk1vZGVsLAogICAgICAgICMgY29udGFpbmluZyBmaXR0aW5nIGluZm9ybWF0aW9uIG9uIHRvcCBvZiBtb2RlbCBkZWZpbml0aW9uCgogICAgICAgIGZvciBwYXJhbSBpbiBwYXJhbXMuZ2V0X3ZhbHVlcygpLmtleXMoKToKICAgICAgICAgICAgcGFyYW1zLnNldF9wYXJhbSgKICAgICAgICAgICAgICAgIGtleT1wYXJhbSwKICAgICAgICAgICAgICAgIHZhbHVlPW1vZGVsLnN0YXRlKClbcGFyYW1dLAogICAgICAgICAgICAgICAgZmllbGQ9InZhbHVlIiwKICAgICAgICAgICAgKQoKICAgICAgICByZXR1cm4gcGFyYW1zCgoKICAgIGRlZiBkYXRhXzFkX3RvX3Jlc291cmNlKGRhdGEpOgogICAgICAgICIiIgogICAgICAgICIgQ29udmVydCBTQVNWaWV3IERhdGExRCBvYmplY3QgdG8gYSBGcmljdGlvbmxlc3MgRGF0YSBSZXNvdXJjZQogICAgICAgICIiIgoKICAgICAgICBkZiA9IHBkLkRhdGFGcmFtZShkYXRhPXsKICAgICAgICAgICAgJ3gnOiBkYXRhLngsCiAgICAgICAgICAgICd5JzogZGF0YS55LAogICAgICAgICAgICAnZHgnOiBkYXRhLmR4LAogICAgICAgICAgICAnZHknOiBkYXRhLmR5LAogICAgICAgICAgICAnbGFtJzogZGF0YS5sYW0sCiAgICAgICAgICAgICdkbGFtJzogZGF0YS5kbGFtLAogICAgICAgIH0pCgogICAgICAgIHJldHVybiBSZXNvdXJjZSgKICAgICAgICAgICAgZGYsCiAgICAgICAgICAgIG5hbWU9ImRhdGEiLAogICAgICAgICAgICBmb3JtYXQ9InBhbmRhcyIsCiAgICAgICAgICAgIHNjaGVtYT17CiAgICAgICAgICAgICAgICAncHJpbWFyeUtleSc6ICd4JywKICAgICAgICAgICAgICAgICdmaWVsZHMnOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAnbmFtZSc6ICd4JywKICAgICAgICAgICAgICAgICAgICAgICAgJ3R5cGUnOiAnbnVtYmVyJywKICAgICAgICAgICAgICAgICAgICAgICAgJ3RpdGxlJzogZGF0YS5feGF4aXMsCiAgICAgICAgICAgICAgICAgICAgICAgICd1bml0JzogZGF0YS5feHVuaXQsCiAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICduYW1lJzogJ3knLAogICAgICAgICAgICAgICAgICAgICAgICAndHlwZSc6ICdudW1iZXInLAogICAgICAgICAgICAgICAgICAgICAgICAndGl0bGUnOiBkYXRhLl95YXhpcywKICAgICAgICAgICAgICAgICAgICAgICAgJ3VuaXQnOiBkYXRhLl95dW5pdCwKICAgICAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgICAgIHsnbmFtZSc6ICdkeCcsICd0eXBlJzogJ251bWJlcid9LAogICAgICAgICAgICAgICAgICAgIHsnbmFtZSc6ICdkeScsICd0eXBlJzogJ251bWJlcid9LAogICAgICAgICAgICAgICAgICAgIHsnbmFtZSc6ICdsYW0nLCAndHlwZSc6ICdudW1iZXInfSwKICAgICAgICAgICAgICAgICAgICB7J25hbWUnOiAnZGxhbScsICd0eXBlJzogJ251bWJlcid9LAogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgKQoKCiAgICAjID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KICAgICMgRXh0ZW5kZWQgUmVzb3VyY2UgY2xhc3NlcwoKCiAgICBjbGFzcyBQYXJhbWV0ZXJSZXNvdXJjZShSZXNvdXJjZSk6CiAgICAgICAgZGVmIGNvbmNhdChzZWxmLCByZXNvdXJjZSk6CiAgICAgICAgICAgICMgQ2hlY2sgcHJvZmlsZXMgbWF0Y2gKICAgICAgICAgICAgYXNzZXJ0IHNlbGYucHJvZmlsZSA9PSByZXNvdXJjZS5wcm9maWxlCgogICAgICAgICAgICAjIENvbmNhdCBzY2hlbWEKICAgICAgICAgICAgIyBUT0RPOiBNYXRjaCBhbnkgaWRlbnRpY2FsIGRlc2NyaXB0b3JzIGluIHNjaGVtYT8KICAgICAgICAgICAgIyBUT0RPOiBJbXBsZW1lbnQgY3VzdG9tIFBhcmFtZXRlclNjaGVtYSBvYmplY3QKICAgICAgICAgICAga2V5cyA9IHNlbGYuc2NoZW1hLnRvX2RpY3QoKVsia2V5cyJdCiAgICAgICAgICAgIGtleXMuYXBwZW5kKHJlc291cmNlLnNjaGVtYS50b19kaWN0KClbImtleXMiXSkKICAgICAgICAgICAgc2VsZi5zY2hlbWFbImtleXMiXSA9IGtleXMKCiAgICAgICAgICAgICMgQ29uY2F0IGRhdGEKICAgICAgICAgICAgc2VsZi5kYXRhLnVwZGF0ZShyZXNvdXJjZS5kYXRhKQoKICAgICAgICBkZWYgZ2V0X3BhcmFtKHNlbGYsIGtleSwgZmllbGQ9Tm9uZSk6CiAgICAgICAgICAgIGlmIGZpZWxkIGlzIG5vdCBOb25lOgogICAgICAgICAgICAgICAgcmV0dXJuIHNlbGYuZGF0YVtrZXldW2ZpZWxkXQogICAgICAgICAgICBlbHNlOgogICAgICAgICAgICAgICAgcmV0dXJuIHNlbGYuZGF0YVtrZXldCgogICAgICAgIGRlZiBzZXRfcGFyYW0oc2VsZiwga2V5LCB2YWx1ZSwgZmllbGQ9Tm9uZSk6CiAgICAgICAgICAgIGlmIGZpZWxkIGlzIG5vdCBOb25lOgogICAgICAgICAgICAgICAgc2VsZi5kYXRhW2tleV1bZmllbGRdID0gdmFsdWUKICAgICAgICAgICAgZWxzZToKICAgICAgICAgICAgICAgIHNlbGYuZGF0YVtrZXldID0gdmFsdWUKCiAgICAgICAgZGVmIGdldF92YWx1ZXMoc2VsZiwgZmllbGQ9InZhbHVlIik6CiAgICAgICAgICAgICMgVE9ETzogSGFuZGxlIG5vbi1mbG9hdCB2YWx1ZXMhCgogICAgICAgICAgICBkZWYgaXNfZmxvYXQodmFsdWUpOgogICAgICAgICAgICAgICAgdHJ5OgogICAgICAgICAgICAgICAgICAgIGZsb2F0KHZhbHVlKQogICAgICAgICAgICAgICAgICAgIHJldHVybiBUcnVlCiAgICAgICAgICAgICAgICBleGNlcHQ6ICAjIG5vcWE6IEU3MjIKICAgICAgICAgICAgICAgICAgICByZXR1cm4gRmFsc2UKCiAgICAgICAgICAgIHJldHVybiB7CiAgICAgICAgICAgICAgICBrZXk6IGZsb2F0KHJvdy5nZXQoZmllbGQpKQogICAgICAgICAgICAgICAgaWYgaXNfZmxvYXQocm93LmdldChmaWVsZCkpCiAgICAgICAgICAgICAgICBlbHNlIHJvdy5nZXQoZmllbGQpCiAgICAgICAgICAgICAgICBmb3Iga2V5LCByb3cgaW4gc2VsZi5kYXRhLml0ZW1zKCkKICAgICAgICAgICAgfQoKICAgICAgICBkZWYgYWRkX2ZpZWxkKHNlbGYsIGtleSwgbmFtZSwgKiprd2FyZ3MpOgogICAgICAgICAgICAjIFRPRE86IFRlc3QgdGhpcyB3b3JrcwogICAgICAgICAgICBrZXlfc2NoZW1hID0gZmluZChzZWxmLnNjaGVtYVsia2V5cyJdLCAibmFtZSIsIGtleSkKICAgICAgICAgICAga2V5X3NjaGVtYVsiZmllbGRzIl0uYXBwZW5kKHsibmFtZSI6IG5hbWUsICoqa3dhcmdzfSkKCgogICAgY2xhc3MgT3B0aW9uc1Jlc291cmNlKFJlc291cmNlKToKICAgICAgICBkZWYgZ2V0X29wdGlvbihzZWxmLCBvcHRpb24pOgogICAgICAgICAgICByZXR1cm4gc2VsZi5kYXRhW29wdGlvbl1bIm5hbWUiXQoKICAgICAgICBkZWYgc2V0X29wdGlvbihzZWxmLCBvcHRpb24sIGtleSk6CiAgICAgICAgICAgIHNlbGYuZGF0YVtvcHRpb25dID0gc2VsZi5nZXRfb3B0aW9uX2Nob2ljZShvcHRpb24sIGtleSkKCiAgICAgICAgZGVmIGdldF9vcHRpb25fY2hvaWNlKHNlbGYsIG9wdGlvbiwga2V5KToKICAgICAgICAgICAgZmllbGQgPSBmaW5kKHNlbGYuc2NoZW1hLmZpZWxkcywgIm5hbWUiLCBvcHRpb24pCiAgICAgICAgICAgIHJldHVybiBmaW5kKGZpZWxkWyJjb25zdHJhaW50cyJdWyJlbnVtIl0sICJuYW1lIiwga2V5KQoKCiAgICBjbGFzcyBGaWxlUmVzb3VyY2UoUmVzb3VyY2UpOgogICAgICAgIEBwcm9wZXJ0eQogICAgICAgIGRlZiBmaWxlKHNlbGYpOgogICAgICAgICAgICByZXR1cm4gaW8uQnl0ZXNJTyhiYXNlNjQuYjY0ZGVjb2RlKHNlbGYuZGF0YSkpCgogICAgICAgIEBwcm9wZXJ0eQogICAgICAgIGRlZiBmaWxlX25hbWUoc2VsZik6CiAgICAgICAgICAgIHJldHVybiBzZWxmLnRpdGxlLnJzcGxpdCgiLiIsIDEpWzBdCgogICAgICAgIEBwcm9wZXJ0eQogICAgICAgIGRlZiBmaWxlX2V4dChzZWxmKToKICAgICAgICAgICAgcmV0dXJuIHNlbGYudGl0bGUucnNwbGl0KCIuIiwgMSlbMV0KCgogICAgIyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CiAgICAjIEFuYWx5c2lzIGFsZ29yaXRobQoKICAgIGRhdGFfcmVzb3VyY2UgPSBGaWxlUmVzb3VyY2UoZGVzY3JpcHRvcj1kYXRhKQoKICAgICMgV3JpdGUgdG8gdGVtcG9yYXJ5IGZpbGUgZm9yIHJlYWRpbmcgYnkgU0FTVmlldwogICAgIyBUT0RPOiBXb3VsZCBiZSBpZGVhbCBub3QgdG8gaGF2ZSB0byBkbyB0aGlzLi4uCiAgICB3aXRoIHRlbXBmaWxlLk5hbWVkVGVtcG9yYXJ5RmlsZSgKICAgICAgICAgICAgZGlyPSIvdG1wIiwKICAgICAgICAgICAgcHJlZml4PWRhdGFfcmVzb3VyY2UuZmlsZV9uYW1lKyJfIiwKICAgICAgICAgICAgc3VmZml4PSIuIitkYXRhX3Jlc291cmNlLmZpbGVfZXh0KSBhcyBmOgoKICAgICAgICAjIENyZWF0ZSB0ZW1wb3JhcnkgZmlsZSB0byBiZSBsb2FkZWQgYnkgc2FzdmlldwogICAgICAgIGYud3JpdGUoZGF0YV9yZXNvdXJjZS5maWxlLmdldGJ1ZmZlcigpKQoKICAgICAgICBsb2FkZXIgPSBMb2FkZXIoKQoKICAgICAgICAjIFRPRE86IEhhbmRsZSBtdWx0aXBsZSByZXR1cm4gRGF0YSBvYmpzIC0gZXhhbXBsZSBmaWxlIGZvciB0aGlzIGNhc2U/CiAgICAgICAgIyBUT0RPOiBIYW5kbGUgRGF0YTJEIGNhc2UKICAgICAgICBkYXRhX3NhcyA9IGxvYWRlci5sb2FkKGYubmFtZSkKICAgICAgICBkYXRhX3NhcyA9IGRhdGFfc2FzWzBdCgogICAgIyBUT0RPOiBTZXR0aW5nIGJlYW1zdG9wIGJyZWFrcyBkYXRhc2V0IGNvbnN0cnVjdGlvbiBhcyBYIGRvZXNuJ3QgbWF0Y2ggCiAgICAjIGZpdHRlZCBkYXRhIC0gZml4IHRoaXMgdmlhIHRvX21hc2tlZF9hcnJheSBtYXliZT8/CiAgICAjIHNtLmRhdGEuc2V0X2JlYW1fc3RvcChkYXRhX3NhcywgMC4wMDgsIDAuMTkpCgogICAgIyBUT0RPOiBURU1QCiAgICAjIENvbnZlcnQgb3B0aW9ucyBKU09OIGludG8gUmVzb3VyY2UKICAgIG9wdGlvbnNfcmVzb3VyY2UgPSBPcHRpb25zUmVzb3VyY2UoZGVzY3JpcHRvcj1vcHRpb25zKQoKICAgICMgR2V0IHNlbGVjdGVkIG1vZGVsIG5hbWUKICAgIG1vZGVsX25hbWUgPSBvcHRpb25zX3Jlc291cmNlLmdldF9vcHRpb24oIm1vZGVsIikKICAgIHNmX25hbWUgPSBvcHRpb25zX3Jlc291cmNlLmdldF9vcHRpb24oInN0cnVjdHVyZUZhY3RvciIpCgogICAgaWYgc2ZfbmFtZToKICAgICAgICBsb2FkX25hbWUgPSBtb2RlbF9uYW1lKyJAIitzZl9uYW1lCiAgICBlbHNlOgogICAgICAgIGxvYWRfbmFtZSA9IG1vZGVsX25hbWUKCiAgICBrZXJuZWwgPSBzbS5jb3JlLmxvYWRfbW9kZWwobG9hZF9uYW1lKQoKICAgICMgSW5pdGlhbGlzZSBtb2RlbAogICAgIyBUT0RPOiBFcnJvciBoYW5kbGluZyBmb3IgaWYgbm8gcGFyYW1zIGFyZSBzZXQgdG8gInZhcnkiIC0gYnVtcHMgZmFpbHMgCiAgICAjIG5vbiBncmFjZWZ1bGx5IG9uIHRoaXMKCiAgICAjIFRPRE86IFRFTVAKICAgICMgQ29udmVydCBwYXJhbXMgSlNPTiBpbnRvIFJlc291cmNlCiAgICBwYXJhbXNfcmVzb3VyY2UgPSBQYXJhbWV0ZXJSZXNvdXJjZShkZXNjcmlwdG9yPXBhcmFtcykKICAgICMgVE9ETzogVEVNUCBncm9zcywgdXNlZCBiZWxvdyB0byBjb252ZXJ0IGJ1bXBzIHJlc3VsdHMgdG8gcmVzb3VyY2VzCiAgICBtb2RlbF9wYXJhbXMgPSBwYXJhbXNfcmVzb3VyY2UKICAgIGlmIHNmX3BhcmFtcyBpcyBub3QgTm9uZToKICAgICAgICBzZl9wYXJhbXNfcmVzb3VyY2UgPSBQYXJhbWV0ZXJSZXNvdXJjZShkZXNjcmlwdG9yPXNmX3BhcmFtcykKICAgICAgICAjIFRPRE86IFRFTVAgZ3Jvc3MsIHVzZWQgYmVsb3cgdG8gY29udmVydCBidW1wcyByZXN1bHRzIHRvIHJlc291cmNlcwogICAgICAgIHNmX21vZGVsX3BhcmFtcyA9IHNmX3BhcmFtc19yZXNvdXJjZQoKICAgICMgQ29tYmluZSBmb3JtIGZhY3Rvci9wb2x5ZGlzcGVyc2l0eSBwYXJhbXMgd2l0aCBTRiBwYXJhbXMKICAgIHBhcmFtc19yZXNvdXJjZS5jb25jYXQoc2ZfcGFyYW1zX3Jlc291cmNlKQoKICAgIGlmIGt3YXJncy5nZXQoJ3Bsb3Rfb25seScsIEZhbHNlKToKICAgICAgICAjIERvbid0IGZpdCBpZiBwbG90X29ubHkgZmxhZyBzZXQKICAgICAgICBydW5fZml0ID0gRmFsc2UKICAgIGVsc2U6CiAgICAgICAgIyBBcmUgdGhlcmUgYW55IHBhcmFtZXRlcnMgdG8gYmUgZml0dGVkPwogICAgICAgICMgKGNoZWNrcyBpZiBhbnkgcGFyYW1ldGVycyBhcmUgc2V0IHRvICJ2YXJ5IikKICAgICAgICBydW5fZml0ID0gbnAuYW55KGxpc3QocGFyYW1zX3Jlc291cmNlLmdldF92YWx1ZXMoZmllbGQ9InZhcnkiKS52YWx1ZXMoKSkpCgogICAgIyBDcmVhdGUgYnVtcHMgbW9kZWwKICAgIG1vZGVsID0gcGFyYW1ldGVyX3Jlc291cmNlX3RvX2J1bXBzX21vZGVsKGtlcm5lbCwgcGFyYW1zX3Jlc291cmNlKQoKICAgICMgU2V0IHVwIGJ1bXBzIGZpdHRlcgogICAgTSA9IHNtLmJ1bXBzX21vZGVsLkV4cGVyaW1lbnQoZGF0YT1kYXRhX3NhcywgbW9kZWw9bW9kZWwpCiAgICBwcm9ibGVtID0gYnVtcHMuZml0cHJvYmxlbS5GaXRQcm9ibGVtKE0pCgogICAgIyBTZXQgYnVtcHMgdG8gdXNlIHNlbGVjdGVkIGZpdHRlciBtZXRob2QKICAgIGZpdHRlcl9uYW1lID0gb3B0aW9uc19yZXNvdXJjZS5nZXRfb3B0aW9uKCJtZXRob2QiKQogICAgRklUX0NPTkZJRy5zZWxlY3RlZF9pZCA9IGdldGF0dHIoYnVtcHMuZml0dGVycywgZml0dGVyX25hbWUpLmlkCgogICAgZml0dGVyID0gRklUX0NPTkZJRy5zZWxlY3RlZF9maXR0ZXIKICAgIGZpdHRlcl9vcHRpb25zID0gIEZJVF9DT05GSUcuc2VsZWN0ZWRfdmFsdWVzCgogICAgIyBTZXQgdXAgZml0dGVyIGFuZCBydW4KICAgIGZpdGRyaXZlciA9IGJ1bXBzLmZpdHRlcnMuRml0RHJpdmVyKGZpdHRlciwgcHJvYmxlbT1wcm9ibGVtLCAqKmZpdHRlcl9vcHRpb25zKQoKICAgIGlmIHJ1bl9maXQ6CiAgICAgICAgYmVzdCwgZmJlc3QgPSBmaXRkcml2ZXIuZml0KCkKCiAgICAjIEJ1aWxkIGZpdCBjdXJ2ZSByZXNvdXJjZQogICAgIyBUT0RPOiBDSEVDSyBDT05WRVJHRU5DRQogICAgIyAodGVzdCBieSBzZXR0aW5nIGluaXRpYWwgcGFyYW1zIHRvIHNvbWV0aGluZyBiYWQgLSB0aGVvcnkoKSByZXR1cm5zIE5hTnMpCiAgICBmaXRfZGYgPSBwZC5EYXRhRnJhbWUoZGF0YT17CiAgICAgICAgJ3gnOiAgICAgICAgIHByb2JsZW0uZml0bmVzcy5fZGF0YS54LmZsYXR0ZW4oKSwKICAgICAgICAneSc6ICAgICAgICAgcHJvYmxlbS5maXRuZXNzLnRoZW9yeSgpLmZsYXR0ZW4oKSwKICAgICAgICAncmVzaWR1YWxzJzogcHJvYmxlbS5maXRuZXNzLnJlc2lkdWFscygpLmZsYXR0ZW4oKSwKICAgIH0pCgogICAgZml0X3RhYmxlID0gUmVzb3VyY2UoCiAgICAgICAgZml0X2RmLAogICAgICAgIG5hbWU9ImZpdCIsCiAgICAgICAgZm9ybWF0PSJwYW5kYXMiLAogICAgICAgIHNjaGVtYT17CiAgICAgICAgICAgICdwcmltYXJ5S2V5JzogJ3gnLAogICAgICAgICAgICAnZmllbGRzJzogWwogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICduYW1lJzogJ3gnLAogICAgICAgICAgICAgICAgICAgICd0eXBlJzogJ251bWJlcicsCiAgICAgICAgICAgICAgICAgICAgJ3RpdGxlJzogZGF0YV9zYXMuX3hheGlzLAogICAgICAgICAgICAgICAgICAgICd1bml0JzogZGF0YV9zYXMuX3h1bml0LAogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAnbmFtZSc6ICd5JywKICAgICAgICAgICAgICAgICAgICAndHlwZSc6ICdudW1iZXInLAogICAgICAgICAgICAgICAgICAgICd0aXRsZSc6IGRhdGFfc2FzLl95YXhpcywKICAgICAgICAgICAgICAgICAgICAndW5pdCc6IGRhdGFfc2FzLl95dW5pdCwKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgJ25hbWUnOiAncmVzaWR1YWxzJywKICAgICAgICAgICAgICAgICAgICAndHlwZSc6ICdudW1iZXInLAogICAgICAgICAgICAgICAgICAgICd0aXRsZSc6IGRhdGFfc2FzLl95YXhpcywKICAgICAgICAgICAgICAgICAgICAndW5pdCc6IGRhdGFfc2FzLl95dW5pdCwKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgIF0KICAgICAgICB9CiAgICApCgogICAgIyBUT0RPOiBNb3ZlIHRoaXMgdG8gYSBsaWJyYXJ5IGZ1bmN0aW9uIE9SIGZpbmQgYSB3YXkgdG8gdXNlIAogICAgIyBQYW5kYXNKU09ORW5jb2RlciBmcm9tIGRhdGFmaXQtZnJhbWV3b3JrOmRhdGF0eXBlcy9wYWNrYWdlLmpzIGluc2lkZQogICAgIyBjb250YWluZXItYmFzZSBiZWZvcmUgZGF0YSBpcyByZXR1cm5lZC4uLgoKICAgICMgQ29udmVydCBkYXRhIGZyb20gUGFuZGFzIERhdGFGcmFtZSB0byBKU09OIHJvd3MgZm9yIHNlcmlhbGl6YXRpb24KICAgIHJvd3MgPSBmaXRfdGFibGUuZGF0YS50b19kaWN0KCJyZWNvcmRzIikKICAgIGZpdF90YWJsZS5kYXRhID0gcm93cwoKICAgIGRhdGFfc2FzX3Jlc291cmNlID0gZGF0YV8xZF90b19yZXNvdXJjZShkYXRhX3NhcykKICAgIHJvd3MgPSBkYXRhX3Nhc19yZXNvdXJjZS5kYXRhLnRvX2RpY3QoInJlY29yZHMiKQogICAgZGF0YV9zYXNfcmVzb3VyY2UuZGF0YSA9IHJvd3MKCiAgICAjIE9wdGltaXNlZCBwYXJhbWV0ZXIgcmVzb3VyY2VzCiAgICBmaXRfbW9kZWxfcGFyYW1zID0gYnVtcHNfbW9kZWxfdG9fcGFyYW1ldGVyX3Jlc291cmNlKG1vZGVsLCBtb2RlbF9wYXJhbXMpCgogICAgaWYgc2ZfbmFtZToKICAgICAgICBmaXRfbW9kZWxfc2ZfcGFyYW1zID0gYnVtcHNfbW9kZWxfdG9fcGFyYW1ldGVyX3Jlc291cmNlKG1vZGVsLCBzZl9tb2RlbF9wYXJhbXMpCgogICAgcmV0dXJuIHsKICAgICAgICAncmVzdWx0X2RhdGEnOiBkYXRhX3Nhc19yZXNvdXJjZSwKICAgICAgICAncmVzdWx0X2ZpdCc6IGZpdF90YWJsZSwKICAgICAgICAncmVzdWx0X3BhcmFtcyc6IGZpdF9tb2RlbF9wYXJhbXMsCiAgICAgICAgJ3Jlc3VsdF9zZl9wYXJhbXMnOiBmaXRfbW9kZWxfc2ZfcGFyYW1zLAogICAgfQoK", - "inputs": [ + "name": "sas_result_fit" + }, + { + "name": "sas_result_data", + "transform": [ { - "name": "data", - "title": "Data", - "description": "SAS data", - "type": "resource", - "resource": "sas_data" + "as": "errorLower", + "expr": "datum.y - datum.dy", + "type": "formula" }, { - "name": "params", - "title": "Parameters", - "description": "Parameters", - "type": "resource", - "resource": "sas_params", - "resourceScaffolds": [ - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 500, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_shell": { - "vary": false, - "value": 1.5, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction": { - "vary": false, - "value": 0.14, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "density_shell": { - "vary": false, - "value": 0.7, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "second_moment": { - "vary": false, - "value": 23, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "adsorbed_amount": { - "vary": false, - "value": 1.9, - "lowerBound": 0, - "upperBound": "Infinity" - } + "as": "errorUpper", + "expr": "datum.y + datum.dy", + "type": "formula" + }, + { + "as": [ + "yFit", + "residuals" + ], + "key": "x", + "from": "sas_result_fit", + "type": "lookup", + "fields": [ + "x" + ], + "values": [ + "y", + "residuals" + ] + } + ] + }, + { + "name": "highlightedDataPoint", + "source": "sas_result_data", + "transform": [ + { + "expr": "hover && hover.datum.x === datum.x && hover.datum.y === datum.y", + "type": "filter" + } + ] + }, + { + "name": "highlightedFitPoint", + "source": "sas_result_fit", + "transform": [ + { + "expr": "hover && hover.datum.x === datum.x", + "type": "filter" + } + ] + }, + { + "name": "highlightedResidualsPoint", + "source": "sas_result_fit", + "transform": [ + { + "expr": "hover && hover.datum.x === datum.x", + "type": "filter" + } + ] + } + ], + "marks": [ + { + "axes": [ + { + "aria": false, + "grid": true, + "scale": "mainX", + "ticks": true, + "title": "Q (A^-1)", + "domain": false, + "labels": true, + "orient": "bottom", + "zindex": 0, + "gridScale": "mainY", + "maxExtent": 0, + "minExtent": 0, + "tickCount": { + "signal": "ceil(width/200)" + }, + "titlePadding": 20 + }, + { + "aria": false, + "grid": true, + "scale": "mainY", + "ticks": true, + "title": "I (cm^-1)", + "domain": false, + "labels": true, + "orient": "left", + "zindex": 0, + "maxExtent": 0, + "minExtent": 0, + "tickCount": { + "signal": "ceil(mainHeight/100)" + }, + "titlePadding": 40 + } + ], + "name": "mainGroup", + "type": "group", + "marks": [ + { + "from": { + "data": "sas_result_data" + }, + "name": "dataPlot", + "type": "line", + "encode": { + "enter": { + "x": { + "field": "x", + "scale": "mainX" + }, + "y": { + "field": "y", + "scale": "mainY" + }, + "stroke": { + "signal": "dataColor" + } + } + } + }, + { + "from": { + "data": "sas_result_data" + }, + "name": "dataErrorPlot", + "type": "area", + "encode": { + "enter": { + "x": { + "field": "x", + "scale": "mainX" + }, + "y": { + "field": "errorLower", + "scale": "mainY" + }, + "y2": { + "field": "errorUpper", + "scale": "mainY" + }, + "fill": { + "value": "grey" + }, + "fillOpacity": { + "value": 0.3 + }, + "interpolate": { + "value": "linear" + } + } + } + }, + { + "from": { + "data": "sas_result_fit" + }, + "name": "fitPlot", + "type": "line", + "encode": { + "enter": { + "x": { + "field": "x", + "scale": "mainX" + }, + "y": { + "field": "y", + "scale": "mainY" + }, + "stroke": { + "signal": "fitColor" + } + } + } + }, + { + "from": { + "data": "sas_result_data" + }, + "name": "vPoints", + "type": "symbol", + "encode": { + "update": { + "x": { + "field": "x", + "scale": "mainX" }, - "name": "adsorbed_layer", - "format": "json", - "schema": { - "keys": [ - { - "name": "volfraction", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "adsorbed_amount", - "unit": "mg/m^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "density_shell", - "unit": "g/cm^3", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_shell", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "second_moment", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "y": { + "value": 0 }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_bell": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_bell_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_bell_pd_n": { - "value": 35 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "radius_bell_pd_type": { - "value": "gaussian" - }, - "radius_bell_pd_nsigma": { - "value": 3 - } + "fill": { + "value": "transparent" }, - "name": "barbell", - "format": "json", - "schema": { - "keys": [ - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_bell", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_bell_pd", - "radius_bell_pd_n", - "radius_bell_pd_nsigma", - "radius_bell_pd_type" - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_bell_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_bell" - }, - { - "name": "radius_bell_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_bell_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_bell_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "size": { + "value": 10 }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "dnn": { - "vary": false, - "value": 220, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "d_factor": { - "vary": false, - "value": 0.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "radius_pd_nsigma": { - "value": 3 - } + "stroke": { + "value": "transparent" }, - "name": "bcc_paracrystal", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "dnn", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "d_factor", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "strokeWidth": { + "value": 0.5 + } + } + } + }, + { + "from": { + "data": "vPoints" + }, + "name": "vCell", + "type": "path", + "encode": { + "enter": { + "fill": { + "value": "transparent" }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "virial_param": { - "vary": false, - "value": 12, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "bjerrum_length": { - "vary": false, - "value": 7.1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "monomer_length": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "contrast_factor": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "ionization_degree": { - "vary": false, - "value": 0.05, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "salt_concentration": { - "vary": false, - "value": 0, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "polymer_concentration": { - "vary": false, - "value": 0.7, - "lowerBound": 0, - "upperBound": "Infinity" - } + "stroke": { + "value": "transparent" }, - "name": "be_polyelectrolyte", - "format": "json", - "schema": { - "keys": [ - { - "name": "monomer_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "ionization_degree", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "polymer_concentration", - "unit": "mol/L", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "contrast_factor", - "unit": "barns", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "salt_concentration", - "unit": "mol/L", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "virial_param", - "unit": "Ang^3", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "bjerrum_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "isVoronoi": { + "value": true }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" + "strokeWidth": { + "value": 0.35 + } }, + "update": { + "tooltip": { + "signal": "datum.datum" + } + } + }, + "transform": [ { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_lg": { - "vary": false, - "value": 3.5, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_sm": { - "vary": false, - "value": 0.5, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_lg": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_sm": { - "vary": false, - "value": 25, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6.36, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction_lg": { - "vary": false, - "value": 0.1, - "lowerBound": 0, - "upperBound": 1 + "x": "datum.x", + "y": "datum.y", + "size": [ + { + "signal": "width" }, - "volfraction_sm": { - "vary": false, - "value": 0.2, - "lowerBound": 0, - "upperBound": 1 + { + "signal": "height" } + ], + "type": "voronoi" + } + ] + }, + { + "from": { + "data": "highlightedDataPoint" + }, + "name": "dataPoint", + "type": "symbol", + "encode": { + "enter": { + "x": { + "field": "x", + "scale": "mainX" + }, + "y": { + "field": "y", + "scale": "mainY" + }, + "fill": { + "signal": "dataColor" + }, + "size": { + "signal": "pointSize" + }, + "fillOpacity": { + "signal": "pointOpacity" + } + } + }, + "interactive": false + }, + { + "from": { + "data": "highlightedFitPoint" + }, + "name": "fitPoint", + "type": "symbol", + "encode": { + "enter": { + "x": { + "field": "x", + "scale": "mainX" + }, + "y": { + "field": "y", + "scale": "mainY" + }, + "fill": { + "signal": "fitColor" + }, + "size": { + "signal": "pointSize" + }, + "fillOpacity": { + "signal": "pointOpacity" + } + } + }, + "interactive": false + }, + { + "name": "yRule", + "type": "rule", + "encode": { + "update": { + "x": { + "scale": "mainX", + "offset": 0.5, + "signal": "xValue" }, - "name": "binary_hard_sphere", - "format": "json", - "schema": { - "keys": [ - { - "name": "volfraction_sm", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_lg", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction_lg", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_lg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_sm", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_sm", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "y": { + "value": 0 }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "peak_pos": { - "vary": false, - "value": 0.1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "porod_exp": { - "vary": false, - "value": 3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_exp": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "porod_scale": { - "vary": false, - "value": 0.00001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_scale": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_length": { - "vary": false, - "value": 50, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } + "y2": { + "signal": "yRuleHeightMain" }, - "name": "broad_peak", - "format": "json", - "schema": { - "keys": [ - { - "name": "peak_pos", - "unit": "1/Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "porod_exp", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "porod_scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_exp", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "stroke": { + "value": "grey" }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_cap": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_cap_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "radius_cap_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "radius_cap_pd_type": { - "value": "gaussian" - }, - "radius_cap_pd_nsigma": { - "value": 3 - } + "opacity": { + "value": 0.5 }, - "name": "capped_cylinder", - "format": "json", - "schema": { - "keys": [ - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_cap", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_cap_pd", - "radius_cap_pd_n", - "radius_cap_pd_nsigma", - "radius_cap_pd_type" - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_cap_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_cap" - }, - { - "name": "radius_cap_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_cap_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_cap_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "strokeWidth": { + "value": 1.5 + } + } + }, + "interactive": false + } + ], + "style": "cell", + "encode": { + "update": { + "width": { + "signal": "width" + }, + "height": { + "signal": "mainHeight" + } + } + } + }, + { + "axes": [ + { + "aria": false, + "grid": true, + "scale": "subX", + "ticks": true, + "title": "Residuals", + "domain": false, + "labels": true, + "orient": "bottom", + "zindex": 0, + "gridScale": "subY", + "maxExtent": 0, + "minExtent": 0, + "tickCount": { + "signal": "ceil(width/200)" + }, + "titlePadding": 20 + }, + { + "aria": false, + "grid": true, + "scale": "subY", + "ticks": true, + "title": "I (cm^-1)", + "domain": false, + "labels": true, + "orient": "left", + "zindex": 0, + "maxExtent": 0, + "minExtent": 0, + "tickCount": { + "signal": "ceil(subHeight/100)" + }, + "titlePadding": 40 + } + ], + "name": "subGroup", + "type": "group", + "marks": [ + { + "clip": true, + "from": { + "data": "sas_result_fit" + }, + "name": "residualsPlot", + "type": "line", + "encode": { + "enter": { + "x": { + "field": "x", + "scale": "subX" + }, + "y": { + "field": "residuals", + "scale": "subY" + }, + "stroke": { + "signal": "fitColor" + } + } + } + }, + { + "from": { + "data": "highlightedResidualsPoint" + }, + "name": "residualsPoint", + "type": "symbol", + "encode": { + "enter": { + "x": { + "field": "x", + "scale": "subX" + }, + "y": { + "field": "residuals", + "scale": "subY" + }, + "fill": { + "signal": "fitColor" + }, + "size": { + "signal": "pointSize" + }, + "fillOpacity": { + "signal": "pointOpacity" + } + } + }, + "interactive": false + }, + { + "name": "yRule", + "type": "rule", + "encode": { + "update": { + "x": { + "scale": "subX", + "offset": 0.5, + "signal": "xValue" }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "n": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": 10 - }, - "sld1": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld2": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld3": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld4": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld5": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld6": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld7": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld8": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld9": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld10": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 200, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness1": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness2": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness3": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness4": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness5": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness6": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness7": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness8": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness9": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness10": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness1_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness2_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness3_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness4_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness5_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness6_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness7_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness8_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness9_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thickness10_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness1_pd_n": { - "value": 35 - }, - "thickness2_pd_n": { - "value": 35 - }, - "thickness3_pd_n": { - "value": 35 - }, - "thickness4_pd_n": { - "value": 35 - }, - "thickness5_pd_n": { - "value": 35 - }, - "thickness6_pd_n": { - "value": 35 - }, - "thickness7_pd_n": { - "value": 35 - }, - "thickness8_pd_n": { - "value": 35 - }, - "thickness9_pd_n": { - "value": 35 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thickness10_pd_n": { - "value": 35 - }, - "thickness1_pd_type": { - "value": "gaussian" - }, - "thickness2_pd_type": { - "value": "gaussian" - }, - "thickness3_pd_type": { - "value": "gaussian" - }, - "thickness4_pd_type": { - "value": "gaussian" - }, - "thickness5_pd_type": { - "value": "gaussian" - }, - "thickness6_pd_type": { - "value": "gaussian" - }, - "thickness7_pd_type": { - "value": "gaussian" - }, - "thickness8_pd_type": { - "value": "gaussian" - }, - "thickness9_pd_type": { - "value": "gaussian" - }, - "thickness10_pd_type": { - "value": "gaussian" - }, - "thickness1_pd_nsigma": { - "value": 3 - }, - "thickness2_pd_nsigma": { - "value": 3 - }, - "thickness3_pd_nsigma": { - "value": 3 - }, - "thickness4_pd_nsigma": { - "value": 3 - }, - "thickness5_pd_nsigma": { - "value": 3 - }, - "thickness6_pd_nsigma": { - "value": 3 - }, - "thickness7_pd_nsigma": { - "value": 3 - }, - "thickness8_pd_nsigma": { - "value": 3 - }, - "thickness9_pd_nsigma": { - "value": 3 - }, - "thickness10_pd_nsigma": { - "value": 3 - } - }, - "name": "core_multi_shell", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld9", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness5", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness5_pd", - "thickness5_pd_n", - "thickness5_pd_nsigma", - "thickness5_pd_type" - ] - }, - { - "name": "thickness2", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness2_pd", - "thickness2_pd_n", - "thickness2_pd_nsigma", - "thickness2_pd_type" - ] - }, - { - "name": "thickness4", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness4_pd", - "thickness4_pd_n", - "thickness4_pd_nsigma", - "thickness4_pd_type" - ] - }, - { - "name": "sld7", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld1", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness8", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness8_pd", - "thickness8_pd_n", - "thickness8_pd_nsigma", - "thickness8_pd_type" - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld5", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness1", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness1_pd", - "thickness1_pd_n", - "thickness1_pd_nsigma", - "thickness1_pd_type" - ] - }, - { - "name": "thickness10", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness10_pd", - "thickness10_pd_n", - "thickness10_pd_nsigma", - "thickness10_pd_type" - ] - }, - { - "name": "sld10", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld2", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld8", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness9", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness9_pd", - "thickness9_pd_n", - "thickness9_pd_nsigma", - "thickness9_pd_type" - ] - }, - { - "name": "thickness6", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness6_pd", - "thickness6_pd_n", - "thickness6_pd_nsigma", - "thickness6_pd_type" - ] - }, - { - "name": "thickness3", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness3_pd", - "thickness3_pd_n", - "thickness3_pd_nsigma", - "thickness3_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld6", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld4", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld3", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness7", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness7_pd", - "thickness7_pd_n", - "thickness7_pd_nsigma", - "thickness7_pd_type" - ] - }, - { - "name": "n", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness1_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness1" - }, - { - "name": "thickness1_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness1_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness1_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness2_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness2" - }, - { - "name": "thickness2_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness2_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness2_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness3_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness3" - }, - { - "name": "thickness3_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness3_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness3_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness4_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness4" - }, - { - "name": "thickness4_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness4_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness4_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness5_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness5" - }, - { - "name": "thickness5_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness5_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness5_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness6_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness6" - }, - { - "name": "thickness6_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness6_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness6_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness7_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness7" - }, - { - "name": "thickness7_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness7_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness7_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness8_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness8" - }, - { - "name": "thickness8_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness8_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness8_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness9_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness9" - }, - { - "name": "thickness9_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness9_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness9_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness10_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness10" - }, - { - "name": "thickness10_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness10_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness10_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 80, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_rim": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_face": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_rim": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_face": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_rim_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_face_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thick_rim_pd_n": { - "value": 35 - }, - "thick_face_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thick_rim_pd_type": { - "value": "gaussian" - }, - "thick_face_pd_type": { - "value": "gaussian" - }, - "thick_rim_pd_nsigma": { - "value": 3 - }, - "thick_face_pd_nsigma": { - "value": 3 - } - }, - "name": "core_shell_bicelle", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_face", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld_rim", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_face", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_face_pd", - "thick_face_pd_n", - "thick_face_pd_nsigma", - "thick_face_pd_type" - ] - }, - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_rim", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_rim_pd", - "thick_rim_pd_n", - "thick_rim_pd_nsigma", - "thick_rim_pd_type" - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_rim_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_rim" - }, - { - "name": "thick_rim_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_rim_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_rim_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_face_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_face" - }, - { - "name": "thick_face_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_face_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_face_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 30, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "x_core": { - "vary": false, - "value": 3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_rim": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_face": { - "vary": false, - "value": 7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_rim": { - "vary": false, - "value": 8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "x_core_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_face": { - "vary": false, - "value": 14, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "x_core_pd_n": { - "value": 35 - }, - "thick_rim_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_face_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thick_rim_pd_n": { - "value": 35 - }, - "x_core_pd_type": { - "value": "gaussian" - }, - "thick_face_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "x_core_pd_nsigma": { - "value": 3 - }, - "thick_rim_pd_type": { - "value": "gaussian" - }, - "thick_face_pd_type": { - "value": "gaussian" - }, - "thick_rim_pd_nsigma": { - "value": 3 - }, - "thick_face_pd_nsigma": { - "value": 3 - } - }, - "name": "core_shell_bicelle_elliptical", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_face", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld_rim", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_face", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_face_pd", - "thick_face_pd_n", - "thick_face_pd_nsigma", - "thick_face_pd_type" - ] - }, - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_rim", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_rim_pd", - "thick_rim_pd_n", - "thick_rim_pd_nsigma", - "thick_rim_pd_type" - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "x_core", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "x_core_pd", - "x_core_pd_n", - "x_core_pd_nsigma", - "x_core_pd_type" - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "x_core_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:x_core" - }, - { - "name": "x_core_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "x_core_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "x_core_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_rim_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_rim" - }, - { - "name": "thick_rim_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_rim_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_rim_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_face_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_face" - }, - { - "name": "thick_face_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_face_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_face_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sigma": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 30, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "x_core": { - "vary": false, - "value": 3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_rim": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_face": { - "vary": false, - "value": 7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_rim": { - "vary": false, - "value": 8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "x_core_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_face": { - "vary": false, - "value": 14, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "x_core_pd_n": { - "value": 35 - }, - "thick_rim_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_face_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thick_rim_pd_n": { - "value": 35 - }, - "x_core_pd_type": { - "value": "gaussian" - }, - "thick_face_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "x_core_pd_nsigma": { - "value": 3 - }, - "thick_rim_pd_type": { - "value": "gaussian" - }, - "thick_face_pd_type": { - "value": "gaussian" - }, - "thick_rim_pd_nsigma": { - "value": 3 - }, - "thick_face_pd_nsigma": { - "value": 3 - } - }, - "name": "core_shell_bicelle_elliptical_belt_rough", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_face", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sigma", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld_rim", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_face", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_face_pd", - "thick_face_pd_n", - "thick_face_pd_nsigma", - "thick_face_pd_type" - ] - }, - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_rim", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_rim_pd", - "thick_rim_pd_n", - "thick_rim_pd_nsigma", - "thick_rim_pd_type" - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "x_core", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "x_core_pd", - "x_core_pd_n", - "x_core_pd_nsigma", - "x_core_pd_type" - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "x_core_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:x_core" - }, - { - "name": "x_core_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "x_core_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "x_core_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_rim_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_rim" - }, - { - "name": "thick_rim_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_rim_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_rim_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_face_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_face" - }, - { - "name": "thick_face_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_face_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_face_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_shell": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thickness_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "core_shell_cylinder", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld_shell", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "x_core": { - "vary": false, - "value": 3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_shell": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "x_core_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_shell": { - "vary": false, - "value": 30, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "x_core_pd_n": { - "value": 35 - }, - "x_polar_shell": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thick_shell_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "x_core_pd_type": { - "value": "gaussian" - }, - "thick_shell_pd_n": { - "value": 35 - }, - "x_core_pd_nsigma": { - "value": 3 - }, - "x_polar_shell_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_equat_core": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "x_polar_shell_pd_n": { - "value": 35 - }, - "thick_shell_pd_type": { - "value": "gaussian" - }, - "radius_equat_core_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_shell_pd_nsigma": { - "value": 3 - }, - "x_polar_shell_pd_type": { - "value": "gaussian" - }, - "radius_equat_core_pd_n": { - "value": 35 - }, - "x_polar_shell_pd_nsigma": { - "value": 3 - }, - "radius_equat_core_pd_type": { - "value": "gaussian" - }, - "radius_equat_core_pd_nsigma": { - "value": 3 - } - }, - "name": "core_shell_ellipsoid", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_equat_core", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_equat_core_pd", - "radius_equat_core_pd_n", - "radius_equat_core_pd_nsigma", - "radius_equat_core_pd_type" - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_shell", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_shell", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_shell_pd", - "thick_shell_pd_n", - "thick_shell_pd_nsigma", - "thick_shell_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "x_core", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "x_core_pd", - "x_core_pd_n", - "x_core_pd_nsigma", - "x_core_pd_type" - ] - }, - { - "name": "x_polar_shell", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "x_polar_shell_pd", - "x_polar_shell_pd_n", - "x_polar_shell_pd_nsigma", - "x_polar_shell_pd_type" - ] - }, - { - "name": "radius_equat_core_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_equat_core" - }, - { - "name": "radius_equat_core_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_equat_core_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_equat_core_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "x_core_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:x_core" - }, - { - "name": "x_core_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "x_core_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "x_core_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_shell_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_shell" - }, - { - "name": "thick_shell_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_shell_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_shell_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "x_polar_shell_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:x_polar_shell" - }, - { - "name": "x_polar_shell_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "x_polar_shell_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "x_polar_shell_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_a": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_b": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_c": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_a": { - "vary": false, - "value": 35, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_b": { - "vary": false, - "value": 75, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_c": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_a_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_b_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_c_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_solvent": { - "vary": false, - "value": 6, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_rim_a": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thick_rim_b": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thick_rim_c": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_a_pd_n": { - "value": 35 - }, - "length_b_pd_n": { - "value": 35 - }, - "length_c_pd_n": { - "value": 35 - }, - "thick_rim_a_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_rim_b_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_rim_c_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_a_pd_type": { - "value": "gaussian" - }, - "length_b_pd_type": { - "value": "gaussian" - }, - "length_c_pd_type": { - "value": "gaussian" - }, - "thick_rim_a_pd_n": { - "value": 35 - }, - "thick_rim_b_pd_n": { - "value": 35 - }, - "thick_rim_c_pd_n": { - "value": 35 - }, - "length_a_pd_nsigma": { - "value": 3 - }, - "length_b_pd_nsigma": { - "value": 3 - }, - "length_c_pd_nsigma": { - "value": 3 - }, - "thick_rim_a_pd_type": { - "value": "gaussian" - }, - "thick_rim_b_pd_type": { - "value": "gaussian" - }, - "thick_rim_c_pd_type": { - "value": "gaussian" - }, - "thick_rim_a_pd_nsigma": { - "value": 3 - }, - "thick_rim_b_pd_nsigma": { - "value": 3 - }, - "thick_rim_c_pd_nsigma": { - "value": 3 - } + "y": { + "value": 0 }, - "name": "core_shell_parallelepiped", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_rim_b", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_rim_b_pd", - "thick_rim_b_pd_n", - "thick_rim_b_pd_nsigma", - "thick_rim_b_pd_type" - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_b", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_b_pd", - "length_b_pd_n", - "length_b_pd_nsigma", - "length_b_pd_type" - ] - }, - { - "name": "length_a", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_a_pd", - "length_a_pd_n", - "length_a_pd_nsigma", - "length_a_pd_type" - ] - }, - { - "name": "sld_b", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_c", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_rim_a", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_rim_a_pd", - "thick_rim_a_pd_n", - "thick_rim_a_pd_nsigma", - "thick_rim_a_pd_type" - ] - }, - { - "name": "thick_rim_c", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_rim_c_pd", - "thick_rim_c_pd_n", - "thick_rim_c_pd_nsigma", - "thick_rim_c_pd_type" - ] - }, - { - "name": "sld_a", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_c", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_c_pd", - "length_c_pd_n", - "length_c_pd_nsigma", - "length_c_pd_type" - ] - }, - { - "name": "length_a_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_a" - }, - { - "name": "length_a_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_a_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_a_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_b_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_b" - }, - { - "name": "length_b_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_b_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_b_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_c_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_c" - }, - { - "name": "length_c_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_c_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_c_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_rim_a_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_rim_a" - }, - { - "name": "thick_rim_a_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_rim_a_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_rim_a_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_rim_b_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_rim_b" - }, - { - "name": "thick_rim_b_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_rim_b_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_rim_b_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_rim_c_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_rim_c" - }, - { - "name": "thick_rim_c_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_rim_c_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_rim_c_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "y2": { + "signal": "yRuleHeightSub" }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 60, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_shell": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thickness_pd_n": { - "value": 35 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "core_shell_sphere", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld_shell", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "porod_exp": { - "vary": false, - "value": 3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cor_length": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "lorentz_exp": { - "vary": false, - "value": 2, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "porod_scale": { - "vary": false, - "value": 0.000001, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "lorentz_scale": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - } + "stroke": { + "value": "grey" }, - "name": "correlation_length", - "format": "json", - "schema": { - "keys": [ - { - "name": "porod_scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_exp", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "porod_exp", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cor_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] + "opacity": { + "value": 0.5 }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - } - }, - "name": "cylinder", - "format": "json", - "schema": { - "keys": [ - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cor_length": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "dab", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cor_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_polar": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_polar_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_equatorial": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_polar_pd_n": { - "value": 35 - }, - "radius_equatorial_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_polar_pd_type": { - "value": "gaussian" - }, - "radius_equatorial_pd_n": { - "value": 35 - }, - "radius_polar_pd_nsigma": { - "value": 3 - }, - "radius_equatorial_pd_type": { - "value": "gaussian" - }, - "radius_equatorial_pd_nsigma": { - "value": 3 - } - }, - "name": "ellipsoid", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_polar", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_polar_pd", - "radius_polar_pd_n", - "radius_polar_pd_nsigma", - "radius_polar_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_equatorial", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_equatorial_pd", - "radius_equatorial_pd_n", - "radius_equatorial_pd_nsigma", - "radius_equatorial_pd_type" - ] - }, - { - "name": "radius_polar_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_polar" - }, - { - "name": "radius_polar_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_polar_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_polar_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_equatorial_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_equatorial" - }, - { - "name": "radius_equatorial_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_equatorial_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_equatorial_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 400, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "axis_ratio": { - "vary": false, - "value": 1.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_minor": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "axis_ratio_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "axis_ratio_pd_n": { - "value": 35 - }, - "radius_minor_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_minor_pd_n": { - "value": 35 - }, - "axis_ratio_pd_type": { - "value": "gaussian" - }, - "axis_ratio_pd_nsigma": { - "value": 3 - }, - "radius_minor_pd_type": { - "value": "gaussian" - }, - "radius_minor_pd_nsigma": { - "value": 3 - } - }, - "name": "elliptical_cylinder", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "axis_ratio", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "axis_ratio_pd", - "axis_ratio_pd_n", - "axis_ratio_pd_nsigma", - "axis_ratio_pd_type" - ] - }, - { - "name": "radius_minor", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_minor_pd", - "radius_minor_pd_n", - "radius_minor_pd_nsigma", - "radius_minor_pd_type" - ] - }, - { - "name": "radius_minor_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_minor" - }, - { - "name": "radius_minor_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_minor_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_minor_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "axis_ratio_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:axis_ratio" - }, - { - "name": "axis_ratio_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "axis_ratio_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "axis_ratio_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "dnn": { - "vary": false, - "value": 220, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "d_factor": { - "vary": false, - "value": 0.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "radius_pd_nsigma": { - "value": 3 - } - }, - "name": "fcc_paracrystal", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "dnn", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "d_factor", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 1000, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "kuhn_length": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "kuhn_length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "kuhn_length_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "kuhn_length_pd_type": { - "value": "gaussian" - }, - "kuhn_length_pd_nsigma": { - "value": 3 - } - }, - "name": "flexible_cylinder", - "format": "json", - "schema": { - "keys": [ - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "kuhn_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "kuhn_length_pd", - "kuhn_length_pd_n", - "kuhn_length_pd_nsigma", - "kuhn_length_pd_type" - ] - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "kuhn_length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:kuhn_length" - }, - { - "name": "kuhn_length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "kuhn_length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "kuhn_length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 1000, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 20, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "axis_ratio": { - "vary": false, - "value": 1.5, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "kuhn_length": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "kuhn_length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "kuhn_length_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "kuhn_length_pd_type": { - "value": "gaussian" - }, - "kuhn_length_pd_nsigma": { - "value": 3 - } - }, - "name": "flexible_cylinder_elliptical", - "format": "json", - "schema": { - "keys": [ - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "axis_ratio", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "kuhn_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "kuhn_length_pd", - "kuhn_length_pd_n", - "kuhn_length_pd_nsigma", - "kuhn_length_pd_type" - ] - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "kuhn_length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:kuhn_length" - }, - { - "name": "kuhn_length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "kuhn_length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "kuhn_length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 5, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_block": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cor_length": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "fractal_dim": { - "vary": false, - "value": 2, - "lowerBound": 0, - "upperBound": 6 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction": { - "vary": false, - "value": 0.05, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "radius_pd_nsigma": { - "value": 3 - } - }, - "name": "fractal", - "format": "json", - "schema": { - "keys": [ - { - "name": "volfraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fractal_dim", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld_block", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cor_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 60, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_shell": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cor_length": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "fractal_dim": { - "vary": false, - "value": 2, - "lowerBound": 0, - "upperBound": 6 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction": { - "vary": false, - "value": 0.05, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thickness_pd_n": { - "value": 35 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "fractal_core_shell", - "format": "json", - "schema": { - "keys": [ - { - "name": "volfraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fractal_dim", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "cor_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_shell", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 60, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "fuzziness": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "fuzziness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "fuzziness_pd_n": { - "value": 35 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "radius_pd_nsigma": { - "value": 3 - }, - "fuzziness_pd_type": { - "value": "gaussian" - }, - "fuzziness_pd_nsigma": { - "value": 3 - } - }, - "name": "fuzzy_sphere", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fuzziness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "fuzziness_pd", - "fuzziness_pd_n", - "fuzziness_pd_nsigma", - "fuzziness_pd_type" - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "fuzziness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:fuzziness" - }, - { - "name": "fuzziness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "fuzziness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "fuzziness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "gauss_scale": { - "vary": false, - "value": 100, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_scale": { - "vary": false, - "value": 50, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cor_length_static": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "cor_length_dynamic": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "gauss_lorentz_gel", - "format": "json", - "schema": { - "keys": [ - { - "name": "gauss_scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cor_length_dynamic", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cor_length_static", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sigma": { - "vary": false, - "value": 0.005, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "peak_pos": { - "vary": false, - "value": 0.05, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "gaussian_peak", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "peak_pos", - "unit": "1/Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sigma", - "unit": "1/Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "rg": { - "vary": false, - "value": 104, - "lowerBound": 2, - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cor_length": { - "vary": false, - "value": 16, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "fractal_dim": { - "vary": false, - "value": 2, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "guinier_scale": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_scale": { - "vary": false, - "value": 3.5, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "gel_fit", - "format": "json", - "schema": { - "keys": [ - { - "name": "rg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_scale", - "unit": "cm^-1", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "guinier_scale", - "unit": "cm^-1", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cor_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fractal_dim", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "rg": { - "vary": false, - "value": 60, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "guinier", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "s": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg": { - "vary": false, - "value": 60, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "porod_exp": { - "vary": false, - "value": 3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "guinier_porod", - "format": "json", - "schema": { - "keys": [ - { - "name": "rg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "s", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "porod_exp", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_pd_n": { - "value": 35 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_pd_type": { - "value": "gaussian" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thickness_pd_n": { - "value": 35 - }, - "length_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "hollow_cylinder", - "format": "json", - "schema": { - "keys": [ - { - "name": "length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_pd", - "length_pd_n", - "length_pd_nsigma", - "length_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length" - }, - { - "name": "length_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_a": { - "vary": false, - "value": 35, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "b2a_ratio": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "c2a_ratio": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_a_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "b2a_ratio_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "c2a_ratio_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_a_pd_n": { - "value": 35 - }, - "b2a_ratio_pd_n": { - "value": 35 - }, - "c2a_ratio_pd_n": { - "value": 35 - }, - "thickness_pd_n": { - "value": 35 - }, - "length_a_pd_type": { - "value": "gaussian" - }, - "b2a_ratio_pd_type": { - "value": "gaussian" - }, - "c2a_ratio_pd_type": { - "value": "gaussian" - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "length_a_pd_nsigma": { - "value": 3 - }, - "b2a_ratio_pd_nsigma": { - "value": 3 - }, - "c2a_ratio_pd_nsigma": { - "value": 3 - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "hollow_rectangular_prism", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "b2a_ratio", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "b2a_ratio_pd", - "b2a_ratio_pd_n", - "b2a_ratio_pd_nsigma", - "b2a_ratio_pd_type" - ] - }, - { - "name": "length_a", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_a_pd", - "length_a_pd_n", - "length_a_pd_nsigma", - "length_a_pd_type" - ] - }, - { - "name": "c2a_ratio", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "c2a_ratio_pd", - "c2a_ratio_pd_n", - "c2a_ratio_pd_nsigma", - "c2a_ratio_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "length_a_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_a" - }, - { - "name": "length_a_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_a_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_a_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "b2a_ratio_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:b2a_ratio" - }, - { - "name": "b2a_ratio_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "b2a_ratio_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "b2a_ratio_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "c2a_ratio_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:c2a_ratio" - }, - { - "name": "c2a_ratio_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "c2a_ratio_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "c2a_ratio_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_a": { - "vary": false, - "value": 35, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "b2a_ratio": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "c2a_ratio": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_a_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "b2a_ratio_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "c2a_ratio_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_a_pd_n": { - "value": 35 - }, - "b2a_ratio_pd_n": { - "value": 35 - }, - "c2a_ratio_pd_n": { - "value": 35 - }, - "length_a_pd_type": { - "value": "gaussian" - }, - "b2a_ratio_pd_type": { - "value": "gaussian" - }, - "c2a_ratio_pd_type": { - "value": "gaussian" - }, - "length_a_pd_nsigma": { - "value": 3 - }, - "b2a_ratio_pd_nsigma": { - "value": 3 - }, - "c2a_ratio_pd_nsigma": { - "value": 3 - } - }, - "name": "hollow_rectangular_prism_thin_walls", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_a", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_a_pd", - "length_a_pd_n", - "length_a_pd_nsigma", - "length_a_pd_type" - ] - }, - { - "name": "c2a_ratio", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "c2a_ratio_pd", - "c2a_ratio_pd_n", - "c2a_ratio_pd_nsigma", - "c2a_ratio_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "b2a_ratio", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "b2a_ratio_pd", - "b2a_ratio_pd_n", - "b2a_ratio_pd_nsigma", - "b2a_ratio_pd_type" - ] - }, - { - "name": "length_a_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_a" - }, - { - "name": "length_a_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_a_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_a_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "b2a_ratio_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:b2a_ratio" - }, - { - "name": "b2a_ratio_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "b2a_ratio_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "b2a_ratio_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "c2a_ratio_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:c2a_ratio" - }, - { - "name": "c2a_ratio_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "c2a_ratio_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "c2a_ratio_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness_pd_n": { - "value": 35 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "lamellar", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 0.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_head": { - "vary": false, - "value": 3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_head": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_tail": { - "vary": false, - "value": 15, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_head_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_tail_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_head_pd_n": { - "value": 35 - }, - "length_tail_pd_n": { - "value": 35 - }, - "length_head_pd_type": { - "value": "gaussian" - }, - "length_tail_pd_type": { - "value": "gaussian" - }, - "length_head_pd_nsigma": { - "value": 3 - }, - "length_tail_pd_nsigma": { - "value": 3 - } - }, - "name": "lamellar_hg", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_head", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_head", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_head_pd", - "length_head_pd_n", - "length_head_pd_nsigma", - "length_head_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_tail", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_tail_pd", - "length_tail_pd_n", - "length_tail_pd_nsigma", - "length_tail_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_tail_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_tail" - }, - { - "name": "length_tail_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_tail_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_tail_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_head_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_head" - }, - { - "name": "length_head_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_head_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_head_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 0.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "Nlayers": { - "vary": false, - "value": 30, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "sld_head": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "d_spacing": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_head": { - "vary": false, - "value": 2, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_tail": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "d_spacing_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "d_spacing_pd_n": { - "value": 35 - }, - "length_head_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_tail_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "Caille_parameter": { - "vary": false, - "value": 0.001, - "lowerBound": 0, - "upperBound": 0.8 - }, - "length_head_pd_n": { - "value": 35 - }, - "length_tail_pd_n": { - "value": 35 - }, - "d_spacing_pd_type": { - "value": "gaussian" - }, - "d_spacing_pd_nsigma": { - "value": 3 - }, - "length_head_pd_type": { - "value": "gaussian" - }, - "length_tail_pd_type": { - "value": "gaussian" - }, - "length_head_pd_nsigma": { - "value": 3 - }, - "length_tail_pd_nsigma": { - "value": 3 - } - }, - "name": "lamellar_hg_stack_caille", - "format": "json", - "schema": { - "keys": [ - { - "name": "Caille_parameter", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_head", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_head", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_head_pd", - "length_head_pd_n", - "length_head_pd_nsigma", - "length_head_pd_type" - ] - }, - { - "name": "Nlayers", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_tail", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_tail_pd", - "length_tail_pd_n", - "length_tail_pd_nsigma", - "length_tail_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "d_spacing", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "d_spacing_pd", - "d_spacing_pd_n", - "d_spacing_pd_nsigma", - "d_spacing_pd_type" - ] - }, - { - "name": "length_tail_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_tail" - }, - { - "name": "length_tail_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_tail_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_tail_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_head_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_head" - }, - { - "name": "length_head_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_head_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_head_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "d_spacing_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:d_spacing" - }, - { - "name": "d_spacing_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "d_spacing_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "d_spacing_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "Nlayers": { - "vary": false, - "value": 20, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "d_spacing": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness": { - "vary": false, - "value": 30, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "d_spacing_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "d_spacing_pd_n": { - "value": 35 - }, - "thickness_pd_n": { - "value": 35 - }, - "Caille_parameter": { - "vary": false, - "value": 0.1, - "lowerBound": 0, - "upperBound": 0.8 - }, - "d_spacing_pd_type": { - "value": "gaussian" - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "d_spacing_pd_nsigma": { - "value": 3 - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "lamellar_stack_caille", - "format": "json", - "schema": { - "keys": [ - { - "name": "Caille_parameter", - "unit": "1/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "Nlayers", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "d_spacing", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "d_spacing_pd", - "d_spacing_pd_n", - "d_spacing_pd_nsigma", - "d_spacing_pd_type" - ] - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "d_spacing_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:d_spacing" - }, - { - "name": "d_spacing_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "d_spacing_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "d_spacing_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "Nlayers": { - "vary": false, - "value": 20, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "sigma_d": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "d_spacing": { - "vary": false, - "value": 250, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness": { - "vary": false, - "value": 33, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6.34, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness_pd_n": { - "value": 35 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "lamellar_stack_paracrystal", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sigma_d", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "Nlayers", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "d_spacing", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "slope": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "intercept": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "line", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "slope", - "unit": "Ang/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "intercept", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 80, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "edge_sep": { - "vary": false, - "value": 350, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "num_pearls": { - "vary": false, - "value": 3, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "linear_pearls", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "num_pearls", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "edge_sep", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cor_length": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "lorentz", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cor_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cutoff_length": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "fractal_dim_mass": { - "vary": false, - "value": 1.9, - "lowerBound": 1, - "upperBound": 6 - } - }, - "name": "mass_fractal", - "format": "json", - "schema": { - "keys": [ - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cutoff_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fractal_dim_mass", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "rg_cluster": { - "vary": false, - "value": 4000, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg_primary": { - "vary": false, - "value": 86.7, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "fractal_dim_mass": { - "vary": false, - "value": 1.8, - "lowerBound": 0, - "upperBound": 6 - }, - "fractal_dim_surf": { - "vary": false, - "value": 2.3, - "lowerBound": 0, - "upperBound": 6 - } - }, - "name": "mass_surface_fractal", - "format": "json", - "schema": { - "keys": [ - { - "name": "rg_primary", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fractal_dim_surf", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg_cluster", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fractal_dim_mass", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "rg": { - "vary": false, - "value": 75, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "i_zero": { - "vary": false, - "value": 70, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg_pd_n": { - "value": 35 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "rg_pd_type": { - "value": "gaussian" - }, - "rg_pd_nsigma": { - "value": 3 - } - }, - "name": "mono_gauss_coil", - "format": "json", - "schema": { - "keys": [ - { - "name": "rg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "rg_pd", - "rg_pd_n", - "rg_pd_nsigma", - "rg_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "i_zero", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:rg" - }, - { - "name": "rg_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "rg_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "rg_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 0.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 60, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "n_shells": { - "vary": false, - "value": 2, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "n_shells_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_shell": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "volfraction": { - "vary": false, - "value": 0.05, - "lowerBound": 0, - "upperBound": 1 - }, - "n_shells_pd_n": { - "value": 35 - }, - "thick_solvent": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thick_shell_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "n_shells_pd_type": { - "value": "gaussian" - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thick_shell_pd_n": { - "value": 35 - }, - "thick_solvent_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "n_shells_pd_nsigma": { - "value": 3 - }, - "thick_solvent_pd_n": { - "value": 35 - }, - "thick_shell_pd_type": { - "value": "gaussian" - }, - "thick_shell_pd_nsigma": { - "value": 3 - }, - "thick_solvent_pd_type": { - "value": "gaussian" - }, - "thick_solvent_pd_nsigma": { - "value": 3 - } - }, - "name": "multilayer_vesicle", - "format": "json", - "schema": { - "keys": [ - { - "name": "thick_shell", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_shell_pd", - "thick_shell_pd_n", - "thick_shell_pd_nsigma", - "thick_shell_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "n_shells", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "n_shells_pd", - "n_shells_pd_n", - "n_shells_pd_nsigma", - "n_shells_pd_type" - ] - }, - { - "name": "volfraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "thick_solvent", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_solvent_pd", - "thick_solvent_pd_n", - "thick_solvent_pd_nsigma", - "thick_solvent_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_shell_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_shell" - }, - { - "name": "thick_shell_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_shell_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_shell_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_solvent_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_solvent" - }, - { - "name": "thick_solvent_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_solvent_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_solvent_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "n_shells_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:n_shells" - }, - { - "name": "n_shells_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "n_shells_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "n_shells_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "A1": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A2": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A3": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A4": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A5": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A6": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A7": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A8": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A9": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "A10": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_in1": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in2": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in3": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in4": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in5": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in6": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in7": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in8": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in9": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "n_shells": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": 10 - }, - "sld_core": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_in10": { - "vary": false, - "value": 1.7, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out1": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out2": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out3": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out4": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out5": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out6": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out7": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out8": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out9": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_out10": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness1": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness2": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness3": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness4": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness5": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness6": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness7": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness8": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness9": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_core": { - "vary": false, - "value": 200, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness10": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness1_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness2_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness3_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness4_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness5_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness6_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness7_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness8_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness9_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_core_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness10_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness1_pd_n": { - "value": 35 - }, - "thickness2_pd_n": { - "value": 35 - }, - "thickness3_pd_n": { - "value": 35 - }, - "thickness4_pd_n": { - "value": 35 - }, - "thickness5_pd_n": { - "value": 35 - }, - "thickness6_pd_n": { - "value": 35 - }, - "thickness7_pd_n": { - "value": 35 - }, - "thickness8_pd_n": { - "value": 35 - }, - "thickness9_pd_n": { - "value": 35 - }, - "radius_core_pd_n": { - "value": 35 - }, - "thickness10_pd_n": { - "value": 35 - }, - "thickness1_pd_type": { - "value": "gaussian" - }, - "thickness2_pd_type": { - "value": "gaussian" - }, - "thickness3_pd_type": { - "value": "gaussian" - }, - "thickness4_pd_type": { - "value": "gaussian" - }, - "thickness5_pd_type": { - "value": "gaussian" - }, - "thickness6_pd_type": { - "value": "gaussian" - }, - "thickness7_pd_type": { - "value": "gaussian" - }, - "thickness8_pd_type": { - "value": "gaussian" - }, - "thickness9_pd_type": { - "value": "gaussian" - }, - "radius_core_pd_type": { - "value": "gaussian" - }, - "thickness10_pd_type": { - "value": "gaussian" - }, - "thickness1_pd_nsigma": { - "value": 3 - }, - "thickness2_pd_nsigma": { - "value": 3 - }, - "thickness3_pd_nsigma": { - "value": 3 - }, - "thickness4_pd_nsigma": { - "value": 3 - }, - "thickness5_pd_nsigma": { - "value": 3 - }, - "thickness6_pd_nsigma": { - "value": 3 - }, - "thickness7_pd_nsigma": { - "value": 3 - }, - "thickness8_pd_nsigma": { - "value": 3 - }, - "thickness9_pd_nsigma": { - "value": 3 - }, - "radius_core_pd_nsigma": { - "value": 3 - }, - "thickness10_pd_nsigma": { - "value": 3 - } - }, - "name": "onion", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_out4", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_in9", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "n_shells", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "A8", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness9", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness9_pd", - "thickness9_pd_n", - "thickness9_pd_nsigma", - "thickness9_pd_type" - ] - }, - { - "name": "A3", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_core", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_core_pd", - "radius_core_pd_n", - "radius_core_pd_nsigma", - "radius_core_pd_type" - ] - }, - { - "name": "sld_in3", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "A6", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out6", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness2", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness2_pd", - "thickness2_pd_n", - "thickness2_pd_nsigma", - "thickness2_pd_type" - ] - }, - { - "name": "thickness4", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness4_pd", - "thickness4_pd_n", - "thickness4_pd_nsigma", - "thickness4_pd_type" - ] - }, - { - "name": "sld_in7", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness8", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness8_pd", - "thickness8_pd_n", - "thickness8_pd_nsigma", - "thickness8_pd_type" - ] - }, - { - "name": "A10", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_in6", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness6", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness6_pd", - "thickness6_pd_n", - "thickness6_pd_nsigma", - "thickness6_pd_type" - ] - }, - { - "name": "sld_in2", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness7", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness7_pd", - "thickness7_pd_n", - "thickness7_pd_nsigma", - "thickness7_pd_type" - ] - }, - { - "name": "A7", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_in5", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out5", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out10", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out2", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness5", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness5_pd", - "thickness5_pd_n", - "thickness5_pd_nsigma", - "thickness5_pd_type" - ] - }, - { - "name": "sld_in4", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out9", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness1", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness1_pd", - "thickness1_pd_n", - "thickness1_pd_nsigma", - "thickness1_pd_type" - ] - }, - { - "name": "A4", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness3", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness3_pd", - "thickness3_pd_n", - "thickness3_pd_nsigma", - "thickness3_pd_type" - ] - }, - { - "name": "sld_out8", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_in8", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out7", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_in10", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "A2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "A5", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out1", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness10", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness10_pd", - "thickness10_pd_n", - "thickness10_pd_nsigma", - "thickness10_pd_type" - ] - }, - { - "name": "sld_in1", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "A9", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "A1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_out3", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_core_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_core" - }, - { - "name": "radius_core_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_core_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_core_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness1_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness1" - }, - { - "name": "thickness1_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness1_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness1_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness2_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness2" - }, - { - "name": "thickness2_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness2_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness2_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness3_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness3" - }, - { - "name": "thickness3_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness3_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness3_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness4_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness4" - }, - { - "name": "thickness4_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness4_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness4_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness5_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness5" - }, - { - "name": "thickness5_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness5_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness5_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness6_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness6" - }, - { - "name": "thickness6_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness6_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness6_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness7_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness7" - }, - { - "name": "thickness7_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness7_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness7_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness8_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness8" - }, - { - "name": "thickness8_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness8_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness8_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness9_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness9" - }, - { - "name": "thickness9_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness9_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness9_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness10_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness10" - }, - { - "name": "thickness10_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness10_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness10_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_a": { - "vary": false, - "value": 35, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_b": { - "vary": false, - "value": 75, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_c": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_a_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_b_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_c_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_a_pd_n": { - "value": 35 - }, - "length_b_pd_n": { - "value": 35 - }, - "length_c_pd_n": { - "value": 35 - }, - "length_a_pd_type": { - "value": "gaussian" - }, - "length_b_pd_type": { - "value": "gaussian" - }, - "length_c_pd_type": { - "value": "gaussian" - }, - "length_a_pd_nsigma": { - "value": 3 - }, - "length_b_pd_nsigma": { - "value": 3 - }, - "length_c_pd_nsigma": { - "value": 3 - } - }, - "name": "parallelepiped", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_b", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_b_pd", - "length_b_pd_n", - "length_b_pd_nsigma", - "length_b_pd_type" - ] - }, - { - "name": "length_a", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_a_pd", - "length_a_pd_n", - "length_a_pd_nsigma", - "length_a_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_c", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_c_pd", - "length_c_pd_n", - "length_c_pd_nsigma", - "length_c_pd_type" - ] - }, - { - "name": "length_a_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_a" - }, - { - "name": "length_a_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_a_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_a_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_b_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_b" - }, - { - "name": "length_b_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_b_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_b_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "length_c_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_c" - }, - { - "name": "length_c_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_c_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_c_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "peak_pos": { - "vary": false, - "value": 0.05, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "peak_hwhm": { - "vary": false, - "value": 0.005, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "peak_lorentz", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "peak_pos", - "unit": "1/Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "peak_hwhm", - "unit": "1/Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 80, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "edge_sep": { - "vary": false, - "value": 350, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "num_pearls": { - "vary": false, - "value": 3, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "sld_string": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "edge_sep_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_string": { - "vary": false, - "value": 2.5, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "edge_sep_pd_n": { - "value": 35 - }, - "num_pearls_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "num_pearls_pd_n": { - "value": 35 - }, - "thick_string_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "edge_sep_pd_type": { - "value": "gaussian" - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thick_string_pd_n": { - "value": 35 - }, - "edge_sep_pd_nsigma": { - "value": 3 - }, - "num_pearls_pd_type": { - "value": "gaussian" - }, - "num_pearls_pd_nsigma": { - "value": 3 - }, - "thick_string_pd_type": { - "value": "gaussian" - }, - "thick_string_pd_nsigma": { - "value": 3 - } - }, - "name": "pearl_necklace", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "edge_sep", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "edge_sep_pd", - "edge_sep_pd_n", - "edge_sep_pd_nsigma", - "edge_sep_pd_type" - ] - }, - { - "name": "sld_string", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "num_pearls", - "unit": "none", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "num_pearls_pd", - "num_pearls_pd_n", - "num_pearls_pd_nsigma", - "num_pearls_pd_type" - ] - }, - { - "name": "thick_string", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_string_pd", - "thick_string_pd_n", - "thick_string_pd_nsigma", - "thick_string_pd_type" - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "edge_sep_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:edge_sep" - }, - { - "name": "edge_sep_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "edge_sep_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "edge_sep_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_string_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_string" - }, - { - "name": "thick_string_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_string_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_string_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "num_pearls_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:num_pearls" - }, - { - "name": "num_pearls_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "num_pearls_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "num_pearls_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "rg": { - "vary": false, - "value": 75, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "i_zero": { - "vary": false, - "value": 70, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "polydispersity": { - "vary": false, - "value": 2, - "lowerBound": 1, - "upperBound": "Infinity" - } - }, - "name": "poly_gauss_coil", - "format": "json", - "schema": { - "keys": [ - { - "name": "rg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "polydispersity", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "i_zero", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "rg": { - "vary": false, - "value": 60, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "porod_exp": { - "vary": false, - "value": 3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "polymer_excl_volume", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "porod_exp", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "rg": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "v_core": { - "vary": false, - "value": 62624, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "n_aggreg": { - "vary": false, - "value": 6, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "ndensity": { - "vary": false, - "value": 8.94, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 0.34, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "v_corona": { - "vary": false, - "value": 61940, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_corona": { - "vary": false, - "value": 0.8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_core": { - "vary": false, - "value": 45, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 6.4, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "d_penetration": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "polymer_micelle", - "format": "json", - "schema": { - "keys": [ - { - "name": "rg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "n_aggreg", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "ndensity", - "unit": "1e15/cm^3", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "d_penetration", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "v_corona", - "unit": "Ang^3", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_corona", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_core", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "v_core", - "unit": "Ang^3", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "porod", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "power": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "power_law", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "beta": { - "vary": false, - "value": 0.02, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "alpha": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 60, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "beta_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "alpha_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "beta_pd_n": { - "value": 35 - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "alpha_pd_n": { - "value": 35 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "beta_pd_type": { - "value": "gaussian" - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "alpha_pd_type": { - "value": "gaussian" - }, - "beta_pd_nsigma": { - "value": 3 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thickness_pd_n": { - "value": 35 - }, - "alpha_pd_nsigma": { - "value": 3 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "pringle", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "beta", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "beta_pd", - "beta_pd_n", - "beta_pd_nsigma", - "beta_pd_type" - ] - }, - { - "name": "alpha", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "alpha_pd", - "alpha_pd_n", - "alpha_pd_nsigma", - "alpha_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "alpha_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:alpha" - }, - { - "name": "alpha_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "alpha_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "alpha_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "beta_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:beta" - }, - { - "name": "beta_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "beta_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "beta_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_lg": { - "vary": false, - "value": -0.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_sm": { - "vary": false, - "value": 3.5, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_lg": { - "vary": false, - "value": 5000, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_sm": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "penetration": { - "vary": false, - "value": 0, - "lowerBound": -1, - "upperBound": 1 - }, - "sld_solvent": { - "vary": false, - "value": 6.36, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_lg_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_sm_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "penetration_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_lg_pd_n": { - "value": 35 - }, - "radius_sm_pd_n": { - "value": 35 - }, - "volfraction_lg": { - "vary": false, - "value": 0.05, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction_sm": { - "vary": false, - "value": 0.005, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "penetration_pd_n": { - "value": 35 - }, - "surface_fraction": { - "vary": false, - "value": 0.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_lg_pd_type": { - "value": "gaussian" - }, - "radius_sm_pd_type": { - "value": "gaussian" - }, - "penetration_pd_type": { - "value": "gaussian" - }, - "radius_lg_pd_nsigma": { - "value": 3 - }, - "radius_sm_pd_nsigma": { - "value": 3 - }, - "penetration_pd_nsigma": { - "value": 3 - } - }, - "name": "raspberry", - "format": "json", - "schema": { - "keys": [ - { - "name": "volfraction_sm", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_sm", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "surface_fraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_lg", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction_lg", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_lg", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_lg_pd", - "radius_lg_pd_n", - "radius_lg_pd_nsigma", - "radius_lg_pd_type" - ] - }, - { - "name": "penetration", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "penetration_pd", - "penetration_pd_n", - "penetration_pd_nsigma", - "penetration_pd_type" - ] - }, - { - "name": "radius_sm", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_sm_pd", - "radius_sm_pd_n", - "radius_sm_pd_nsigma", - "radius_sm_pd_type" - ] - }, - { - "name": "radius_lg_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_lg" - }, - { - "name": "radius_lg_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_lg_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_lg_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_sm_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_sm" - }, - { - "name": "radius_sm_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_sm_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_sm_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "penetration_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:penetration" - }, - { - "name": "penetration_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "penetration_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "penetration_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "length_a": { - "vary": false, - "value": 35, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "b2a_ratio": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "c2a_ratio": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "length_a_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "b2a_ratio_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "c2a_ratio_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "length_a_pd_n": { - "value": 35 - }, - "b2a_ratio_pd_n": { - "value": 35 - }, - "c2a_ratio_pd_n": { - "value": 35 - }, - "length_a_pd_type": { - "value": "gaussian" - }, - "b2a_ratio_pd_type": { - "value": "gaussian" - }, - "c2a_ratio_pd_type": { - "value": "gaussian" - }, - "length_a_pd_nsigma": { - "value": 3 - }, - "b2a_ratio_pd_nsigma": { - "value": 3 - }, - "c2a_ratio_pd_nsigma": { - "value": 3 - } - }, - "name": "rectangular_prism", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "b2a_ratio", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "b2a_ratio_pd", - "b2a_ratio_pd_n", - "b2a_ratio_pd_nsigma", - "b2a_ratio_pd_type" - ] - }, - { - "name": "length_a", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "length_a_pd", - "length_a_pd_n", - "length_a_pd_nsigma", - "length_a_pd_type" - ] - }, - { - "name": "c2a_ratio", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "c2a_ratio_pd", - "c2a_ratio_pd_n", - "c2a_ratio_pd_nsigma", - "c2a_ratio_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "length_a_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:length_a" - }, - { - "name": "length_a_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "length_a_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "length_a_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "b2a_ratio_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:b2a_ratio" - }, - { - "name": "b2a_ratio_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "b2a_ratio_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "b2a_ratio_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "c2a_ratio_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:c2a_ratio" - }, - { - "name": "c2a_ratio_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "c2a_ratio_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "c2a_ratio_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "L1": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "L2": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "L3": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "L4": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "N1": { - "vary": false, - "value": 1000, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "N2": { - "vary": false, - "value": 1000, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "N3": { - "vary": false, - "value": 1000, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "N4": { - "vary": false, - "value": 1000, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "b1": { - "vary": false, - "value": 5, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "b2": { - "vary": false, - "value": 5, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "b3": { - "vary": false, - "value": 5, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "b4": { - "vary": false, - "value": 5, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "v1": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "v2": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "v3": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "v4": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "K12": { - "vary": false, - "value": -0.0004, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "K13": { - "vary": false, - "value": -0.0004, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "K14": { - "vary": false, - "value": -0.0004, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "K23": { - "vary": false, - "value": -0.0004, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "K24": { - "vary": false, - "value": -0.0004, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "K34": { - "vary": false, - "value": -0.0004, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "Phi1": { - "vary": false, - "value": 0.25, - "lowerBound": 0, - "upperBound": 1 - }, - "Phi2": { - "vary": false, - "value": 0.25, - "lowerBound": 0, - "upperBound": 1 - }, - "Phi3": { - "vary": false, - "value": 0.25, - "lowerBound": 0, - "upperBound": 1 - }, - "Phi4": { - "vary": false, - "value": 0.25, - "lowerBound": 0, - "upperBound": 1 - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "case_num": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": 9 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "rpa", - "format": "json", - "schema": { - "keys": [ - { - "name": "L1", - "unit": "fm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "Phi2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "N1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "K23", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "b4", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "K13", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "v4", - "unit": "mL/mol", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "b1", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "Phi1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "K34", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "L3", - "unit": "fm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "b3", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "K12", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "N3", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "L4", - "unit": "fm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "N4", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "K14", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "v1", - "unit": "mL/mol", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "L2", - "unit": "fm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "v3", - "unit": "mL/mol", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "N2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "K24", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "Phi3", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "case_num", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "Phi4", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "v2", - "unit": "mL/mol", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "b2", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "dnn": { - "vary": false, - "value": 220, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld": { - "vary": false, - "value": 3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 40, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "d_factor": { - "vary": false, - "value": 0.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.3, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd_type": { - "value": "gaussian" - }, - "radius_pd_nsigma": { - "value": 3 - } - }, - "name": "sc_paracrystal", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "dnn", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "d_factor", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 3.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": true, - "value": 150, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": true, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": -0.56, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_type": { - "value": "lognormal" - }, - "radius_pd_nsigma": { - "value": 3 - } - }, - "name": "sphere", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "nu1": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu2": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu3": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu4": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu5": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu6": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu7": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu8": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu9": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "nu10": { - "vary": false, - "value": 2.5, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "sld1": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld2": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld3": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld4": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld5": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld6": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld7": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld8": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld9": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld10": { - "vary": false, - "value": 4.06, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "shape1": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape2": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape3": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape4": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape5": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape6": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape7": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape8": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "shape9": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "n_steps": { - "vary": false, - "value": 35, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "shape10": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 4 - }, - "n_shells": { - "vary": false, - "value": 1, - "lowerBound": 1, - "upperBound": 10 - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "interface1": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface2": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface3": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface4": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface5": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface6": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface7": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface8": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface9": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness1": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness2": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness3": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness4": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness5": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness6": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness7": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness8": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "thickness9": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface10": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thickness10": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "interface1_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface2_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface3_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface4_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface5_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface6_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface7_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface8_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface9_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness1_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness2_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness3_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness4_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness5_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness6_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness7_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness8_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness9_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface10_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness10_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "interface1_pd_n": { - "value": 35 - }, - "interface2_pd_n": { - "value": 35 - }, - "interface3_pd_n": { - "value": 35 - }, - "interface4_pd_n": { - "value": 35 - }, - "interface5_pd_n": { - "value": 35 - }, - "interface6_pd_n": { - "value": 35 - }, - "interface7_pd_n": { - "value": 35 - }, - "interface8_pd_n": { - "value": 35 - }, - "interface9_pd_n": { - "value": 35 - }, - "thickness1_pd_n": { - "value": 35 - }, - "thickness2_pd_n": { - "value": 35 - }, - "thickness3_pd_n": { - "value": 35 - }, - "thickness4_pd_n": { - "value": 35 - }, - "thickness5_pd_n": { - "value": 35 - }, - "thickness6_pd_n": { - "value": 35 - }, - "thickness7_pd_n": { - "value": 35 - }, - "thickness8_pd_n": { - "value": 35 - }, - "thickness9_pd_n": { - "value": 35 - }, - "interface10_pd_n": { - "value": 35 - }, - "thickness10_pd_n": { - "value": 35 - }, - "interface1_pd_type": { - "value": "gaussian" - }, - "interface2_pd_type": { - "value": "gaussian" - }, - "interface3_pd_type": { - "value": "gaussian" - }, - "interface4_pd_type": { - "value": "gaussian" - }, - "interface5_pd_type": { - "value": "gaussian" - }, - "interface6_pd_type": { - "value": "gaussian" - }, - "interface7_pd_type": { - "value": "gaussian" - }, - "interface8_pd_type": { - "value": "gaussian" - }, - "interface9_pd_type": { - "value": "gaussian" - }, - "thickness1_pd_type": { - "value": "gaussian" - }, - "thickness2_pd_type": { - "value": "gaussian" - }, - "thickness3_pd_type": { - "value": "gaussian" - }, - "thickness4_pd_type": { - "value": "gaussian" - }, - "thickness5_pd_type": { - "value": "gaussian" - }, - "thickness6_pd_type": { - "value": "gaussian" - }, - "thickness7_pd_type": { - "value": "gaussian" - }, - "thickness8_pd_type": { - "value": "gaussian" - }, - "thickness9_pd_type": { - "value": "gaussian" - }, - "interface10_pd_type": { - "value": "gaussian" - }, - "thickness10_pd_type": { - "value": "gaussian" - }, - "interface1_pd_nsigma": { - "value": 3 - }, - "interface2_pd_nsigma": { - "value": 3 - }, - "interface3_pd_nsigma": { - "value": 3 - }, - "interface4_pd_nsigma": { - "value": 3 - }, - "interface5_pd_nsigma": { - "value": 3 - }, - "interface6_pd_nsigma": { - "value": 3 - }, - "interface7_pd_nsigma": { - "value": 3 - }, - "interface8_pd_nsigma": { - "value": 3 - }, - "interface9_pd_nsigma": { - "value": 3 - }, - "thickness1_pd_nsigma": { - "value": 3 - }, - "thickness2_pd_nsigma": { - "value": 3 - }, - "thickness3_pd_nsigma": { - "value": 3 - }, - "thickness4_pd_nsigma": { - "value": 3 - }, - "thickness5_pd_nsigma": { - "value": 3 - }, - "thickness6_pd_nsigma": { - "value": 3 - }, - "thickness7_pd_nsigma": { - "value": 3 - }, - "thickness8_pd_nsigma": { - "value": 3 - }, - "thickness9_pd_nsigma": { - "value": 3 - }, - "interface10_pd_nsigma": { - "value": 3 - }, - "thickness10_pd_nsigma": { - "value": 3 - } - }, - "name": "spherical_sld", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld9", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu10", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "shape1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld7", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "interface5", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface5_pd", - "interface5_pd_n", - "interface5_pd_nsigma", - "interface5_pd_type" - ] - }, - { - "name": "shape5", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu7", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "interface8", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface8_pd", - "interface8_pd_n", - "interface8_pd_nsigma", - "interface8_pd_type" - ] - }, - { - "name": "n_shells", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld8", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness9", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness9_pd", - "thickness9_pd_n", - "thickness9_pd_nsigma", - "thickness9_pd_type" - ] - }, - { - "name": "interface7", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface7_pd", - "interface7_pd_n", - "interface7_pd_nsigma", - "interface7_pd_type" - ] - }, - { - "name": "interface4", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface4_pd", - "interface4_pd_n", - "interface4_pd_nsigma", - "interface4_pd_type" - ] - }, - { - "name": "sld3", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu6", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "interface10", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface10_pd", - "interface10_pd_n", - "interface10_pd_nsigma", - "interface10_pd_type" - ] - }, - { - "name": "interface1", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface1_pd", - "interface1_pd_n", - "interface1_pd_nsigma", - "interface1_pd_type" - ] - }, - { - "name": "shape3", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu4", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu9", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness2", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness2_pd", - "thickness2_pd_n", - "thickness2_pd_nsigma", - "thickness2_pd_type" - ] - }, - { - "name": "thickness4", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness4_pd", - "thickness4_pd_n", - "thickness4_pd_nsigma", - "thickness4_pd_type" - ] - }, - { - "name": "sld1", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness8", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness8_pd", - "thickness8_pd_n", - "thickness8_pd_nsigma", - "thickness8_pd_type" - ] - }, - { - "name": "sld5", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "shape7", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "interface3", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface3_pd", - "interface3_pd_n", - "interface3_pd_nsigma", - "interface3_pd_type" - ] - }, - { - "name": "thickness6", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness6_pd", - "thickness6_pd_n", - "thickness6_pd_nsigma", - "thickness6_pd_type" - ] - }, - { - "name": "shape8", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "interface9", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface9_pd", - "interface9_pd_n", - "interface9_pd_nsigma", - "interface9_pd_type" - ] - }, - { - "name": "n_steps", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld4", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu8", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness7", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness7_pd", - "thickness7_pd_n", - "thickness7_pd_nsigma", - "thickness7_pd_type" - ] - }, - { - "name": "nu2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness5", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness5_pd", - "thickness5_pd_n", - "thickness5_pd_nsigma", - "thickness5_pd_type" - ] - }, - { - "name": "nu1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "shape9", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness1", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness1_pd", - "thickness1_pd_n", - "thickness1_pd_nsigma", - "thickness1_pd_type" - ] - }, - { - "name": "sld10", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld2", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "shape6", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness3", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness3_pd", - "thickness3_pd_n", - "thickness3_pd_nsigma", - "thickness3_pd_type" - ] - }, - { - "name": "sld6", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu5", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "nu3", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "shape2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness10", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness10_pd", - "thickness10_pd_n", - "thickness10_pd_nsigma", - "thickness10_pd_type" - ] - }, - { - "name": "shape4", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "shape10", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "interface6", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface6_pd", - "interface6_pd_n", - "interface6_pd_nsigma", - "interface6_pd_type" - ] - }, - { - "name": "interface2", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "interface2_pd", - "interface2_pd_n", - "interface2_pd_nsigma", - "interface2_pd_type" - ] - }, - { - "name": "thickness1_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness1" - }, - { - "name": "thickness1_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness1_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness1_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface1_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface1" - }, - { - "name": "interface1_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface1_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface1_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness2_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness2" - }, - { - "name": "thickness2_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness2_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness2_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface2_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface2" - }, - { - "name": "interface2_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface2_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface2_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness3_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness3" - }, - { - "name": "thickness3_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness3_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness3_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface3_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface3" - }, - { - "name": "interface3_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface3_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface3_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness4_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness4" - }, - { - "name": "thickness4_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness4_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness4_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface4_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface4" - }, - { - "name": "interface4_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface4_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface4_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness5_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness5" - }, - { - "name": "thickness5_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness5_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness5_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface5_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface5" - }, - { - "name": "interface5_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface5_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface5_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness6_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness6" - }, - { - "name": "thickness6_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness6_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness6_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface6_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface6" - }, - { - "name": "interface6_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface6_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface6_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness7_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness7" - }, - { - "name": "thickness7_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness7_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness7_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface7_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface7" - }, - { - "name": "interface7_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface7_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface7_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness8_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness8" - }, - { - "name": "thickness8_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness8_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness8_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface8_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface8" - }, - { - "name": "interface8_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface8_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface8_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness9_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness9" - }, - { - "name": "thickness9_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness9_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness9_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface9_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface9" - }, - { - "name": "interface9_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface9_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface9_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness10_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness10" - }, - { - "name": "thickness10_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness10_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness10_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "interface10_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:interface10" - }, - { - "name": "interface10_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "interface10_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "interface10_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "q_0": { - "vary": false, - "value": 0.1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "gamma": { - "vary": false, - "value": 3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "spinodal", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "gamma", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "q_0", - "unit": "1/Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 15, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sigma_d": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_core": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "sld_layer": { - "vary": false, - "value": 0, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "n_stacking": { - "vary": false, - "value": 1, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "thick_core": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 5, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "thick_layer": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "n_stacking_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thick_core_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thick_layer_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "n_stacking_pd_n": { - "value": 35 - }, - "thick_core_pd_n": { - "value": 35 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thick_layer_pd_n": { - "value": 35 - }, - "n_stacking_pd_type": { - "value": "gaussian" - }, - "thick_core_pd_type": { - "value": "gaussian" - }, - "thick_layer_pd_type": { - "value": "gaussian" - }, - "n_stacking_pd_nsigma": { - "value": 3 - }, - "thick_core_pd_nsigma": { - "value": 3 - }, - "thick_layer_pd_nsigma": { - "value": 3 - } - }, - "name": "stacked_disks", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld_layer", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sigma_d", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "thick_core", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_core_pd", - "thick_core_pd_n", - "thick_core_pd_nsigma", - "thick_core_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "n_stacking", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "n_stacking_pd", - "n_stacking_pd_n", - "n_stacking_pd_nsigma", - "n_stacking_pd_type" - ] - }, - { - "name": "sld_core", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thick_layer", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thick_layer_pd", - "thick_layer_pd_n", - "thick_layer_pd_nsigma", - "thick_layer_pd_type" - ] - }, - { - "name": "thick_core_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_core" - }, - { - "name": "thick_core_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_core_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_core_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thick_layer_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thick_layer" - }, - { - "name": "thick_layer_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thick_layer_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thick_layer_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "n_stacking_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:n_stacking" - }, - { - "name": "n_stacking_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "n_stacking_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "n_stacking_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "arms": { - "vary": false, - "value": 3, - "lowerBound": 1, - "upperBound": 6 - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "rg_squared": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "star_polymer", - "format": "json", - "schema": { - "keys": [ - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "arms", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg_squared", - "unit": "Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "cutoff_length": { - "vary": false, - "value": 500, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "fractal_dim_surf": { - "vary": false, - "value": 2, - "lowerBound": 1, - "upperBound": 3 - } - }, - "name": "surface_fractal", - "format": "json", - "schema": { - "keys": [ - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "fractal_dim_surf", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "cutoff_length", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "d": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "xi": { - "vary": false, - "value": 30, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "sld_a": { - "vary": false, - "value": 0.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_b": { - "vary": false, - "value": 6.3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction_a": { - "vary": false, - "value": 0.5, - "lowerBound": 0, - "upperBound": 1 - } - }, - "name": "teubner_strey", - "format": "json", - "schema": { - "keys": [ - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "xi", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_a", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_b", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "d", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction_a", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "sld_solvent": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_polar": { - "vary": false, - "value": 10, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_polar_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_polar_pd_n": { - "value": 35 - }, - "radius_equat_major": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_equat_minor": { - "vary": false, - "value": 20, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_polar_pd_type": { - "value": "gaussian" - }, - "radius_equat_major_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_equat_minor_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_polar_pd_nsigma": { - "value": 3 - }, - "radius_equat_major_pd_n": { - "value": 35 - }, - "radius_equat_minor_pd_n": { - "value": 35 - }, - "radius_equat_major_pd_type": { - "value": "gaussian" - }, - "radius_equat_minor_pd_type": { - "value": "gaussian" - }, - "radius_equat_major_pd_nsigma": { - "value": 3 - }, - "radius_equat_minor_pd_nsigma": { - "value": 3 - } - }, - "name": "triaxial_ellipsoid", - "format": "json", - "schema": { - "keys": [ - { - "name": "radius_polar", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_polar_pd", - "radius_polar_pd_n", - "radius_polar_pd_nsigma", - "radius_polar_pd_type" - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_equat_major", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_equat_major_pd", - "radius_equat_major_pd_n", - "radius_equat_major_pd_nsigma", - "radius_equat_major_pd_type" - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_equat_minor", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_equat_minor_pd", - "radius_equat_minor_pd_n", - "radius_equat_minor_pd_nsigma", - "radius_equat_minor_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_equat_minor_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_equat_minor" - }, - { - "name": "radius_equat_minor_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_equat_minor_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_equat_minor_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_equat_major_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_equat_major" - }, - { - "name": "radius_equat_major_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_equat_major_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_equat_major_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "radius_polar_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius_polar" - }, - { - "name": "radius_polar_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_polar_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_polar_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_exp_1": { - "vary": false, - "value": 3, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_exp_2": { - "vary": false, - "value": 2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_scale_1": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_scale_2": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_length_1": { - "vary": false, - "value": 100, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "lorentz_length_2": { - "vary": false, - "value": 10, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "two_lorentzian", - "format": "json", - "schema": { - "keys": [ - { - "name": "lorentz_length_1", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_scale_1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_length_2", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_scale_2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_exp_1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "lorentz_exp_2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "power_1": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "power_2": { - "vary": false, - "value": 4, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "crossover": { - "vary": false, - "value": 0.04, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "coefficent_1": { - "vary": false, - "value": 1, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "two_power_law", - "format": "json", - "schema": { - "keys": [ - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power_1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "coefficent_1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power_2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "crossover", - "unit": "1/Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "B1": { - "vary": false, - "value": 0.0000045, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "B2": { - "vary": false, - "value": 0.0000045, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "B3": { - "vary": false, - "value": 0.0000045, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "B4": { - "vary": false, - "value": 0.0000045, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "B5": { - "vary": false, - "value": 0.0000045, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "B6": { - "vary": false, - "value": 0.0000045, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "G1": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "G2": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "G3": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "G4": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "G5": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "G6": { - "vary": false, - "value": 400, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg1": { - "vary": false, - "value": 15.8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg2": { - "vary": false, - "value": 15.8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg3": { - "vary": false, - "value": 15.8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg4": { - "vary": false, - "value": 15.8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg5": { - "vary": false, - "value": 15.8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "rg6": { - "vary": false, - "value": 15.8, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "level": { - "vary": false, - "value": 1, - "lowerBound": 1, - "upperBound": 6 - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "power1": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "power2": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "power3": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "power4": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "power5": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "power6": { - "vary": false, - "value": 4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - } - }, - "name": "unified_power_Rg", - "format": "json", - "schema": { - "keys": [ - { - "name": "power3", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "B1", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "B2", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg2", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "G1", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg4", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "B3", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "G4", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "B4", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power4", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg6", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power6", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "G2", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "level", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg1", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "B5", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power5", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "G6", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power2", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "G3", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "G5", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "power1", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg3", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "rg5", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "B6", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "sld": { - "vary": false, - "value": 0.5, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": false, - "value": 100, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness": { - "vary": false, - "value": 30, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "background": { - "vary": false, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": 6.36, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction": { - "vary": false, - "value": 0.05, - "lowerBound": 0, - "upperBound": 1 - }, - "thickness_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "radius_pd_type": { - "value": "gaussian" - }, - "thickness_pd_n": { - "value": 35 - }, - "radius_pd_nsigma": { - "value": 3 - }, - "thickness_pd_type": { - "value": "gaussian" - }, - "thickness_pd_nsigma": { - "value": 3 - } - }, - "name": "vesicle", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "thickness", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "thickness_pd", - "thickness_pd_n", - "thickness_pd_nsigma", - "thickness_pd_type" - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - }, - { - "name": "thickness_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:thickness" - }, - { - "name": "thickness_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "thickness_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "thickness_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - } - ], - "viewScaffolds": [ - { - "name": "adsorbed_layer_view", - "spec": { - "keys": [ - { - "name": "volfraction" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "name": "adsorbed_amount" - }, - { - "name": "density_shell" - }, - { - "name": "radius" - }, - { - "name": "sld_shell" - }, - { - "name": "second_moment" - } - ] - }, - "title": "adsorbed_layer", - "specType": "parameter-data", - "resources": [ - "adsorbed_layer" - ] - }, - { - "name": "barbell_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "radius_bell_pd" - }, - { - "name": "radius_bell_pd_n" - }, - { - "name": "radius_bell_pd_nsigma" - }, - { - "name": "radius_bell_pd_type" - } - ], - "name": "radius_bell" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - } - ] - }, - "title": "barbell", - "specType": "parameter-data", - "resources": [ - "barbell" - ] - }, - { - "name": "bcc_paracrystal_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld" - }, - { - "name": "dnn" - }, - { - "name": "background" - }, - { - "name": "d_factor" - } - ] - }, - "title": "bcc_paracrystal", - "specType": "parameter-data", - "resources": [ - "bcc_paracrystal" - ] - }, - { - "name": "be_polyelectrolyte_view", - "spec": { - "keys": [ - { - "name": "monomer_length" - }, - { - "name": "ionization_degree" - }, - { - "name": "polymer_concentration" - }, - { - "name": "contrast_factor" - }, - { - "name": "salt_concentration" - }, - { - "name": "background" - }, - { - "name": "virial_param" - }, - { - "name": "scale" - }, - { - "name": "bjerrum_length" - } - ] - }, - "title": "be_polyelectrolyte", - "specType": "parameter-data", - "resources": [ - "be_polyelectrolyte" - ] - }, - { - "name": "binary_hard_sphere_view", - "spec": { - "keys": [ - { - "name": "volfraction_sm" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "sld_lg" - }, - { - "name": "volfraction_lg" - }, - { - "name": "scale" - }, - { - "name": "radius_lg" - }, - { - "name": "sld_sm" - }, - { - "name": "radius_sm" - } - ] - }, - "title": "binary_hard_sphere", - "specType": "parameter-data", - "resources": [ - "binary_hard_sphere" - ] - }, - { - "name": "broad_peak_view", - "spec": { - "keys": [ - { - "name": "peak_pos" - }, - { - "name": "lorentz_length" - }, - { - "name": "porod_exp" - }, - { - "name": "porod_scale" - }, - { - "name": "background" - }, - { - "name": "lorentz_scale" - }, - { - "name": "lorentz_exp" - }, - { - "name": "scale" - } - ] - }, - "title": "broad_peak", - "specType": "parameter-data", - "resources": [ - "broad_peak" - ] - }, - { - "name": "capped_cylinder_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_cap_pd" - }, - { - "name": "radius_cap_pd_n" - }, - { - "name": "radius_cap_pd_nsigma" - }, - { - "name": "radius_cap_pd_type" - } - ], - "name": "radius_cap" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - } - ] - }, - "title": "capped_cylinder", - "specType": "parameter-data", - "resources": [ - "capped_cylinder" - ] - }, - { - "name": "core_multi_shell_view", - "spec": { - "keys": [ - { - "name": "sld9" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "thickness5_pd" - }, - { - "name": "thickness5_pd_n" - }, - { - "name": "thickness5_pd_nsigma" - }, - { - "name": "thickness5_pd_type" - } - ], - "name": "thickness5" - }, - { - "keys": [ - { - "name": "thickness2_pd" - }, - { - "name": "thickness2_pd_n" - }, - { - "name": "thickness2_pd_nsigma" - }, - { - "name": "thickness2_pd_type" - } - ], - "name": "thickness2" - }, - { - "keys": [ - { - "name": "thickness4_pd" - }, - { - "name": "thickness4_pd_n" - }, - { - "name": "thickness4_pd_nsigma" - }, - { - "name": "thickness4_pd_type" - } - ], - "name": "thickness4" - }, - { - "name": "sld7" - }, - { - "name": "sld1" - }, - { - "keys": [ - { - "name": "thickness8_pd" - }, - { - "name": "thickness8_pd_n" - }, - { - "name": "thickness8_pd_nsigma" - }, - { - "name": "thickness8_pd_type" - } - ], - "name": "thickness8" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld5" - }, - { - "keys": [ - { - "name": "thickness1_pd" - }, - { - "name": "thickness1_pd_n" - }, - { - "name": "thickness1_pd_nsigma" - }, - { - "name": "thickness1_pd_type" - } - ], - "name": "thickness1" - }, - { - "keys": [ - { - "name": "thickness10_pd" - }, - { - "name": "thickness10_pd_n" - }, - { - "name": "thickness10_pd_nsigma" - }, - { - "name": "thickness10_pd_type" - } - ], - "name": "thickness10" - }, - { - "name": "sld10" - }, - { - "name": "sld2" - }, - { - "name": "sld8" - }, - { - "keys": [ - { - "name": "thickness9_pd" - }, - { - "name": "thickness9_pd_n" - }, - { - "name": "thickness9_pd_nsigma" - }, - { - "name": "thickness9_pd_type" - } - ], - "name": "thickness9" - }, - { - "keys": [ - { - "name": "thickness6_pd" - }, - { - "name": "thickness6_pd_n" - }, - { - "name": "thickness6_pd_nsigma" - }, - { - "name": "thickness6_pd_type" - } - ], - "name": "thickness6" - }, - { - "keys": [ - { - "name": "thickness3_pd" - }, - { - "name": "thickness3_pd_n" - }, - { - "name": "thickness3_pd_nsigma" - }, - { - "name": "thickness3_pd_type" - } - ], - "name": "thickness3" - }, - { - "name": "background" - }, - { - "name": "sld6" - }, - { - "name": "sld4" - }, - { - "name": "sld3" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "thickness7_pd" - }, - { - "name": "thickness7_pd_n" - }, - { - "name": "thickness7_pd_nsigma" - }, - { - "name": "thickness7_pd_type" - } - ], - "name": "thickness7" - }, - { - "name": "n" - } - ] - }, - "title": "core_multi_shell", - "specType": "parameter-data", - "resources": [ - "core_multi_shell" - ] - }, - { - "name": "core_shell_bicelle_view", - "spec": { - "keys": [ - { - "name": "sld_face" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld_rim" - }, - { - "keys": [ - { - "name": "thick_face_pd" - }, - { - "name": "thick_face_pd_n" - }, - { - "name": "thick_face_pd_nsigma" - }, - { - "name": "thick_face_pd_type" - } - ], - "name": "thick_face" - }, - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "thick_rim_pd" - }, - { - "name": "thick_rim_pd_n" - }, - { - "name": "thick_rim_pd_nsigma" - }, - { - "name": "thick_rim_pd_type" - } - ], - "name": "thick_rim" - }, - { - "name": "sld_core" - } - ] - }, - "title": "core_shell_bicelle", - "specType": "parameter-data", - "resources": [ - "core_shell_bicelle" - ] - }, - { - "name": "core_shell_bicelle_elliptical_view", - "spec": { - "keys": [ - { - "name": "sld_face" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld_rim" - }, - { - "keys": [ - { - "name": "thick_face_pd" - }, - { - "name": "thick_face_pd_n" - }, - { - "name": "thick_face_pd_nsigma" - }, - { - "name": "thick_face_pd_type" - } - ], - "name": "thick_face" - }, - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "thick_rim_pd" - }, - { - "name": "thick_rim_pd_n" - }, - { - "name": "thick_rim_pd_nsigma" - }, - { - "name": "thick_rim_pd_type" - } - ], - "name": "thick_rim" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "x_core_pd" - }, - { - "name": "x_core_pd_n" - }, - { - "name": "x_core_pd_nsigma" - }, - { - "name": "x_core_pd_type" - } - ], - "name": "x_core" - } - ] - }, - "title": "core_shell_bicelle_elliptical", - "specType": "parameter-data", - "resources": [ - "core_shell_bicelle_elliptical" - ] - }, - { - "name": "core_shell_bicelle_elliptical_belt_rough_view", - "spec": { - "keys": [ - { - "name": "sld_face" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "name": "sigma" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld_rim" - }, - { - "keys": [ - { - "name": "thick_face_pd" - }, - { - "name": "thick_face_pd_n" - }, - { - "name": "thick_face_pd_nsigma" - }, - { - "name": "thick_face_pd_type" - } - ], - "name": "thick_face" - }, - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "thick_rim_pd" - }, - { - "name": "thick_rim_pd_n" - }, - { - "name": "thick_rim_pd_nsigma" - }, - { - "name": "thick_rim_pd_type" - } - ], - "name": "thick_rim" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "x_core_pd" - }, - { - "name": "x_core_pd_n" - }, - { - "name": "x_core_pd_nsigma" - }, - { - "name": "x_core_pd_type" - } - ], - "name": "x_core" - } - ] - }, - "title": "core_shell_bicelle_elliptical_belt_rough", - "specType": "parameter-data", - "resources": [ - "core_shell_bicelle_elliptical_belt_rough" - ] - }, - { - "name": "core_shell_cylinder_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld_shell" - }, - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "background" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - } - ] - }, - "title": "core_shell_cylinder", - "specType": "parameter-data", - "resources": [ - "core_shell_cylinder" - ] - }, - { - "name": "core_shell_ellipsoid_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "radius_equat_core_pd" - }, - { - "name": "radius_equat_core_pd_n" - }, - { - "name": "radius_equat_core_pd_nsigma" - }, - { - "name": "radius_equat_core_pd_type" - } - ], - "name": "radius_equat_core" - }, - { - "name": "scale" - }, - { - "name": "sld_shell" - }, - { - "keys": [ - { - "name": "thick_shell_pd" - }, - { - "name": "thick_shell_pd_n" - }, - { - "name": "thick_shell_pd_nsigma" - }, - { - "name": "thick_shell_pd_type" - } - ], - "name": "thick_shell" - }, - { - "name": "background" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "x_core_pd" - }, - { - "name": "x_core_pd_n" - }, - { - "name": "x_core_pd_nsigma" - }, - { - "name": "x_core_pd_type" - } - ], - "name": "x_core" - }, - { - "keys": [ - { - "name": "x_polar_shell_pd" - }, - { - "name": "x_polar_shell_pd_n" - }, - { - "name": "x_polar_shell_pd_nsigma" - }, - { - "name": "x_polar_shell_pd_type" - } - ], - "name": "x_polar_shell" - } - ] - }, - "title": "core_shell_ellipsoid", - "specType": "parameter-data", - "resources": [ - "core_shell_ellipsoid" - ] - }, - { - "name": "core_shell_parallelepiped_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "thick_rim_b_pd" - }, - { - "name": "thick_rim_b_pd_n" - }, - { - "name": "thick_rim_b_pd_nsigma" - }, - { - "name": "thick_rim_b_pd_type" - } - ], - "name": "thick_rim_b" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "length_b_pd" - }, - { - "name": "length_b_pd_n" - }, - { - "name": "length_b_pd_nsigma" - }, - { - "name": "length_b_pd_type" - } - ], - "name": "length_b" - }, - { - "keys": [ - { - "name": "length_a_pd" - }, - { - "name": "length_a_pd_n" - }, - { - "name": "length_a_pd_nsigma" - }, - { - "name": "length_a_pd_type" - } - ], - "name": "length_a" - }, - { - "name": "sld_b" - }, - { - "name": "sld_c" - }, - { - "name": "background" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "thick_rim_a_pd" - }, - { - "name": "thick_rim_a_pd_n" - }, - { - "name": "thick_rim_a_pd_nsigma" - }, - { - "name": "thick_rim_a_pd_type" - } - ], - "name": "thick_rim_a" - }, - { - "keys": [ - { - "name": "thick_rim_c_pd" - }, - { - "name": "thick_rim_c_pd_n" - }, - { - "name": "thick_rim_c_pd_nsigma" - }, - { - "name": "thick_rim_c_pd_type" - } - ], - "name": "thick_rim_c" - }, - { - "name": "sld_a" - }, - { - "keys": [ - { - "name": "length_c_pd" - }, - { - "name": "length_c_pd_n" - }, - { - "name": "length_c_pd_nsigma" - }, - { - "name": "length_c_pd_type" - } - ], - "name": "length_c" - } - ] - }, - "title": "core_shell_parallelepiped", - "specType": "parameter-data", - "resources": [ - "core_shell_parallelepiped" - ] - }, - { - "name": "core_shell_sphere_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld_shell" - }, - { - "name": "background" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - } - ] - }, - "title": "core_shell_sphere", - "specType": "parameter-data", - "resources": [ - "core_shell_sphere" - ] - }, - { - "name": "correlation_length_view", - "spec": { - "keys": [ - { - "name": "porod_scale" - }, - { - "name": "background" - }, - { - "name": "lorentz_scale" - }, - { - "name": "lorentz_exp" - }, - { - "name": "scale" - }, - { - "name": "porod_exp" - }, - { - "name": "cor_length" - } - ] - }, - "title": "correlation_length", - "specType": "parameter-data", - "resources": [ - "correlation_length" - ] - }, - { - "name": "cylinder_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - } - ] - }, - "title": "cylinder", - "specType": "parameter-data", - "resources": [ - "cylinder" - ] - }, - { - "name": "dab_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "cor_length" - } - ] - }, - "title": "dab", - "specType": "parameter-data", - "resources": [ - "dab" - ] - }, - { - "name": "ellipsoid_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_polar_pd" - }, - { - "name": "radius_polar_pd_n" - }, - { - "name": "radius_polar_pd_nsigma" - }, - { - "name": "radius_polar_pd_type" - } - ], - "name": "radius_polar" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_equatorial_pd" - }, - { - "name": "radius_equatorial_pd_n" - }, - { - "name": "radius_equatorial_pd_nsigma" - }, - { - "name": "radius_equatorial_pd_type" - } - ], - "name": "radius_equatorial" - } - ] - }, - "title": "ellipsoid", - "specType": "parameter-data", - "resources": [ - "ellipsoid" - ] - }, - { - "name": "elliptical_cylinder_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "sld" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "axis_ratio_pd" - }, - { - "name": "axis_ratio_pd_n" - }, - { - "name": "axis_ratio_pd_nsigma" - }, - { - "name": "axis_ratio_pd_type" - } - ], - "name": "axis_ratio" - }, - { - "keys": [ - { - "name": "radius_minor_pd" - }, - { - "name": "radius_minor_pd_n" - }, - { - "name": "radius_minor_pd_nsigma" - }, - { - "name": "radius_minor_pd_type" - } - ], - "name": "radius_minor" - } - ] - }, - "title": "elliptical_cylinder", - "specType": "parameter-data", - "resources": [ - "elliptical_cylinder" - ] - }, - { - "name": "fcc_paracrystal_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld" - }, - { - "name": "dnn" - }, - { - "name": "background" - }, - { - "name": "d_factor" - } - ] - }, - "title": "fcc_paracrystal", - "specType": "parameter-data", - "resources": [ - "fcc_paracrystal" - ] - }, - { - "name": "flexible_cylinder_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "kuhn_length_pd" - }, - { - "name": "kuhn_length_pd_n" - }, - { - "name": "kuhn_length_pd_nsigma" - }, - { - "name": "kuhn_length_pd_type" - } - ], - "name": "kuhn_length" - } - ] - }, - "title": "flexible_cylinder", - "specType": "parameter-data", - "resources": [ - "flexible_cylinder" - ] - }, - { - "name": "flexible_cylinder_elliptical_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "name": "axis_ratio" - }, - { - "keys": [ - { - "name": "kuhn_length_pd" - }, - { - "name": "kuhn_length_pd_n" - }, - { - "name": "kuhn_length_pd_nsigma" - }, - { - "name": "kuhn_length_pd_type" - } - ], - "name": "kuhn_length" - } - ] - }, - "title": "flexible_cylinder_elliptical", - "specType": "parameter-data", - "resources": [ - "flexible_cylinder_elliptical" - ] - }, - { - "name": "fractal_view", - "spec": { - "keys": [ - { - "name": "volfraction" - }, - { - "name": "fractal_dim" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld_block" - }, - { - "name": "cor_length" - } - ] - }, - "title": "fractal", - "specType": "parameter-data", - "resources": [ - "fractal" - ] - }, - { - "name": "fractal_core_shell_view", - "spec": { - "keys": [ - { - "name": "volfraction" - }, - { - "name": "fractal_dim" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - }, - { - "name": "cor_length" - }, - { - "name": "sld_shell" - } - ] - }, - "title": "fractal_core_shell", - "specType": "parameter-data", - "resources": [ - "fractal_core_shell" - ] - }, - { - "name": "fuzzy_sphere_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "keys": [ - { - "name": "fuzziness_pd" - }, - { - "name": "fuzziness_pd_n" - }, - { - "name": "fuzziness_pd_nsigma" - }, - { - "name": "fuzziness_pd_type" - } - ], - "name": "fuzziness" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - } - ] - }, - "title": "fuzzy_sphere", - "specType": "parameter-data", - "resources": [ - "fuzzy_sphere" - ] - }, - { - "name": "gauss_lorentz_gel_view", - "spec": { - "keys": [ - { - "name": "gauss_scale" - }, - { - "name": "background" - }, - { - "name": "lorentz_scale" - }, - { - "name": "cor_length_dynamic" - }, - { - "name": "scale" - }, - { - "name": "cor_length_static" - } - ] - }, - "title": "gauss_lorentz_gel", - "specType": "parameter-data", - "resources": [ - "gauss_lorentz_gel" - ] - }, - { - "name": "gaussian_peak_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "peak_pos" - }, - { - "name": "sigma" - } - ] - }, - "title": "gaussian_peak", - "specType": "parameter-data", - "resources": [ - "gaussian_peak" - ] - }, - { - "name": "gel_fit_view", - "spec": { - "keys": [ - { - "name": "rg" - }, - { - "name": "background" - }, - { - "name": "lorentz_scale" - }, - { - "name": "guinier_scale" - }, - { - "name": "scale" - }, - { - "name": "cor_length" - }, - { - "name": "fractal_dim" - } - ] - }, - "title": "gel_fit", - "specType": "parameter-data", - "resources": [ - "gel_fit" - ] - }, - { - "name": "guinier_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "rg" - } - ] - }, - "title": "guinier", - "specType": "parameter-data", - "resources": [ - "guinier" - ] - }, - { - "name": "guinier_porod_view", - "spec": { - "keys": [ - { - "name": "rg" - }, - { - "name": "background" - }, - { - "name": "s" - }, - { - "name": "scale" - }, - { - "name": "porod_exp" - } - ] - }, - "title": "guinier_porod", - "specType": "parameter-data", - "resources": [ - "guinier_porod" - ] - }, - { - "name": "hollow_cylinder_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "length_pd" - }, - { - "name": "length_pd_n" - }, - { - "name": "length_pd_nsigma" - }, - { - "name": "length_pd_type" - } - ], - "name": "length" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - }, - { - "name": "scale" - } - ] - }, - "title": "hollow_cylinder", - "specType": "parameter-data", - "resources": [ - "hollow_cylinder" - ] - }, - { - "name": "hollow_rectangular_prism_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "b2a_ratio_pd" - }, - { - "name": "b2a_ratio_pd_n" - }, - { - "name": "b2a_ratio_pd_nsigma" - }, - { - "name": "b2a_ratio_pd_type" - } - ], - "name": "b2a_ratio" - }, - { - "keys": [ - { - "name": "length_a_pd" - }, - { - "name": "length_a_pd_n" - }, - { - "name": "length_a_pd_nsigma" - }, - { - "name": "length_a_pd_type" - } - ], - "name": "length_a" - }, - { - "keys": [ - { - "name": "c2a_ratio_pd" - }, - { - "name": "c2a_ratio_pd_n" - }, - { - "name": "c2a_ratio_pd_nsigma" - }, - { - "name": "c2a_ratio_pd_type" - } - ], - "name": "c2a_ratio" - }, - { - "name": "sld" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - } - ] - }, - "title": "hollow_rectangular_prism", - "specType": "parameter-data", - "resources": [ - "hollow_rectangular_prism" - ] - }, - { - "name": "hollow_rectangular_prism_thin_walls_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "keys": [ - { - "name": "length_a_pd" - }, - { - "name": "length_a_pd_n" - }, - { - "name": "length_a_pd_nsigma" - }, - { - "name": "length_a_pd_type" - } - ], - "name": "length_a" - }, - { - "keys": [ - { - "name": "c2a_ratio_pd" - }, - { - "name": "c2a_ratio_pd_n" - }, - { - "name": "c2a_ratio_pd_nsigma" - }, - { - "name": "c2a_ratio_pd_type" - } - ], - "name": "c2a_ratio" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "b2a_ratio_pd" - }, - { - "name": "b2a_ratio_pd_n" - }, - { - "name": "b2a_ratio_pd_nsigma" - }, - { - "name": "b2a_ratio_pd_type" - } - ], - "name": "b2a_ratio" - } - ] - }, - "title": "hollow_rectangular_prism_thin_walls", - "specType": "parameter-data", - "resources": [ - "hollow_rectangular_prism_thin_walls" - ] - }, - { - "name": "lamellar_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - } - ] - }, - "title": "lamellar", - "specType": "parameter-data", - "resources": [ - "lamellar" - ] - }, - { - "name": "lamellar_hg_view", - "spec": { - "keys": [ - { - "name": "sld_head" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "length_head_pd" - }, - { - "name": "length_head_pd_n" - }, - { - "name": "length_head_pd_nsigma" - }, - { - "name": "length_head_pd_type" - } - ], - "name": "length_head" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "length_tail_pd" - }, - { - "name": "length_tail_pd_n" - }, - { - "name": "length_tail_pd_nsigma" - }, - { - "name": "length_tail_pd_type" - } - ], - "name": "length_tail" - }, - { - "name": "background" - } - ] - }, - "title": "lamellar_hg", - "specType": "parameter-data", - "resources": [ - "lamellar_hg" - ] - }, - { - "name": "lamellar_hg_stack_caille_view", - "spec": { - "keys": [ - { - "name": "Caille_parameter" - }, - { - "name": "sld_head" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "length_head_pd" - }, - { - "name": "length_head_pd_n" - }, - { - "name": "length_head_pd_nsigma" - }, - { - "name": "length_head_pd_type" - } - ], - "name": "length_head" - }, - { - "name": "Nlayers" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "length_tail_pd" - }, - { - "name": "length_tail_pd_n" - }, - { - "name": "length_tail_pd_nsigma" - }, - { - "name": "length_tail_pd_type" - } - ], - "name": "length_tail" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "d_spacing_pd" - }, - { - "name": "d_spacing_pd_n" - }, - { - "name": "d_spacing_pd_nsigma" - }, - { - "name": "d_spacing_pd_type" - } - ], - "name": "d_spacing" - } - ] - }, - "title": "lamellar_hg_stack_caille", - "specType": "parameter-data", - "resources": [ - "lamellar_hg_stack_caille" - ] - }, - { - "name": "lamellar_stack_caille_view", - "spec": { - "keys": [ - { - "name": "Caille_parameter" - }, - { - "name": "sld" - }, - { - "name": "Nlayers" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "d_spacing_pd" - }, - { - "name": "d_spacing_pd_n" - }, - { - "name": "d_spacing_pd_nsigma" - }, - { - "name": "d_spacing_pd_type" - } - ], - "name": "d_spacing" - } - ] - }, - "title": "lamellar_stack_caille", - "specType": "parameter-data", - "resources": [ - "lamellar_stack_caille" - ] - }, - { - "name": "lamellar_stack_paracrystal_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "name": "sigma_d" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "name": "Nlayers" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - }, - { - "name": "d_spacing" - } - ] - }, - "title": "lamellar_stack_paracrystal", - "specType": "parameter-data", - "resources": [ - "lamellar_stack_paracrystal" - ] - }, - { - "name": "line_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "slope" - }, - { - "name": "intercept" - } - ] - }, - "title": "line", - "specType": "parameter-data", - "resources": [ - "line" - ] - }, - { - "name": "linear_pearls_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "name": "num_pearls" - }, - { - "name": "radius" - }, - { - "name": "edge_sep" - } - ] - }, - "title": "linear_pearls", - "specType": "parameter-data", - "resources": [ - "linear_pearls" - ] - }, - { - "name": "lorentz_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "cor_length" - } - ] - }, - "title": "lorentz", - "specType": "parameter-data", - "resources": [ - "lorentz" - ] - }, - { - "name": "mass_fractal_view", - "spec": { - "keys": [ - { - "name": "background" - }, - { - "name": "scale" - }, - { - "name": "radius" - }, - { - "name": "cutoff_length" - }, - { - "name": "fractal_dim_mass" - } - ] - }, - "title": "mass_fractal", - "specType": "parameter-data", - "resources": [ - "mass_fractal" - ] - }, - { - "name": "mass_surface_fractal_view", - "spec": { - "keys": [ - { - "name": "rg_primary" - }, - { - "name": "background" - }, - { - "name": "fractal_dim_surf" - }, - { - "name": "scale" - }, - { - "name": "rg_cluster" - }, - { - "name": "fractal_dim_mass" - } - ] - }, - "title": "mass_surface_fractal", - "specType": "parameter-data", - "resources": [ - "mass_surface_fractal" - ] - }, - { - "name": "mono_gauss_coil_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "rg_pd" - }, - { - "name": "rg_pd_n" - }, - { - "name": "rg_pd_nsigma" - }, - { - "name": "rg_pd_type" - } - ], - "name": "rg" - }, - { - "name": "background" - }, - { - "name": "i_zero" - }, - { - "name": "scale" - } - ] - }, - "title": "mono_gauss_coil", - "specType": "parameter-data", - "resources": [ - "mono_gauss_coil" - ] - }, - { - "name": "multilayer_vesicle_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "thick_shell_pd" - }, - { - "name": "thick_shell_pd_n" - }, - { - "name": "thick_shell_pd_nsigma" - }, - { - "name": "thick_shell_pd_type" - } - ], - "name": "thick_shell" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "n_shells_pd" - }, - { - "name": "n_shells_pd_n" - }, - { - "name": "n_shells_pd_nsigma" - }, - { - "name": "n_shells_pd_type" - } - ], - "name": "n_shells" - }, - { - "name": "volfraction" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "keys": [ - { - "name": "thick_solvent_pd" - }, - { - "name": "thick_solvent_pd_n" - }, - { - "name": "thick_solvent_pd_nsigma" - }, - { - "name": "thick_solvent_pd_type" - } - ], - "name": "thick_solvent" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - } - ] - }, - "title": "multilayer_vesicle", - "specType": "parameter-data", - "resources": [ - "multilayer_vesicle" - ] - }, - { - "name": "onion_view", - "spec": { - "keys": [ - { - "name": "sld_out4" - }, - { - "name": "sld_in9" - }, - { - "name": "n_shells" - }, - { - "name": "A8" - }, - { - "keys": [ - { - "name": "thickness9_pd" - }, - { - "name": "thickness9_pd_n" - }, - { - "name": "thickness9_pd_nsigma" - }, - { - "name": "thickness9_pd_type" - } - ], - "name": "thickness9" - }, - { - "name": "A3" - }, - { - "keys": [ - { - "name": "radius_core_pd" - }, - { - "name": "radius_core_pd_n" - }, - { - "name": "radius_core_pd_nsigma" - }, - { - "name": "radius_core_pd_type" - } - ], - "name": "radius_core" - }, - { - "name": "sld_in3" - }, - { - "name": "A6" - }, - { - "name": "sld_out6" - }, - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "thickness2_pd" - }, - { - "name": "thickness2_pd_n" - }, - { - "name": "thickness2_pd_nsigma" - }, - { - "name": "thickness2_pd_type" - } - ], - "name": "thickness2" - }, - { - "keys": [ - { - "name": "thickness4_pd" - }, - { - "name": "thickness4_pd_n" - }, - { - "name": "thickness4_pd_nsigma" - }, - { - "name": "thickness4_pd_type" - } - ], - "name": "thickness4" - }, - { - "name": "sld_in7" - }, - { - "keys": [ - { - "name": "thickness8_pd" - }, - { - "name": "thickness8_pd_n" - }, - { - "name": "thickness8_pd_nsigma" - }, - { - "name": "thickness8_pd_type" - } - ], - "name": "thickness8" - }, - { - "name": "A10" - }, - { - "name": "sld_in6" - }, - { - "keys": [ - { - "name": "thickness6_pd" - }, - { - "name": "thickness6_pd_n" - }, - { - "name": "thickness6_pd_nsigma" - }, - { - "name": "thickness6_pd_type" - } - ], - "name": "thickness6" - }, - { - "name": "sld_in2" - }, - { - "keys": [ - { - "name": "thickness7_pd" - }, - { - "name": "thickness7_pd_n" - }, - { - "name": "thickness7_pd_nsigma" - }, - { - "name": "thickness7_pd_type" - } - ], - "name": "thickness7" - }, - { - "name": "A7" - }, - { - "name": "sld_in5" - }, - { - "name": "sld_out5" - }, - { - "name": "sld_out10" - }, - { - "name": "sld_out2" - }, - { - "keys": [ - { - "name": "thickness5_pd" - }, - { - "name": "thickness5_pd_n" - }, - { - "name": "thickness5_pd_nsigma" - }, - { - "name": "thickness5_pd_type" - } - ], - "name": "thickness5" - }, - { - "name": "sld_in4" - }, - { - "name": "sld_out9" - }, - { - "keys": [ - { - "name": "thickness1_pd" - }, - { - "name": "thickness1_pd_n" - }, - { - "name": "thickness1_pd_nsigma" - }, - { - "name": "thickness1_pd_type" - } - ], - "name": "thickness1" - }, - { - "name": "A4" - }, - { - "keys": [ - { - "name": "thickness3_pd" - }, - { - "name": "thickness3_pd_n" - }, - { - "name": "thickness3_pd_nsigma" - }, - { - "name": "thickness3_pd_type" - } - ], - "name": "thickness3" - }, - { - "name": "sld_out8" - }, - { - "name": "sld_in8" - }, - { - "name": "sld_out7" - }, - { - "name": "sld_in10" - }, - { - "name": "A2" - }, - { - "name": "A5" - }, - { - "name": "scale" - }, - { - "name": "sld_out1" - }, - { - "keys": [ - { - "name": "thickness10_pd" - }, - { - "name": "thickness10_pd_n" - }, - { - "name": "thickness10_pd_nsigma" - }, - { - "name": "thickness10_pd_type" - } - ], - "name": "thickness10" - }, - { - "name": "sld_in1" - }, - { - "name": "A9" - }, - { - "name": "background" - }, - { - "name": "sld_core" - }, - { - "name": "A1" - }, - { - "name": "sld_out3" - } - ] - }, - "title": "onion", - "specType": "parameter-data", - "resources": [ - "onion" - ] - }, - { - "name": "parallelepiped_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "length_b_pd" - }, - { - "name": "length_b_pd_n" - }, - { - "name": "length_b_pd_nsigma" - }, - { - "name": "length_b_pd_type" - } - ], - "name": "length_b" - }, - { - "keys": [ - { - "name": "length_a_pd" - }, - { - "name": "length_a_pd_n" - }, - { - "name": "length_a_pd_nsigma" - }, - { - "name": "length_a_pd_type" - } - ], - "name": "length_a" - }, - { - "name": "sld" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "length_c_pd" - }, - { - "name": "length_c_pd_n" - }, - { - "name": "length_c_pd_nsigma" - }, - { - "name": "length_c_pd_type" - } - ], - "name": "length_c" - } - ] - }, - "title": "parallelepiped", - "specType": "parameter-data", - "resources": [ - "parallelepiped" - ] - }, - { - "name": "peak_lorentz_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "peak_pos" - }, - { - "name": "peak_hwhm" - } - ] - }, - "title": "peak_lorentz", - "specType": "parameter-data", - "resources": [ - "peak_lorentz" - ] - }, - { - "name": "pearl_necklace_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "keys": [ - { - "name": "edge_sep_pd" - }, - { - "name": "edge_sep_pd_n" - }, - { - "name": "edge_sep_pd_nsigma" - }, - { - "name": "edge_sep_pd_type" - } - ], - "name": "edge_sep" - }, - { - "name": "sld_string" - }, - { - "name": "sld" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "num_pearls_pd" - }, - { - "name": "num_pearls_pd_n" - }, - { - "name": "num_pearls_pd_nsigma" - }, - { - "name": "num_pearls_pd_type" - } - ], - "name": "num_pearls" - }, - { - "keys": [ - { - "name": "thick_string_pd" - }, - { - "name": "thick_string_pd_n" - }, - { - "name": "thick_string_pd_nsigma" - }, - { - "name": "thick_string_pd_type" - } - ], - "name": "thick_string" - } - ] - }, - "title": "pearl_necklace", - "specType": "parameter-data", - "resources": [ - "pearl_necklace" - ] - }, - { - "name": "poly_gauss_coil_view", - "spec": { - "keys": [ - { - "name": "rg" - }, - { - "name": "background" - }, - { - "name": "polydispersity" - }, - { - "name": "scale" - }, - { - "name": "i_zero" - } - ] - }, - "title": "poly_gauss_coil", - "specType": "parameter-data", - "resources": [ - "poly_gauss_coil" - ] - }, - { - "name": "polymer_excl_volume_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "porod_exp" - }, - { - "name": "rg" - } - ] - }, - "title": "polymer_excl_volume", - "specType": "parameter-data", - "resources": [ - "polymer_excl_volume" - ] - }, - { - "name": "polymer_micelle_view", - "spec": { - "keys": [ - { - "name": "rg" - }, - { - "name": "n_aggreg" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "ndensity" - }, - { - "name": "scale" - }, - { - "name": "d_penetration" - }, - { - "name": "v_corona" - }, - { - "name": "sld_corona" - }, - { - "name": "sld_core" - }, - { - "name": "radius_core" - }, - { - "name": "v_core" - } - ] - }, - "title": "polymer_micelle", - "specType": "parameter-data", - "resources": [ - "polymer_micelle" - ] - }, - { - "name": "porod_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - } - ] - }, - "title": "porod", - "specType": "parameter-data", - "resources": [ - "porod" - ] - }, - { - "name": "power_law_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "power" - } - ] - }, - "title": "power_law", - "specType": "parameter-data", - "resources": [ - "power_law" - ] - }, - { - "name": "pringle_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "keys": [ - { - "name": "beta_pd" - }, - { - "name": "beta_pd_n" - }, - { - "name": "beta_pd_nsigma" - }, - { - "name": "beta_pd_type" - } - ], - "name": "beta" - }, - { - "keys": [ - { - "name": "alpha_pd" - }, - { - "name": "alpha_pd_n" - }, - { - "name": "alpha_pd_nsigma" - }, - { - "name": "alpha_pd_type" - } - ], - "name": "alpha" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - }, - { - "name": "scale" - } - ] - }, - "title": "pringle", - "specType": "parameter-data", - "resources": [ - "pringle" - ] - }, - { - "name": "raspberry_view", - "spec": { - "keys": [ - { - "name": "volfraction_sm" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "name": "sld_sm" - }, - { - "name": "surface_fraction" - }, - { - "name": "background" - }, - { - "name": "sld_lg" - }, - { - "name": "volfraction_lg" - }, - { - "keys": [ - { - "name": "radius_lg_pd" - }, - { - "name": "radius_lg_pd_n" - }, - { - "name": "radius_lg_pd_nsigma" - }, - { - "name": "radius_lg_pd_type" - } - ], - "name": "radius_lg" - }, - { - "keys": [ - { - "name": "penetration_pd" - }, - { - "name": "penetration_pd_n" - }, - { - "name": "penetration_pd_nsigma" - }, - { - "name": "penetration_pd_type" - } - ], - "name": "penetration" - }, - { - "keys": [ - { - "name": "radius_sm_pd" - }, - { - "name": "radius_sm_pd_n" - }, - { - "name": "radius_sm_pd_nsigma" - }, - { - "name": "radius_sm_pd_type" - } - ], - "name": "radius_sm" - } - ] - }, - "title": "raspberry", - "specType": "parameter-data", - "resources": [ - "raspberry" - ] - }, - { - "name": "rectangular_prism_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "b2a_ratio_pd" - }, - { - "name": "b2a_ratio_pd_n" - }, - { - "name": "b2a_ratio_pd_nsigma" - }, - { - "name": "b2a_ratio_pd_type" - } - ], - "name": "b2a_ratio" - }, - { - "keys": [ - { - "name": "length_a_pd" - }, - { - "name": "length_a_pd_n" - }, - { - "name": "length_a_pd_nsigma" - }, - { - "name": "length_a_pd_type" - } - ], - "name": "length_a" - }, - { - "keys": [ - { - "name": "c2a_ratio_pd" - }, - { - "name": "c2a_ratio_pd_n" - }, - { - "name": "c2a_ratio_pd_nsigma" - }, - { - "name": "c2a_ratio_pd_type" - } - ], - "name": "c2a_ratio" - }, - { - "name": "sld" - }, - { - "name": "background" - } - ] - }, - "title": "rectangular_prism", - "specType": "parameter-data", - "resources": [ - "rectangular_prism" - ] - }, - { - "name": "rpa_view", - "spec": { - "keys": [ - { - "name": "L1" - }, - { - "name": "Phi2" - }, - { - "name": "N1" - }, - { - "name": "K23" - }, - { - "name": "b4" - }, - { - "name": "K13" - }, - { - "name": "v4" - }, - { - "name": "b1" - }, - { - "name": "background" - }, - { - "name": "Phi1" - }, - { - "name": "K34" - }, - { - "name": "L3" - }, - { - "name": "scale" - }, - { - "name": "b3" - }, - { - "name": "K12" - }, - { - "name": "N3" - }, - { - "name": "L4" - }, - { - "name": "N4" - }, - { - "name": "K14" - }, - { - "name": "v1" - }, - { - "name": "L2" - }, - { - "name": "v3" - }, - { - "name": "N2" - }, - { - "name": "K24" - }, - { - "name": "Phi3" - }, - { - "name": "case_num" - }, - { - "name": "Phi4" - }, - { - "name": "v2" - }, - { - "name": "b2" - } - ] - }, - "title": "rpa", - "specType": "parameter-data", - "resources": [ - "rpa" - ] - }, - { - "name": "sc_paracrystal_view", - "spec": { - "keys": [ - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "sld" - }, - { - "name": "dnn" - }, - { - "name": "background" - }, - { - "name": "d_factor" - } - ] - }, - "title": "sc_paracrystal", - "specType": "parameter-data", - "resources": [ - "sc_paracrystal" - ] - }, - { - "name": "sphere_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - } - ] - }, - "title": "sphere", - "specType": "parameter-data", - "resources": [ - "sphere" - ] - }, - { - "name": "spherical_sld_view", - "spec": { - "keys": [ - { - "name": "sld9" - }, - { - "name": "nu10" - }, - { - "name": "shape1" - }, - { - "name": "sld7" - }, - { - "keys": [ - { - "name": "interface5_pd" - }, - { - "name": "interface5_pd_n" - }, - { - "name": "interface5_pd_nsigma" - }, - { - "name": "interface5_pd_type" - } - ], - "name": "interface5" - }, - { - "name": "shape5" - }, - { - "name": "nu7" - }, - { - "keys": [ - { - "name": "interface8_pd" - }, - { - "name": "interface8_pd_n" - }, - { - "name": "interface8_pd_nsigma" - }, - { - "name": "interface8_pd_type" - } - ], - "name": "interface8" - }, - { - "name": "n_shells" - }, - { - "name": "sld8" - }, - { - "keys": [ - { - "name": "thickness9_pd" - }, - { - "name": "thickness9_pd_n" - }, - { - "name": "thickness9_pd_nsigma" - }, - { - "name": "thickness9_pd_type" - } - ], - "name": "thickness9" - }, - { - "keys": [ - { - "name": "interface7_pd" - }, - { - "name": "interface7_pd_n" - }, - { - "name": "interface7_pd_nsigma" - }, - { - "name": "interface7_pd_type" - } - ], - "name": "interface7" - }, - { - "keys": [ - { - "name": "interface4_pd" - }, - { - "name": "interface4_pd_n" - }, - { - "name": "interface4_pd_nsigma" - }, - { - "name": "interface4_pd_type" - } - ], - "name": "interface4" - }, - { - "name": "sld3" - }, - { - "name": "nu6" - }, - { - "keys": [ - { - "name": "interface10_pd" - }, - { - "name": "interface10_pd_n" - }, - { - "name": "interface10_pd_nsigma" - }, - { - "name": "interface10_pd_type" - } - ], - "name": "interface10" - }, - { - "keys": [ - { - "name": "interface1_pd" - }, - { - "name": "interface1_pd_n" - }, - { - "name": "interface1_pd_nsigma" - }, - { - "name": "interface1_pd_type" - } - ], - "name": "interface1" - }, - { - "name": "shape3" - }, - { - "name": "sld_solvent" - }, - { - "name": "nu4" - }, - { - "name": "nu9" - }, - { - "keys": [ - { - "name": "thickness2_pd" - }, - { - "name": "thickness2_pd_n" - }, - { - "name": "thickness2_pd_nsigma" - }, - { - "name": "thickness2_pd_type" - } - ], - "name": "thickness2" - }, - { - "keys": [ - { - "name": "thickness4_pd" - }, - { - "name": "thickness4_pd_n" - }, - { - "name": "thickness4_pd_nsigma" - }, - { - "name": "thickness4_pd_type" - } - ], - "name": "thickness4" - }, - { - "name": "sld1" - }, - { - "keys": [ - { - "name": "thickness8_pd" - }, - { - "name": "thickness8_pd_n" - }, - { - "name": "thickness8_pd_nsigma" - }, - { - "name": "thickness8_pd_type" - } - ], - "name": "thickness8" - }, - { - "name": "sld5" - }, - { - "name": "shape7" - }, - { - "keys": [ - { - "name": "interface3_pd" - }, - { - "name": "interface3_pd_n" - }, - { - "name": "interface3_pd_nsigma" - }, - { - "name": "interface3_pd_type" - } - ], - "name": "interface3" - }, - { - "keys": [ - { - "name": "thickness6_pd" - }, - { - "name": "thickness6_pd_n" - }, - { - "name": "thickness6_pd_nsigma" - }, - { - "name": "thickness6_pd_type" - } - ], - "name": "thickness6" - }, - { - "name": "shape8" - }, - { - "keys": [ - { - "name": "interface9_pd" - }, - { - "name": "interface9_pd_n" - }, - { - "name": "interface9_pd_nsigma" - }, - { - "name": "interface9_pd_type" - } - ], - "name": "interface9" - }, - { - "name": "n_steps" - }, - { - "name": "sld4" - }, - { - "name": "nu8" - }, - { - "keys": [ - { - "name": "thickness7_pd" - }, - { - "name": "thickness7_pd_n" - }, - { - "name": "thickness7_pd_nsigma" - }, - { - "name": "thickness7_pd_type" - } - ], - "name": "thickness7" - }, - { - "name": "nu2" - }, - { - "keys": [ - { - "name": "thickness5_pd" - }, - { - "name": "thickness5_pd_n" - }, - { - "name": "thickness5_pd_nsigma" - }, - { - "name": "thickness5_pd_type" - } - ], - "name": "thickness5" - }, - { - "name": "nu1" - }, - { - "name": "shape9" - }, - { - "keys": [ - { - "name": "thickness1_pd" - }, - { - "name": "thickness1_pd_n" - }, - { - "name": "thickness1_pd_nsigma" - }, - { - "name": "thickness1_pd_type" - } - ], - "name": "thickness1" - }, - { - "name": "sld10" - }, - { - "name": "sld2" - }, - { - "name": "shape6" - }, - { - "keys": [ - { - "name": "thickness3_pd" - }, - { - "name": "thickness3_pd_n" - }, - { - "name": "thickness3_pd_nsigma" - }, - { - "name": "thickness3_pd_type" - } - ], - "name": "thickness3" - }, - { - "name": "sld6" - }, - { - "name": "nu5" - }, - { - "name": "nu3" - }, - { - "name": "scale" - }, - { - "name": "shape2" - }, - { - "keys": [ - { - "name": "thickness10_pd" - }, - { - "name": "thickness10_pd_n" - }, - { - "name": "thickness10_pd_nsigma" - }, - { - "name": "thickness10_pd_type" - } - ], - "name": "thickness10" - }, - { - "name": "shape4" - }, - { - "name": "background" - }, - { - "name": "shape10" - }, - { - "keys": [ - { - "name": "interface6_pd" - }, - { - "name": "interface6_pd_n" - }, - { - "name": "interface6_pd_nsigma" - }, - { - "name": "interface6_pd_type" - } - ], - "name": "interface6" - }, - { - "keys": [ - { - "name": "interface2_pd" - }, - { - "name": "interface2_pd_n" - }, - { - "name": "interface2_pd_nsigma" - }, - { - "name": "interface2_pd_type" - } - ], - "name": "interface2" - } - ] - }, - "title": "spherical_sld", - "specType": "parameter-data", - "resources": [ - "spherical_sld" - ] - }, - { - "name": "spinodal_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "gamma" - }, - { - "name": "q_0" - } - ] - }, - "title": "spinodal", - "specType": "parameter-data", - "resources": [ - "spinodal" - ] - }, - { - "name": "stacked_disks_view", - "spec": { - "keys": [ - { - "name": "sld_layer" - }, - { - "name": "sigma_d" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "keys": [ - { - "name": "thick_core_pd" - }, - { - "name": "thick_core_pd_n" - }, - { - "name": "thick_core_pd_nsigma" - }, - { - "name": "thick_core_pd_type" - } - ], - "name": "thick_core" - }, - { - "name": "background" - }, - { - "keys": [ - { - "name": "n_stacking_pd" - }, - { - "name": "n_stacking_pd_n" - }, - { - "name": "n_stacking_pd_nsigma" - }, - { - "name": "n_stacking_pd_type" - } - ], - "name": "n_stacking" - }, - { - "name": "sld_core" - }, - { - "keys": [ - { - "name": "thick_layer_pd" - }, - { - "name": "thick_layer_pd_n" - }, - { - "name": "thick_layer_pd_nsigma" - }, - { - "name": "thick_layer_pd_type" - } - ], - "name": "thick_layer" - } - ] - }, - "title": "stacked_disks", - "specType": "parameter-data", - "resources": [ - "stacked_disks" - ] - }, - { - "name": "star_polymer_view", - "spec": { - "keys": [ - { - "name": "scale" - }, - { - "name": "background" - }, - { - "name": "arms" - }, - { - "name": "rg_squared" - } - ] - }, - "title": "star_polymer", - "specType": "parameter-data", - "resources": [ - "star_polymer" - ] - }, - { - "name": "surface_fractal_view", - "spec": { - "keys": [ - { - "name": "background" - }, - { - "name": "fractal_dim_surf" - }, - { - "name": "scale" - }, - { - "name": "radius" - }, - { - "name": "cutoff_length" - } - ] - }, - "title": "surface_fractal", - "specType": "parameter-data", - "resources": [ - "surface_fractal" - ] - }, - { - "name": "teubner_strey_view", - "spec": { - "keys": [ - { - "name": "background" - }, - { - "name": "xi" - }, - { - "name": "scale" - }, - { - "name": "sld_a" - }, - { - "name": "sld_b" - }, - { - "name": "d" - }, - { - "name": "volfraction_a" - } - ] - }, - "title": "teubner_strey", - "specType": "parameter-data", - "resources": [ - "teubner_strey" - ] - }, - { - "name": "triaxial_ellipsoid_view", - "spec": { - "keys": [ - { - "keys": [ - { - "name": "radius_polar_pd" - }, - { - "name": "radius_polar_pd_n" - }, - { - "name": "radius_polar_pd_nsigma" - }, - { - "name": "radius_polar_pd_type" - } - ], - "name": "radius_polar" - }, - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "radius_equat_major_pd" - }, - { - "name": "radius_equat_major_pd_n" - }, - { - "name": "radius_equat_major_pd_nsigma" - }, - { - "name": "radius_equat_major_pd_type" - } - ], - "name": "radius_equat_major" - }, - { - "name": "scale" - }, - { - "name": "sld" - }, - { - "keys": [ - { - "name": "radius_equat_minor_pd" - }, - { - "name": "radius_equat_minor_pd_n" - }, - { - "name": "radius_equat_minor_pd_nsigma" - }, - { - "name": "radius_equat_minor_pd_type" - } - ], - "name": "radius_equat_minor" - }, - { - "name": "background" - } - ] - }, - "title": "triaxial_ellipsoid", - "specType": "parameter-data", - "resources": [ - "triaxial_ellipsoid" - ] - }, - { - "name": "two_lorentzian_view", - "spec": { - "keys": [ - { - "name": "lorentz_length_1" - }, - { - "name": "lorentz_scale_1" - }, - { - "name": "lorentz_length_2" - }, - { - "name": "lorentz_scale_2" - }, - { - "name": "background" - }, - { - "name": "lorentz_exp_1" - }, - { - "name": "lorentz_exp_2" - }, - { - "name": "scale" - } - ] - }, - "title": "two_lorentzian", - "specType": "parameter-data", - "resources": [ - "two_lorentzian" - ] - }, - { - "name": "two_power_law_view", - "spec": { - "keys": [ - { - "name": "background" - }, - { - "name": "power_1" - }, - { - "name": "scale" - }, - { - "name": "coefficent_1" - }, - { - "name": "power_2" - }, - { - "name": "crossover" - } - ] - }, - "title": "two_power_law", - "specType": "parameter-data", - "resources": [ - "two_power_law" - ] - }, - { - "name": "unified_power_Rg_view", - "spec": { - "keys": [ - { - "name": "power3" - }, - { - "name": "B1" - }, - { - "name": "B2" - }, - { - "name": "rg2" - }, - { - "name": "background" - }, - { - "name": "G1" - }, - { - "name": "rg4" - }, - { - "name": "B3" - }, - { - "name": "scale" - }, - { - "name": "G4" - }, - { - "name": "B4" - }, - { - "name": "power4" - }, - { - "name": "rg6" - }, - { - "name": "power6" - }, - { - "name": "G2" - }, - { - "name": "level" - }, - { - "name": "rg1" - }, - { - "name": "B5" - }, - { - "name": "power5" - }, - { - "name": "G6" - }, - { - "name": "power2" - }, - { - "name": "G3" - }, - { - "name": "G5" - }, - { - "name": "power1" - }, - { - "name": "rg3" - }, - { - "name": "rg5" - }, - { - "name": "B6" - } - ] - }, - "title": "unified_power_Rg", - "specType": "parameter-data", - "resources": [ - "unified_power_Rg" - ] - }, - { - "name": "vesicle_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "name": "volfraction" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "keys": [ - { - "name": "thickness_pd" - }, - { - "name": "thickness_pd_n" - }, - { - "name": "thickness_pd_nsigma" - }, - { - "name": "thickness_pd_type" - } - ], - "name": "thickness" - }, - { - "name": "scale" - } - ] - }, - "title": "vesicle", - "specType": "parameter-data", - "resources": [ - "vesicle" - ] - } - ] - }, - { - "name": "sf_params", - "title": "Structure factor parameters", - "description": "Structure factor parameters", - "type": "resource", - "resource": "sas_sf_params", - "resourceScaffolds": [ - { - "data": { - "volfraction": { - "vary": false, - "value": 0.2, - "lowerBound": 0, - "upperBound": 0.74 - }, - "radius_effective": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "hardsphere", - "format": "json", - "schema": { - "keys": [ - { - "name": "radius_effective", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "charge": { - "vary": true, - "value": 19, - "lowerBound": 0.000001, - "upperBound": 200 - }, - "temperature": { - "vary": false, - "value": 298, - "lowerBound": 0, - "upperBound": 450 - }, - "volfraction": { - "vary": true, - "value": 0.18, - "lowerBound": 0, - "upperBound": 0.74 - }, - "dielectconst": { - "vary": false, - "value": 78.39, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_effective": { - "vary": false, - "value": 20.75, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "concentration_salt": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "hayter_msa", - "format": "json", - "schema": { - "keys": [ - { - "name": "concentration_salt", - "unit": "M", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "temperature", - "unit": "K", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "charge", - "unit": "e", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "dielectconst", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_effective", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "welldepth": { - "vary": false, - "value": 1.5, - "lowerBound": 0, - "upperBound": 1.5 - }, - "wellwidth": { - "vary": false, - "value": 1.2, - "lowerBound": 1, - "upperBound": "Infinity" - }, - "volfraction": { - "vary": false, - "value": 0.04, - "lowerBound": 0, - "upperBound": 0.08 - }, - "radius_effective": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "squarewell", - "format": "json", - "schema": { - "keys": [ - { - "name": "wellwidth", - "unit": "diameters", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "welldepth", - "unit": "kT", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_effective", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "perturb": { - "vary": false, - "value": 0.05, - "lowerBound": 0.01, - "upperBound": 0.1 - }, - "stickiness": { - "vary": false, - "value": 0.2, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "volfraction": { - "vary": false, - "value": 0.2, - "lowerBound": 0, - "upperBound": 0.74 - }, - "radius_effective": { - "vary": false, - "value": 50, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "stickyhardsphere", - "format": "json", - "schema": { - "keys": [ - { - "name": "perturb", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_effective", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "stickiness", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - } - ], - "viewScaffolds": [ - { - "name": "hardsphere_view", - "spec": { - "keys": [ - { - "name": "radius_effective" - }, - { - "name": "volfraction" - } - ] - }, - "title": "hardsphere", - "specType": "parameter-data", - "resources": [ - "hardsphere" - ] - }, - { - "name": "hayter_msa_view", - "spec": { - "keys": [ - { - "name": "concentration_salt" - }, - { - "name": "temperature" - }, - { - "name": "volfraction" - }, - { - "name": "charge" - }, - { - "name": "dielectconst" - }, - { - "name": "radius_effective" - } - ] - }, - "title": "hayter_msa", - "specType": "parameter-data", - "resources": [ - "hayter_msa" - ] - }, - { - "name": "squarewell_view", - "spec": { - "keys": [ - { - "name": "wellwidth" - }, - { - "name": "welldepth" - }, - { - "name": "radius_effective" - }, - { - "name": "volfraction" - } - ] - }, - "title": "squarewell", - "specType": "parameter-data", - "resources": [ - "squarewell" - ] - }, - { - "name": "stickyhardsphere_view", - "spec": { - "keys": [ - { - "name": "perturb" - }, - { - "name": "radius_effective" - }, - { - "name": "stickiness" - }, - { - "name": "volfraction" - } - ] - }, - "title": "stickyhardsphere", - "specType": "parameter-data", - "resources": [ - "stickyhardsphere" - ] - } - ] - }, - { - "name": "options", - "title": "Options", - "description": "Options", - "type": "resource", - "resource": "sas_options" - } - ], - "outputs": [ - { - "name": "result_data", - "title": "Data", - "description": "Input data", - "type": "resource", - "resource": "sas_result_data" - }, - { - "name": "result_fit", - "title": "Fit curve", - "description": "Fit curve", - "type": "resource", - "resource": "sas_result_fit" - }, - { - "name": "result_params", - "title": "Fitted parameters", - "description": "Fitted parameters", - "type": "resource", - "resource": "sas_result_params" - }, - { - "name": "result_sf_params", - "title": "Fitted parameters", - "description": "Fitted parameters", - "type": "resource", - "resource": "sas_result_sf_params" - } - ] - } - ], - "resources": [ - { - "name": "sas_data", - "format": "file", - "data": "" - }, - { - "data": { - "sld": { - "vary": false, - "value": 3.4, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "scale": { - "vary": false, - "value": 1, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius": { - "vary": true, - "value": 150, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "radius_pd": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": 1 - }, - "background": { - "vary": true, - "value": 0.001, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_n": { - "value": 35 - }, - "sld_solvent": { - "vary": false, - "value": -0.56, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_pd_type": { - "value": "lognormal" - }, - "radius_pd_nsigma": { - "value": 3 - } - }, - "name": "sas_params", - "format": "json", - "schema": { - "keys": [ - { - "name": "sld", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "background", - "unit": "1/cm", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "sld_solvent", - "unit": "1e-6/Ang^2", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "scale", - "unit": "", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ], - "relatedKeys": [ - "radius_pd", - "radius_pd_n", - "radius_pd_nsigma", - "radius_pd_type" - ] - }, - { - "name": "radius_pd", - "unit": "", - "title": "Width", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "title": "Upper bound" - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity width of parameter:radius" - }, - { - "name": "radius_pd_n", - "title": "N points", - "fields": [ - { - "name": "value", - "type": "integer", - "title": "Value", - "constraints": { - "min": 0 - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Number of points" - }, - { - "name": "radius_pd_nsigma", - "title": "N sigmas", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - } - ], - "groups": [ - "polydispersity" - ] - }, - { - "name": "radius_pd_type", - "title": "Type", - "fields": [ - { - "name": "value", - "type": "string", - "title": "Value", - "constraints": { - "enum": [ - "rectangle", - "uniform", - "array", - "lognormal", - "gaussian", - "schulz", - "boltzmann" - ] - } - } - ], - "groups": [ - "polydispersity" - ], - "description": "Polydispersity type" - } - ], - "fields": [], - "groups": [ - { - "name": "polydispersity", - "title": "Polydispersity" - } - ] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "charge": { - "vary": true, - "value": 19, - "lowerBound": 0.000001, - "upperBound": 200 - }, - "temperature": { - "vary": false, - "value": 298, - "lowerBound": 0, - "upperBound": 450 - }, - "volfraction": { - "vary": true, - "value": 0.18, - "lowerBound": 0, - "upperBound": 0.74 - }, - "dielectconst": { - "vary": false, - "value": 78.39, - "lowerBound": "-Infinity", - "upperBound": "Infinity" - }, - "radius_effective": { - "vary": false, - "value": 20.75, - "lowerBound": 0, - "upperBound": "Infinity" - }, - "concentration_salt": { - "vary": false, - "value": 0, - "lowerBound": 0, - "upperBound": "Infinity" - } - }, - "name": "sas_sf_params", - "format": "json", - "schema": { - "keys": [ - { - "name": "concentration_salt", - "unit": "M", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "temperature", - "unit": "K", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "volfraction", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "charge", - "unit": "e", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "dielectconst", - "unit": "None", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - }, - { - "name": "radius_effective", - "unit": "Ang", - "fields": [ - { - "name": "value", - "type": "number", - "title": "Value" - }, - { - "name": "vary", - "type": "boolean", - "title": "Vary" - }, - { - "name": "lowerBound", - "type": "number", - "group": "constraints", - "title": "Lower bound" - }, - { - "name": "upperBound", - "type": "number", - "group": "constraints", - "title": "Upper bound" - } - ] - } - ], - "fields": [] - }, - "scheme": "memory", - "profile": "data-resource", - "tmpprofile": "parameter-data-resource" - }, - { - "data": { - "model": { - "name": "sphere", - "title": "sphere", - "category": "shape:sphere", - "structureFactor": true - }, - "method": { - "name": "LevenbergMarquardtFit", - "title": "Levenberg-Marquardt" - }, - "structureFactor": { - "name": "hayter_msa", - "title": "hayter_msa" - } - }, - "name": "sas_options", - "format": "json", - "schema": { - "fields": [ - { - "name": "method", - "type": "object", - "title": "Method", - "constraints": { - "enum": [ - { - "name": "LevenbergMarquardtFit", - "title": "Levenberg-Marquardt" - }, - { - "name": "BFGSFit", - "title": "BFGS" - }, - { - "name": "SimplexFit", - "title": "Simplex" - } - ] - }, - "description": "The optimisation method to use for fitting", - "objectFields": [ - { - "name": "title", - "type": "string" - }, - { - "name": "name", - "type": "string" - } - ] - }, - { - "name": "model", - "type": "object", - "title": "Model", - "constraints": { - "enum": [ - { - "name": "adsorbed_layer", - "title": "adsorbed_layer", - "category": "shape:sphere", - "structureFactor": false - }, - { - "name": "barbell", - "title": "barbell", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "bcc_paracrystal", - "title": "bcc_paracrystal", - "category": "shape:paracrystal", - "structureFactor": false - }, - { - "name": "be_polyelectrolyte", - "title": "be_polyelectrolyte", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "binary_hard_sphere", - "title": "binary_hard_sphere", - "category": "shape:sphere", - "structureFactor": false - }, - { - "name": "broad_peak", - "title": "broad_peak", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "capped_cylinder", - "title": "capped_cylinder", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "core_multi_shell", - "title": "core_multi_shell", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "core_shell_bicelle", - "title": "core_shell_bicelle", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "core_shell_bicelle_elliptical", - "title": "core_shell_bicelle_elliptical", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "core_shell_bicelle_elliptical_belt_rough", - "title": "core_shell_bicelle_elliptical_belt_rough", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "core_shell_cylinder", - "title": "core_shell_cylinder", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "core_shell_ellipsoid", - "title": "core_shell_ellipsoid", - "category": "shape:ellipsoid", - "structureFactor": true - }, - { - "name": "core_shell_parallelepiped", - "title": "core_shell_parallelepiped", - "category": "shape:parallelepiped", - "structureFactor": true - }, - { - "name": "core_shell_sphere", - "title": "core_shell_sphere", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "correlation_length", - "title": "correlation_length", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "cylinder", - "title": "cylinder", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "dab", - "title": "dab", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "ellipsoid", - "title": "ellipsoid", - "category": "shape:ellipsoid", - "structureFactor": true - }, - { - "name": "elliptical_cylinder", - "title": "elliptical_cylinder", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "fcc_paracrystal", - "title": "fcc_paracrystal", - "category": "shape:paracrystal", - "structureFactor": false - }, - { - "name": "flexible_cylinder", - "title": "flexible_cylinder", - "category": "shape:cylinder", - "structureFactor": false - }, - { - "name": "flexible_cylinder_elliptical", - "title": "flexible_cylinder_elliptical", - "category": "shape:cylinder", - "structureFactor": false - }, - { - "name": "fractal", - "title": "fractal", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "fractal_core_shell", - "title": "fractal_core_shell", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "fuzzy_sphere", - "title": "fuzzy_sphere", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "gauss_lorentz_gel", - "title": "gauss_lorentz_gel", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "gaussian_peak", - "title": "gaussian_peak", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "gel_fit", - "title": "gel_fit", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "guinier", - "title": "guinier", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "guinier_porod", - "title": "guinier_porod", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "hollow_cylinder", - "title": "hollow_cylinder", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "hollow_rectangular_prism", - "title": "hollow_rectangular_prism", - "category": "shape:parallelepiped", - "structureFactor": true - }, - { - "name": "hollow_rectangular_prism_thin_walls", - "title": "hollow_rectangular_prism_thin_walls", - "category": "shape:parallelepiped", - "structureFactor": true - }, - { - "name": "lamellar", - "title": "lamellar", - "category": "shape:lamellae", - "structureFactor": false - }, - { - "name": "lamellar_hg", - "title": "lamellar_hg", - "category": "shape:lamellae", - "structureFactor": false - }, - { - "name": "lamellar_hg_stack_caille", - "title": "lamellar_hg_stack_caille", - "category": "shape:lamellae", - "structureFactor": false - }, - { - "name": "lamellar_stack_caille", - "title": "lamellar_stack_caille", - "category": "shape:lamellae", - "structureFactor": false - }, - { - "name": "lamellar_stack_paracrystal", - "title": "lamellar_stack_paracrystal", - "category": "shape:lamellae", - "structureFactor": false - }, - { - "name": "line", - "title": "line", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "linear_pearls", - "title": "linear_pearls", - "category": "shape:sphere", - "structureFactor": false - }, - { - "name": "lorentz", - "title": "lorentz", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "mass_fractal", - "title": "mass_fractal", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "mass_surface_fractal", - "title": "mass_surface_fractal", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "mono_gauss_coil", - "title": "mono_gauss_coil", - "category": "shape-independent", - "structureFactor": true - }, - { - "name": "multilayer_vesicle", - "title": "multilayer_vesicle", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "onion", - "title": "onion", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "parallelepiped", - "title": "parallelepiped", - "category": "shape:parallelepiped", - "structureFactor": true - }, - { - "name": "peak_lorentz", - "title": "peak_lorentz", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "pearl_necklace", - "title": "pearl_necklace", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "poly_gauss_coil", - "title": "poly_gauss_coil", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "polymer_excl_volume", - "title": "polymer_excl_volume", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "polymer_micelle", - "title": "polymer_micelle", - "category": "shape:sphere", - "structureFactor": false - }, - { - "name": "porod", - "title": "porod", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "power_law", - "title": "power_law", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "pringle", - "title": "pringle", - "category": "shape:cylinder", - "structureFactor": true - }, - { - "name": "raspberry", - "title": "raspberry", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "rectangular_prism", - "title": "rectangular_prism", - "category": "shape:parallelepiped", - "structureFactor": true - }, - { - "name": "rpa", - "title": "rpa", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "sc_paracrystal", - "title": "sc_paracrystal", - "category": "shape:paracrystal", - "structureFactor": false - }, - { - "name": "sphere", - "title": "sphere", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "spherical_sld", - "title": "spherical_sld", - "category": "shape:sphere", - "structureFactor": true - }, - { - "name": "spinodal", - "title": "spinodal", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "stacked_disks", - "title": "stacked_disks", - "category": "shape:cylinder", - "structureFactor": false - }, - { - "name": "star_polymer", - "title": "star_polymer", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "surface_fractal", - "title": "surface_fractal", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "teubner_strey", - "title": "teubner_strey", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "triaxial_ellipsoid", - "title": "triaxial_ellipsoid", - "category": "shape:ellipsoid", - "structureFactor": true - }, - { - "name": "two_lorentzian", - "title": "two_lorentzian", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "two_power_law", - "title": "two_power_law", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "unified_power_Rg", - "title": "unified_power_Rg", - "category": "shape-independent", - "structureFactor": false - }, - { - "name": "vesicle", - "title": "vesicle", - "category": "shape:sphere", - "structureFactor": true - } - ] - }, - "description": "Model to use for fitting", - "objectFields": [ - { - "name": "title", - "type": "string" - }, - { - "name": "name", - "type": "string" - }, - { - "name": "category", - "type": "string", - "description": "Model category" - }, - { - "name": "structureFactor", - "type": "string", - "description": "Whether structure factor fitting is available for this model" - } - ] - }, - { - "name": "structureFactor", - "type": "object", - "title": "Structure factor", - "constraints": { - "enum": [ - { - "name": "hardsphere", - "title": "hardsphere" - }, - { - "name": "hayter_msa", - "title": "hayter_msa" - }, - { - "name": "squarewell", - "title": "squarewell" - }, - { - "name": "stickyhardsphere", - "title": "stickyhardsphere" - }, - { - "name": "", - "title": "None" - } - ] - }, - "description": "Structure factor model to fit", - "objectFields": [ - { - "name": "title", - "type": "string" - }, - { - "name": "name", - "type": "string" - } - ] - } - ] - }, - "profile": "data-resource", - "tmpprofile": "options-data-resource" - }, - { - "name": "sas_result_data" - }, - { - "name": "sas_result_fit" - }, - { - "name": "sas_result_params" - }, - { - "name": "sas_result_sf_params" - } - ], - "views": [ - { - "name": "sas_params_view", - "spec": { - "keys": [ - { - "name": "sld" - }, - { - "name": "background" - }, - { - "name": "sld_solvent" - }, - { - "name": "scale" - }, - { - "keys": [ - { - "name": "radius_pd" - }, - { - "name": "radius_pd_n" - }, - { - "name": "radius_pd_nsigma" - }, - { - "name": "radius_pd_type" - } - ], - "name": "radius" - } - ] - }, - "title": "sphere", - "specType": "parameter-data", - "resources": [ - "sas_params" - ] - }, - { - "name": "sas_sf_params_view", - "spec": { - "keys": [ - { - "name": "concentration_salt" - }, - { - "name": "temperature" - }, - { - "name": "volfraction" - }, - { - "name": "charge" - }, - { - "name": "dielectconst" - }, - { - "name": "radius_effective" - } - ] - }, - "title": "hayter_msa", - "specType": "parameter-data", - "resources": [ - "sas_sf_params" - ] - }, - { - "name": "sas_options_view", - "spec": { - "fields": [ - { - "name": "method" - }, - { - "name": "model", - "behaviours": [ - { - "name": "changeModel", - "do": [ - "replaceResourceWithScaffold('sas', 'params', getResourceFieldValue('sas_options', 'model.name'), 'sas_params');", - "replaceViewWithScaffold('sas', 'params', getResourceFieldValue('sas_options', 'model.name') + '_view', 'sas_params_view');", - "if (getResourceFieldValue('sas_options', 'model.structureFactor')) {", - " setViewFieldValue('sas_options_view', 'structureFactor', 'disabled', false);", - " setViewValue('sas_sf_params_view', 'disabled', false);", - " replaceViewWithScaffold('sas', 'sf_params', getResourceFieldValue('sas_options', 'structureFactor.name') + '_view', 'sas_sf_params_view');", - "} else {", - " setViewFieldValue('sas_options_view', 'structureFactor', 'disabled', true);", - " setViewValue('sas_sf_params_view', 'disabled', true);", - "}" - ] - } - ] - }, - { - "name": "structureFactor", - "behaviours": [ - { - "name": "changeStructureFactor", - "do": [ - "if (getResourceFieldValue('sas_options', 'structureFactor.name')) {", - " setViewValue('sas_sf_params_view', 'disabled', false);", - " replaceResourceWithScaffold('sas', 'sf_params', getResourceFieldValue('sas_options', 'structureFactor.name'), 'sas_sf_params');", - " replaceViewWithScaffold('sas', 'sf_params', getResourceFieldValue('sas_options', 'structureFactor.name') + '_view', 'sas_sf_params_view');", - "} else {", - " setViewValue('sas_sf_params_view', 'disabled', true);", - "}" - ] - } - ] - } - ] - }, - "specType": "options-data", - "resources": [ - "sas_options" - ] - }, - { - "name": "sas_fit_table_view", - "spec": {}, - "specType": "handsontable", - "resources": [ - "sas_result_fit" - ] - }, - { - "name": "sas_fit_graph_view", - "spec": { - "data": [ - { - "name": "sas_result_fit" - }, - { - "name": "sas_result_data", - "transform": [ - { - "as": "errorLower", - "expr": "datum.y - datum.dy", - "type": "formula" - }, - { - "as": "errorUpper", - "expr": "datum.y + datum.dy", - "type": "formula" - }, - { - "as": [ - "yFit", - "residuals" - ], - "key": "x", - "from": "sas_result_fit", - "type": "lookup", - "fields": [ - "x" - ], - "values": [ - "y", - "residuals" - ] - } - ] - }, - { - "name": "highlightedDataPoint", - "source": "sas_result_data", - "transform": [ - { - "expr": "hover && hover.datum.x === datum.x && hover.datum.y === datum.y", - "type": "filter" - } - ] - }, - { - "name": "highlightedFitPoint", - "source": "sas_result_fit", - "transform": [ - { - "expr": "hover && hover.datum.x === datum.x", - "type": "filter" - } - ] - }, - { - "name": "highlightedResidualsPoint", - "source": "sas_result_fit", - "transform": [ - { - "expr": "hover && hover.datum.x === datum.x", - "type": "filter" - } - ] - } - ], - "marks": [ - { - "axes": [ - { - "aria": false, - "grid": true, - "scale": "mainX", - "ticks": true, - "title": "Q (A^-1)", - "domain": false, - "labels": true, - "orient": "bottom", - "zindex": 0, - "gridScale": "mainY", - "maxExtent": 0, - "minExtent": 0, - "tickCount": { - "signal": "ceil(width/200)" - }, - "titlePadding": 20 - }, - { - "aria": false, - "grid": true, - "scale": "mainY", - "ticks": true, - "title": "I (cm^-1)", - "domain": false, - "labels": true, - "orient": "left", - "zindex": 0, - "maxExtent": 0, - "minExtent": 0, - "tickCount": { - "signal": "ceil(mainHeight/100)" - }, - "titlePadding": 40 - } - ], - "name": "mainGroup", - "type": "group", - "marks": [ - { - "from": { - "data": "sas_result_data" - }, - "name": "dataPlot", - "type": "line", - "encode": { - "enter": { - "x": { - "field": "x", - "scale": "mainX" - }, - "y": { - "field": "y", - "scale": "mainY" - }, - "stroke": { - "signal": "dataColor" - } - } - } - }, - { - "from": { - "data": "sas_result_data" - }, - "name": "dataErrorPlot", - "type": "area", - "encode": { - "enter": { - "x": { - "field": "x", - "scale": "mainX" - }, - "y": { - "field": "errorLower", - "scale": "mainY" - }, - "y2": { - "field": "errorUpper", - "scale": "mainY" - }, - "fill": { - "value": "grey" - }, - "fillOpacity": { - "value": 0.3 - }, - "interpolate": { - "value": "linear" - } - } - } - }, - { - "from": { - "data": "sas_result_fit" - }, - "name": "fitPlot", - "type": "line", - "encode": { - "enter": { - "x": { - "field": "x", - "scale": "mainX" - }, - "y": { - "field": "y", - "scale": "mainY" - }, - "stroke": { - "signal": "fitColor" - } - } - } - }, - { - "from": { - "data": "sas_result_data" - }, - "name": "vPoints", - "type": "symbol", - "encode": { - "update": { - "x": { - "field": "x", - "scale": "mainX" - }, - "y": { - "value": 0 - }, - "fill": { - "value": "transparent" - }, - "size": { - "value": 10 - }, - "stroke": { - "value": "transparent" - }, - "strokeWidth": { - "value": 0.5 - } - } - } - }, - { - "from": { - "data": "vPoints" - }, - "name": "vCell", - "type": "path", - "encode": { - "enter": { - "fill": { - "value": "transparent" - }, - "stroke": { - "value": "transparent" - }, - "isVoronoi": { - "value": true - }, - "strokeWidth": { - "value": 0.35 - } - }, - "update": { - "tooltip": { - "signal": "datum.datum" - } - } - }, - "transform": [ - { - "x": "datum.x", - "y": "datum.y", - "size": [ - { - "signal": "width" - }, - { - "signal": "height" - } - ], - "type": "voronoi" - } - ] - }, - { - "from": { - "data": "highlightedDataPoint" - }, - "name": "dataPoint", - "type": "symbol", - "encode": { - "enter": { - "x": { - "field": "x", - "scale": "mainX" - }, - "y": { - "field": "y", - "scale": "mainY" - }, - "fill": { - "signal": "dataColor" - }, - "size": { - "signal": "pointSize" - }, - "fillOpacity": { - "signal": "pointOpacity" - } - } - }, - "interactive": false - }, - { - "from": { - "data": "highlightedFitPoint" - }, - "name": "fitPoint", - "type": "symbol", - "encode": { - "enter": { - "x": { - "field": "x", - "scale": "mainX" - }, - "y": { - "field": "y", - "scale": "mainY" - }, - "fill": { - "signal": "fitColor" - }, - "size": { - "signal": "pointSize" - }, - "fillOpacity": { - "signal": "pointOpacity" - } - } - }, - "interactive": false - }, - { - "name": "yRule", - "type": "rule", - "encode": { - "update": { - "x": { - "scale": "mainX", - "offset": 0.5, - "signal": "xValue" - }, - "y": { - "value": 0 - }, - "y2": { - "signal": "yRuleHeightMain" - }, - "stroke": { - "value": "grey" - }, - "opacity": { - "value": 0.5 - }, - "strokeWidth": { - "value": 1.5 - } - } - }, - "interactive": false - } - ], - "style": "cell", - "encode": { - "update": { - "width": { - "signal": "width" - }, - "height": { - "signal": "mainHeight" - } - } - } - }, - { - "axes": [ - { - "aria": false, - "grid": true, - "scale": "subX", - "ticks": true, - "title": "Residuals", - "domain": false, - "labels": true, - "orient": "bottom", - "zindex": 0, - "gridScale": "subY", - "maxExtent": 0, - "minExtent": 0, - "tickCount": { - "signal": "ceil(width/200)" - }, - "titlePadding": 20 - }, - { - "aria": false, - "grid": true, - "scale": "subY", - "ticks": true, - "title": "I (cm^-1)", - "domain": false, - "labels": true, - "orient": "left", - "zindex": 0, - "maxExtent": 0, - "minExtent": 0, - "tickCount": { - "signal": "ceil(subHeight/100)" - }, - "titlePadding": 40 - } - ], - "name": "subGroup", - "type": "group", - "marks": [ - { - "clip": true, - "from": { - "data": "sas_result_fit" - }, - "name": "residualsPlot", - "type": "line", - "encode": { - "enter": { - "x": { - "field": "x", - "scale": "subX" - }, - "y": { - "field": "residuals", - "scale": "subY" - }, - "stroke": { - "signal": "fitColor" - } - } - } - }, - { - "from": { - "data": "highlightedResidualsPoint" - }, - "name": "residualsPoint", - "type": "symbol", - "encode": { - "enter": { - "x": { - "field": "x", - "scale": "subX" - }, - "y": { - "field": "residuals", - "scale": "subY" - }, - "fill": { - "signal": "fitColor" - }, - "size": { - "signal": "pointSize" - }, - "fillOpacity": { - "signal": "pointOpacity" - } - } - }, - "interactive": false - }, - { - "name": "yRule", - "type": "rule", - "encode": { - "update": { - "x": { - "scale": "subX", - "offset": 0.5, - "signal": "xValue" - }, - "y": { - "value": 0 - }, - "y2": { - "signal": "yRuleHeightSub" - }, - "stroke": { - "value": "grey" - }, - "opacity": { - "value": 0.5 - }, - "strokeWidth": { - "value": 1.5 - } - } - }, - "interactive": false - } - ], - "style": "cell", - "encode": { - "update": { - "width": { - "signal": "width" - }, - "height": { - "signal": "subHeight" - } - } - } - } - ], - "layout": { - "align": "each", - "bounds": "full", - "columns": 1, - "padding": { - "signal": "layoutPadding" - } - }, - "scales": [ - { - "name": "mainX", - "nice": false, - "type": "log", - "zero": false, - "range": [ - 0, - { - "signal": "width" - } - ], - "domain": { - "fields": [ - { - "data": "sas_result_data", - "field": "x" - }, - { - "data": "sas_result_fit", - "field": "x" - } - ] - } - }, - { - "name": "mainY", - "nice": true, - "type": "symlog", - "zero": false, - "range": [ - { - "signal": "mainHeight" - }, - 0 - ], - "round": true, - "domain": { - "fields": [ - { - "data": "sas_result_data", - "field": "y" - }, - { - "data": "sas_result_fit", - "field": "y" - } - ] - } - }, - { - "name": "subX", - "nice": false, - "type": "log", - "zero": false, - "range": [ - 0, - { - "signal": "width" - } - ], - "domain": { - "fields": [ - { - "data": "sas_result_data", - "field": "x" - }, - { - "data": "sas_result_fit", - "field": "x" - } - ] - } - }, - { - "name": "subY", - "nice": true, - "type": "symlog", - "zero": false, - "range": [ - { - "signal": "subHeight" - }, - 0 - ], - "round": true, - "domain": { - "fields": [ - { - "data": "sas_result_fit", - "field": "residuals" - } - ] - } - } - ], - "$schema": "https://vega.github.io/schema/vega/v5.json", - "signals": [ - { - "on": [ - { - "events": "@vCell:mouseover", - "update": "datum" - }, - { - "events": "@vCell:mouseout", - "update": "null" - } - ], - "name": "hover", - "value": null - }, - { - "on": [ - { - "events": "window:resize", - "update": "isFinite(containerSize()[0]) ? containerSize()[0] : 500" - } - ], - "init": "isFinite(containerSize()[0]) ? containerSize()[0] : 500", - "name": "width" - }, - { - "on": [ - { - "events": "window:resize", - "update": "isFinite(containerSize()[1]) ? containerSize()[1] : 500" - } - ], - "init": "isFinite(containerSize()[1]) ? containerSize()[1] : 500", - "name": "height" - }, - { - "on": [ - { - "events": "mousemove", - "update": "invert('mainX', clamp(x(), 0, width))" - } - ], - "name": "xValue", - "value": 0 - }, - { - "on": [ - { - "events": "@vCell:mousemove", - "update": "mainHeight" - }, - { - "events": "@vCell:mouseout", - "update": "null" - } - ], - "name": "yRuleHeightMain", - "value": 0 - }, - { - "on": [ - { - "events": "@vCell:mousemove", - "update": "subHeight" - }, - { - "events": "@vCell:mouseout", - "update": "null" - } - ], - "name": "yRuleHeightSub", - "value": 0 - }, - { - "on": [ - { - "events": { - "type": "resize", - "source": "window" - }, - "update": "pluck(data('data'), 'x')" - } - ], - "name": "dataX", - "value": 0 - }, - { - "on": [ - { - "events": "window:resize", - "update": "height/1.8" - } - ], - "init": "height/1.8", - "name": "mainHeight", - "value": "null" - }, - { - "on": [ - { - "events": "window:resize", - "update": "clamp(height - mainHeight - boxModelOffset, 0, MAX_VALUE)" - } - ], - "init": "clamp(height - mainHeight - boxModelOffset, 0, MAX_VALUE)", - "name": "subHeight", - "value": "null" - }, - { - "name": "layoutPadding", - "value": 20 - }, - { - "init": "layoutPadding * 4 + 15", - "name": "boxModelOffset" - }, - { - "name": "fitColor", - "value": "firebrick" - }, - { - "name": "dataColor", - "value": "steelblue" - }, - { - "on": [ - { - "events": "window:resize", - "update": "height/12" - } - ], - "init": "height/12", - "name": "pointSize" - }, - { - "name": "pointOpacity", - "value": 0.8 - } - ], - "autosize": "fit" - }, - "specType": "vega", - "resources": [ - "sas_result_data", - "sas_result_fit" - ] - } - ] -}; - -export const FIT_DATA: Array> = [ - { - "residuals": 189.80820795116674, - "x": 0.00714, - "y": 594.7156752091166 - }, - { - "residuals": 249.57214796754653, - "x": 0.0074256, - "y": 628.1034648613285 - }, - { - "residuals": 294.68651982023516, - "x": 0.00772262, - "y": 664.9377380458241 - }, - { - "residuals": 356.26090241991335, - "x": 0.00803153, - "y": 704.0209311986553 - }, - { - "residuals": 441.9733665111284, - "x": 0.00835279, - "y": 745.5609303524525 - }, - { - "residuals": 532.8506989226908, - "x": 0.0086869, - "y": 787.8436630053666 - }, - { - "residuals": 619.8284838653958, - "x": 0.00903438, - "y": 833.7939188865907 - }, - { - "residuals": 724.2535431779656, - "x": 0.00939575, - "y": 881.0434283593453 - }, - { - "residuals": 783.969299606668, - "x": 0.00977158, - "y": 929.1405989885193 - }, - { - "residuals": 876.2061724547718, - "x": 0.0101624, - "y": 980.3772408976719 - }, - { - "residuals": 969.2555817956685, - "x": 0.0105689, - "y": 1030.4215667412864 - }, - { - "residuals": 1045.6504342434473, - "x": 0.0109917, - "y": 1079.3556824902878 - }, - { - "residuals": 1134.132148816325, - "x": 0.0114314, - "y": 1126.453775028181 - }, - { - "residuals": 1244.1458376742771, - "x": 0.0118886, - "y": 1167.5684621522319 - }, - { - "residuals": 1285.2309300659629, - "x": 0.0123642, - "y": 1202.112317621233 - }, - { - "residuals": 1330.2794284898273, - "x": 0.0128587, - "y": 1227.7696865785122 - }, - { - "residuals": 1329.1491039832874, - "x": 0.0133731, - "y": 1243.0094275779782 - }, - { - "residuals": 1299.832212356443, - "x": 0.013908, - "y": 1246.1857101358723 - }, - { - "residuals": 1200.4033966652034, - "x": 0.0144643, - "y": 1233.9666897964098 - }, - { - "residuals": 1075.6596622262794, - "x": 0.0150429, - "y": 1206.3907504158715 - }, - { - "residuals": 915.7489003774563, - "x": 0.0156446, - "y": 1165.0768651812634 - }, - { - "residuals": 712.9031792552818, - "x": 0.0162704, - "y": 1105.847156450134 - }, - { - "residuals": 500.9672493617777, - "x": 0.0169212, - "y": 1029.75619833087 - }, - { - "residuals": 282.411677368031, - "x": 0.0175981, - "y": 940.9165765484569 - }, - { - "residuals": 67.8388261557796, - "x": 0.018302, - "y": 841.7114391564263 - }, - { - "residuals": -126.98557043133316, - "x": 0.0190341, - "y": 736.7364242439793 - }, - { - "residuals": -295.17121290559663, - "x": 0.0197954, - "y": 624.8305891347636 - }, - { - "residuals": -423.2796644520683, - "x": 0.0205873, - "y": 517.7287382740686 - }, - { - "residuals": -517.0205489652773, - "x": 0.0214107, - "y": 417.42508393303734 - }, - { - "residuals": -563.5051061228497, - "x": 0.0222672, - "y": 327.71996959657736 - }, - { - "residuals": -575.5285713047549, - "x": 0.0231579, - "y": 250.13900151053926 - }, - { - "residuals": -563.648626359319, - "x": 0.0240842, - "y": 184.8421981090658 - }, - { - "residuals": -529.6028236023687, - "x": 0.0250475, - "y": 132.19872388016105 - }, - { - "residuals": -504.5876842081959, - "x": 0.0260494, - "y": 90.91124383355539 - }, - { - "residuals": -494.53370079448354, - "x": 0.0270914, - "y": 56.234826621458275 - }, - { - "residuals": -491.2347994502949, - "x": 0.0281751, - "y": 34.58145206268919 - }, - { - "residuals": -501.9835912099142, - "x": 0.0293021, - "y": 20.770238179186027 - }, - { - "residuals": -511.8189835406411, - "x": 0.0304742, - "y": 12.505942974822046 - }, - { - "residuals": -496.3396240310357, - "x": 0.0316931, - "y": 10.7252045358092 - }, - { - "residuals": -463.3132955178918, - "x": 0.0329609, - "y": 12.622188153165856 - }, - { - "residuals": -417.46367586524434, - "x": 0.0342793, - "y": 16.836891823389934 - }, - { - "residuals": -362.65119246048465, - "x": 0.0356505, - "y": 21.3498645864527 - }, - { - "residuals": -309.47148852407184, - "x": 0.0370765, - "y": 24.98386593987589 - }, - { - "residuals": -264.1828235619874, - "x": 0.0385595, - "y": 26.409891253395084 - }, - { - "residuals": -228.86391494938047, - "x": 0.0401019, - "y": 25.443067111121852 - }, - { - "residuals": -204.5631552968426, - "x": 0.041706, - "y": 22.31244728454257 - }, - { - "residuals": -198.45778305921576, - "x": 0.0433742, - "y": 17.66628478054633 - }, - { - "residuals": -220.9236126637759, - "x": 0.0451092, - "y": 12.48008994959975 - }, - { - "residuals": -265.73174635750587, - "x": 0.0469136, - "y": 7.699263224961208 - }, - { - "residuals": -329.45828072117115, - "x": 0.0487901, - "y": 3.8645861384283373 - }, - { - "residuals": -369.27027772452607, - "x": 0.0507417, - "y": 1.8611969330584426 - }, - { - "residuals": -370.7152185614437, - "x": 0.0527714, - "y": 1.4196773595821721 - }, - { - "residuals": -323.52636282022627, - "x": 0.0548822, - "y": 2.1101023242948878 - }, - { - "residuals": -249.5239715465852, - "x": 0.0570775, - "y": 3.2444428948983135 - }, - { - "residuals": -175.41302045807973, - "x": 0.0593606, - "y": 4.099096700118251 - }, - { - "residuals": -128.4509373802095, - "x": 0.0617351, - "y": 4.195065775330769 - }, - { - "residuals": -125.75367131776696, - "x": 0.0642045, - "y": 3.4757604737072643 - }, - { - "residuals": -169.4505025996255, - "x": 0.0667726, - "y": 2.2910574956884084 - }, - { - "residuals": -228.55332348895845, - "x": 0.0694435, - "y": 1.1776951805548224 - }, - { - "residuals": -261.38277154136966, - "x": 0.0722213, - "y": 0.5600044095230652 - }, - { - "residuals": -251.46588430165514, - "x": 0.0751101, - "y": 0.5263028657314547 - }, - { - "residuals": -201.1539579373624, - "x": 0.0781145, - "y": 0.8987631419722563 - }, - { - "residuals": -152.32082068263057, - "x": 0.0812391, - "y": 1.1896069965962524 - }, - { - "residuals": -139.43418014124373, - "x": 0.0844887, - "y": 1.1170175086363778 - }, - { - "residuals": -163.2751512956822, - "x": 0.0878682, - "y": 0.7375118985760059 - }, - { - "residuals": -198.2775526328614, - "x": 0.091383, - "y": 0.34518041662814325 - }, - { - "residuals": -206.94031892474177, - "x": 0.0950383, - "y": 0.21212960236793044 - }, - { - "residuals": -183.29119397699208, - "x": 0.0988398, - "y": 0.3305050582112544 - }, - { - "residuals": -154.47952453924114, - "x": 0.102793, - "y": 0.4530306688678962 - }, - { - "residuals": -153.63110945900056, - "x": 0.106905, - "y": 0.38912781050128376 - }, - { - "residuals": -170.20576729836534, - "x": 0.111181, - "y": 0.20757031599786563 - }, - { - "residuals": -177.21547200650068, - "x": 0.115629, - "y": 0.11368599530182577 - }, - { - "residuals": -162.61626859981988, - "x": 0.120254, - "y": 0.16208829371310413 - }, - { - "residuals": -148.31441284136633, - "x": 0.125064, - "y": 0.2059896036114229 - }, - { - "residuals": -149.5519442558406, - "x": 0.130066, - "y": 0.14450378690903282 - }, - { - "residuals": -155.58489604094126, - "x": 0.135269, - "y": 0.07212216366138106 - }, - { - "residuals": -146.526502645348, - "x": 0.14068, - "y": 0.08222562739010415 - }, - { - "residuals": -136.59557656312361, - "x": 0.146307, - "y": 0.10453116476014196 - }, - { - "residuals": -134.12302395642124, - "x": 0.152159, - "y": 0.06923038387359784 - }, - { - "residuals": -133.12710736164058, - "x": 0.158246, - "y": 0.04210502637856247 - }, - { - "residuals": -122.84048460562268, - "x": 0.164576, - "y": 0.05651901388674973 - }, - { - "residuals": -116.05420854264031, - "x": 0.171159, - "y": 0.04929943214299541 - }, - { - "residuals": -112.08479141241313, - "x": 0.178005, - "y": 0.027006186998035895 - }, - { - "residuals": -102.94168700530855, - "x": 0.185125, - "y": 0.03336437077499559 - }, - { - "residuals": -95.47965471767262, - "x": 0.19253, - "y": 0.030579179024976828 - }, - { - "residuals": -86.99446724760531, - "x": 0.200231, - "y": 0.018484793892093624 - }, - { - "residuals": -77.25398237994193, - "x": 0.208241, - "y": 0.02272011331185366 - }, - { - "residuals": -68.41110033543985, - "x": 0.21657, - "y": 0.016528860267945124 - }, - { - "residuals": -59.016465307197336, - "x": 0.225233, - "y": 0.014281626890903707 - }, - { - "residuals": -48.81553598627055, - "x": 0.234242, - "y": 0.014109910467660195 - }, - { - "residuals": -40.08130273467519, - "x": 0.243612, - "y": 0.010560545080817281 - }, - { - "residuals": -28.093376142026205, - "x": 0.251694, - "y": 0.011034074904657878 - } -]; - -export const DATA: Array> = [ - { - "dlam": null, - "dx": 0.00144239, - "dy": 1.93973, - "lam": null, - "x": 0.00714, - "y": 226.539, - "errorLower": 224.59927, - "errorUpper": 228.47872999999998, - "yFit": 594.7156752091166, - "residuals": 189.80820795116674 - }, - { - "dlam": null, - "dx": 0.00147496, - "dy": 1.62915, - "lam": null, - "x": 0.0074256, - "y": 221.513, - "errorLower": 219.88385, - "errorUpper": 223.14215000000002, - "yFit": 628.1034648613285, - "residuals": 249.57214796754653 - }, - { - "dlam": null, - "dx": 0.0015166, - "dy": 1.48514, - "lam": null, - "x": 0.00772262, - "y": 227.287, - "errorLower": 225.80186, - "errorUpper": 228.77214, - "yFit": 664.9377380458241, - "residuals": 294.68651982023516 - }, - { - "dlam": null, - "dx": 0.00155158, - "dy": 1.3466, - "lam": null, - "x": 0.00803153, - "y": 224.28, - "errorLower": 222.9334, - "errorUpper": 225.6266, - "yFit": 704.0209311986553, - "residuals": 356.26090241991335 - }, - { - "dlam": null, - "dx": 0.00159088, - "dy": 1.18008, - "lam": null, - "x": 0.00835279, - "y": 223.997, - "errorLower": 222.81692, - "errorUpper": 225.17708000000002, - "yFit": 745.5609303524525, - "residuals": 441.9733665111284 - }, - { - "dlam": null, - "dx": 0.00162593, - "dy": 1.05878, - "lam": null, - "x": 0.0086869, - "y": 223.672, - "errorLower": 222.61321999999998, - "errorUpper": 224.73078, - "yFit": 787.8436630053666, - "residuals": 532.8506989226908 - }, - { - "dlam": null, - "dx": 0.00168048, - "dy": 0.976591, - "lam": null, - "x": 0.00903438, - "y": 228.475, - "errorLower": 227.49840899999998, - "errorUpper": 229.451591, - "yFit": 833.7939188865907, - "residuals": 619.8284838653958 - }, - { - "dlam": null, - "dx": 0.00170509, - "dy": 0.900282, - "lam": null, - "x": 0.00939575, - "y": 229.011, - "errorLower": 228.110718, - "errorUpper": 229.911282, - "yFit": 881.0434283593453, - "residuals": 724.2535431779656 - }, - { - "dlam": null, - "dx": 0.00172049, - "dy": 0.884191, - "lam": null, - "x": 0.00977158, - "y": 235.962, - "errorLower": 235.077809, - "errorUpper": 236.84619099999998, - "yFit": 929.1405989885193, - "residuals": 783.969299606668 - }, - { - "dlam": null, - "dx": 0.00171975, - "dy": 0.84357, - "lam": null, - "x": 0.0101624, - "y": 241.236, - "errorLower": 240.39243, - "errorUpper": 242.07957, - "yFit": 980.3772408976719, - "residuals": 876.2061724547718 - }, - { - "dlam": null, - "dx": 0.00173361, - "dy": 0.807803, - "lam": null, - "x": 0.0105689, - "y": 247.454, - "errorLower": 246.646197, - "errorUpper": 248.26180300000001, - "yFit": 1030.4215667412864, - "residuals": 969.2555817956685 - }, - { - "dlam": null, - "dx": 0.00176472, - "dy": 0.787324, - "lam": null, - "x": 0.0109917, - "y": 256.09, - "errorLower": 255.30267599999996, - "errorUpper": 256.877324, - "yFit": 1079.3556824902878, - "residuals": 1045.6504342434473 - }, - { - "dlam": null, - "dx": 0.00182598, - "dy": 0.755671, - "lam": null, - "x": 0.0114314, - "y": 269.423, - "errorLower": 268.667329, - "errorUpper": 270.178671, - "yFit": 1126.453775028181, - "residuals": 1134.132148816325 - }, - { - "dlam": null, - "dx": 0.00187949, - "dy": 0.711765, - "lam": null, - "x": 0.0118886, - "y": 282.029, - "errorLower": 281.317235, - "errorUpper": 282.740765, - "yFit": 1167.5684621522319, - "residuals": 1244.1458376742771 - }, - { - "dlam": null, - "dx": 0.00193137, - "dy": 0.704532, - "lam": null, - "x": 0.0123642, - "y": 296.626, - "errorLower": 295.921468, - "errorUpper": 297.33053199999995, - "yFit": 1202.112317621233, - "residuals": 1285.2309300659629 - }, - { - "dlam": null, - "dx": 0.00198554, - "dy": 0.68349, - "lam": null, - "x": 0.0128587, - "y": 318.537, - "errorLower": 317.85350999999997, - "errorUpper": 319.22049, - "yFit": 1227.7696865785122, - "residuals": 1330.2794284898273 - }, - { - "dlam": null, - "dx": 0.00203315, - "dy": 0.675291, - "lam": null, - "x": 0.0133731, - "y": 345.447, - "errorLower": 344.771709, - "errorUpper": 346.122291, - "yFit": 1243.0094275779782, - "residuals": 1329.1491039832874 - }, - { - "dlam": null, - "dx": 0.00208813, - "dy": 0.668046, - "lam": null, - "x": 0.013908, - "y": 377.838, - "errorLower": 377.169954, - "errorUpper": 378.506046, - "yFit": 1246.1857101358723, - "residuals": 1299.832212356443 - }, - { - "dlam": null, - "dx": 0.00213326, - "dy": 0.678959, - "lam": null, - "x": 0.0144643, - "y": 418.942, - "errorLower": 418.263041, - "errorUpper": 419.620959, - "yFit": 1233.9666897964098, - "residuals": 1200.4033966652034 - }, - { - "dlam": null, - "dx": 0.00217358, - "dy": 0.686981, - "lam": null, - "x": 0.0150429, - "y": 467.433, - "errorLower": 466.746019, - "errorUpper": 468.119981, - "yFit": 1206.3907504158715, - "residuals": 1075.6596622262794 - }, - { - "dlam": null, - "dx": 0.00220131, - "dy": 0.703031, - "lam": null, - "x": 0.0156446, - "y": 521.277, - "errorLower": 520.573969, - "errorUpper": 521.980031, - "yFit": 1165.0768651812634, - "residuals": 915.7489003774563 - }, - { - "dlam": null, - "dx": 0.00222531, - "dy": 0.727639, - "lam": null, - "x": 0.0162704, - "y": 587.111, - "errorLower": 586.383361, - "errorUpper": 587.838639, - "yFit": 1105.847156450134, - "residuals": 712.9031792552818 - }, - { - "dlam": null, - "dx": 0.00226428, - "dy": 0.744067, - "lam": null, - "x": 0.0169212, - "y": 657.003, - "errorLower": 656.2589330000001, - "errorUpper": 657.747067, - "yFit": 1029.75619833087, - "residuals": 500.9672493617777 - }, - { - "dlam": null, - "dx": 0.00227136, - "dy": 0.754121, - "lam": null, - "x": 0.0175981, - "y": 727.944, - "errorLower": 727.1898789999999, - "errorUpper": 728.698121, - "yFit": 940.9165765484569, - "residuals": 282.411677368031 - }, - { - "dlam": null, - "dx": 0.00228228, - "dy": 0.762387, - "lam": null, - "x": 0.018302, - "y": 789.992, - "errorLower": 789.229613, - "errorUpper": 790.754387, - "yFit": 841.7114391564263, - "residuals": 67.8388261557796 - }, - { - "dlam": null, - "dx": 0.00229589, - "dy": 0.750767, - "lam": null, - "x": 0.0190341, - "y": 832.073, - "errorLower": 831.322233, - "errorUpper": 832.823767, - "yFit": 736.7364242439793, - "residuals": -126.98557043133316 - }, - { - "dlam": null, - "dx": 0.00231852, - "dy": 0.728338, - "lam": null, - "x": 0.0197954, - "y": 839.815, - "errorLower": 839.086662, - "errorUpper": 840.5433380000001, - "yFit": 624.8305891347636, - "residuals": -295.17121290559663 - }, - { - "dlam": null, - "dx": 0.00233235, - "dy": 0.680064, - "lam": null, - "x": 0.0205873, - "y": 805.586, - "errorLower": 804.905936, - "errorUpper": 806.266064, - "yFit": 517.7287382740686, - "residuals": -423.2796644520683 - }, - { - "dlam": null, - "dx": 0.00237326, - "dy": 0.609523, - "lam": null, - "x": 0.0214107, - "y": 732.561, - "errorLower": 731.9514770000001, - "errorUpper": 733.170523, - "yFit": 417.42508393303734, - "residuals": -517.0205489652773 - }, - { - "dlam": null, - "dx": 0.00244917, - "dy": 0.525037, - "lam": null, - "x": 0.0222672, - "y": 623.581, - "errorLower": 623.055963, - "errorUpper": 624.106037, - "yFit": 327.71996959657736, - "residuals": -563.5051061228497 - }, - { - "dlam": null, - "dx": 0.00254252, - "dy": 0.431254, - "lam": null, - "x": 0.0231579, - "y": 498.338, - "errorLower": 497.906746, - "errorUpper": 498.76925400000005, - "yFit": 250.13900151053926, - "residuals": -575.5285713047549 - }, - { - "dlam": null, - "dx": 0.00263583, - "dy": 0.345621, - "lam": null, - "x": 0.0240842, - "y": 379.651, - "errorLower": 379.305379, - "errorUpper": 379.996621, - "yFit": 184.8421981090658, - "residuals": -563.648626359319 - }, - { - "dlam": null, - "dx": 0.00274294, - "dy": 0.275152, - "lam": null, - "x": 0.0250475, - "y": 277.92, - "errorLower": 277.644848, - "errorUpper": 278.195152, - "yFit": 132.19872388016105, - "residuals": -529.6028236023687 - }, - { - "dlam": null, - "dx": 0.0028428, - "dy": 0.215742, - "lam": null, - "x": 0.0260494, - "y": 199.772, - "errorLower": 199.55625799999999, - "errorUpper": 199.987742, - "yFit": 90.91124383355539, - "residuals": -504.5876842081959 - }, - { - "dlam": null, - "dx": 0.00286564, - "dy": 0.172114, - "lam": null, - "x": 0.0270914, - "y": 141.351, - "errorLower": 141.178886, - "errorUpper": 141.523114, - "yFit": 56.234826621458275, - "residuals": -494.53370079448354 - }, - { - "dlam": null, - "dx": 0.00289349, - "dy": 0.138782, - "lam": null, - "x": 0.0281751, - "y": 102.756, - "errorLower": 102.617218, - "errorUpper": 102.894782, - "yFit": 34.58145206268919, - "residuals": -491.2347994502949 - }, - { - "dlam": null, - "dx": 0.00289295, - "dy": 0.114218, - "lam": null, - "x": 0.0293021, - "y": 78.1058, - "errorLower": 77.99158200000001, - "errorUpper": 78.220018, - "yFit": 20.770238179186027, - "residuals": -501.9835912099142 - }, - { - "dlam": null, - "dx": 0.00284193, - "dy": 0.0977755, - "lam": null, - "x": 0.0304742, - "y": 62.5493, - "errorLower": 62.451524500000005, - "errorUpper": 62.6470755, - "yFit": 12.505942974822046, - "residuals": -511.8189835406411 - }, - { - "dlam": null, - "dx": 0.0027452, - "dy": 0.0869322, - "lam": null, - "x": 0.0316931, - "y": 53.8731, - "errorLower": 53.7861678, - "errorUpper": 53.9600322, - "yFit": 10.7252045358092, - "residuals": -496.3396240310357 - }, - { - "dlam": null, - "dx": 0.0026771, - "dy": 0.0804389, - "lam": null, - "x": 0.0329609, - "y": 49.8906, - "errorLower": 49.8101611, - "errorUpper": 49.971038899999996, - "yFit": 12.622188153165856, - "residuals": -463.3132955178918 - }, - { - "dlam": null, - "dx": 0.00262863, - "dy": 0.0759295, - "lam": null, - "x": 0.0342793, - "y": 48.5347, - "errorLower": 48.4587705, - "errorUpper": 48.6106295, - "yFit": 16.836891823389934, - "residuals": -417.46367586524434 - }, - { - "dlam": null, - "dx": 0.00257297, - "dy": 0.0728817, - "lam": null, - "x": 0.0356505, - "y": 47.7805, - "errorLower": 47.7076183, - "errorUpper": 47.85338170000001, - "yFit": 21.3498645864527, - "residuals": -362.65119246048465 - }, - { - "dlam": null, - "dx": 0.00256056, - "dy": 0.0692472, - "lam": null, - "x": 0.0370765, - "y": 46.4139, - "errorLower": 46.3446528, - "errorUpper": 46.4831472, - "yFit": 24.98386593987589, - "residuals": -309.47148852407184 - }, - { - "dlam": null, - "dx": 0.00256325, - "dy": 0.0640746, - "lam": null, - "x": 0.0385595, - "y": 43.3373, - "errorLower": 43.2732254, - "errorUpper": 43.4013746, - "yFit": 26.409891253395084, - "residuals": -264.1828235619874 - }, - { - "dlam": null, - "dx": 0.00258859, - "dy": 0.0581762, - "lam": null, - "x": 0.0401019, - "y": 38.7575, - "errorLower": 38.6993238, - "errorUpper": 38.8156762, - "yFit": 25.443067111121852, - "residuals": -228.86391494938047 - }, - { - "dlam": null, - "dx": 0.002619, - "dy": 0.0513839, - "lam": null, - "x": 0.041706, - "y": 32.8237, - "errorLower": 32.772316100000005, - "errorUpper": 32.8750839, - "yFit": 22.31244728454257, - "residuals": -204.5631552968426 - }, - { - "dlam": null, - "dx": 0.00267382, - "dy": 0.0443289, - "lam": null, - "x": 0.0433742, - "y": 26.4637, - "errorLower": 26.4193711, - "errorUpper": 26.5080289, - "yFit": 17.66628478054633, - "residuals": -198.45778305921576 - }, - { - "dlam": null, - "dx": 0.00272568, - "dy": 0.0378276, - "lam": null, - "x": 0.0451092, - "y": 20.8371, - "errorLower": 20.7992724, - "errorUpper": 20.8749276, - "yFit": 12.48008994959975, - "residuals": -220.9236126637759 - }, - { - "dlam": null, - "dx": 0.00276587, - "dy": 0.0320347, - "lam": null, - "x": 0.0469136, - "y": 16.2119, - "errorLower": 16.1798653, - "errorUpper": 16.2439347, - "yFit": 7.699263224961208, - "residuals": -265.73174635750587 - }, - { - "dlam": null, - "dx": 0.00279571, - "dy": 0.0278154, - "lam": null, - "x": 0.0487901, - "y": 13.0286, - "errorLower": 13.000784600000001, - "errorUpper": 13.0564154, - "yFit": 3.8645861384283373, - "residuals": -329.45828072117115 - }, - { - "dlam": null, - "dx": 0.00281708, - "dy": 0.0245709, - "lam": null, - "x": 0.0507417, - "y": 10.9345, - "errorLower": 10.9099291, - "errorUpper": 10.9590709, - "yFit": 1.8611969330584426, - "residuals": -369.27027772452607 - }, - { - "dlam": null, - "dx": 0.00282959, - "dy": 0.0222794, - "lam": null, - "x": 0.0527714, - "y": 9.67899, - "errorLower": 9.6567106, - "errorUpper": 9.701269400000001, - "yFit": 1.4196773595821721, - "residuals": -370.7152185614437 - }, - { - "dlam": null, - "dx": 0.0028401, - "dy": 0.0206342, - "lam": null, - "x": 0.0548822, - "y": 8.78581, - "errorLower": 8.7651758, - "errorUpper": 8.8064442, - "yFit": 2.1101023242948878, - "residuals": -323.52636282022627 - }, - { - "dlam": null, - "dx": 0.00286615, - "dy": 0.0191646, - "lam": null, - "x": 0.0570775, - "y": 8.02647, - "errorLower": 8.0073054, - "errorUpper": 8.0456346, - "yFit": 3.2444428948983135, - "residuals": -249.5239715465852 - }, - { - "dlam": null, - "dx": 0.00290825, - "dy": 0.0176645, - "lam": null, - "x": 0.0593606, - "y": 7.19768, - "errorLower": 7.1800155, - "errorUpper": 7.2153445000000005, - "yFit": 4.099096700118251, - "residuals": -175.41302045807973 - }, - { - "dlam": null, - "dx": 0.00296442, - "dy": 0.0160657, - "lam": null, - "x": 0.0617351, - "y": 6.25872, - "errorLower": 6.2426543, - "errorUpper": 6.274785700000001, - "yFit": 4.195065775330769, - "residuals": -128.4509373802095 - }, - { - "dlam": null, - "dx": 0.00303237, - "dy": 0.0145183, - "lam": null, - "x": 0.0642045, - "y": 5.30149, - "errorLower": 5.2869717000000005, - "errorUpper": 5.3160083, - "yFit": 3.4757604737072643, - "residuals": -125.75367131776696 - }, - { - "dlam": null, - "dx": 0.00310777, - "dy": 0.0131602, - "lam": null, - "x": 0.0667726, - "y": 4.52106, - "errorLower": 4.507899800000001, - "errorUpper": 4.5342202, - "yFit": 2.2910574956884084, - "residuals": -169.4505025996255 - }, - { - "dlam": null, - "dx": 0.00317865, - "dy": 0.0120429, - "lam": null, - "x": 0.0694435, - "y": 3.93014, - "errorLower": 3.9180971, - "errorUpper": 3.9421829, - "yFit": 1.1776951805548224, - "residuals": -228.55332348895845 - }, - { - "dlam": null, - "dx": 0.00323071, - "dy": 0.0112192, - "lam": null, - "x": 0.0722213, - "y": 3.49251, - "errorLower": 3.4812907999999996, - "errorUpper": 3.5037292, - "yFit": 0.5600044095230652, - "residuals": -261.38277154136966 - }, - { - "dlam": null, - "dx": 0.00329721, - "dy": 0.0105821, - "lam": null, - "x": 0.0751101, - "y": 3.18734, - "errorLower": 3.1767578999999997, - "errorUpper": 3.1979221, - "yFit": 0.5263028657314547, - "residuals": -251.46588430165514 - }, - { - "dlam": null, - "dx": 0.00336836, - "dy": 0.0100843, - "lam": null, - "x": 0.0781145, - "y": 2.92726, - "errorLower": 2.9171757, - "errorUpper": 2.9373443, - "yFit": 0.8987631419722563, - "residuals": -201.1539579373624 - }, - { - "dlam": null, - "dx": 0.00345727, - "dy": 0.00955912, - "lam": null, - "x": 0.0812391, - "y": 2.64566, - "errorLower": 2.63610088, - "errorUpper": 2.65521912, - "yFit": 1.1896069965962524, - "residuals": -152.32082068263057 - }, - { - "dlam": null, - "dx": 0.0035437, - "dy": 0.00901861, - "lam": null, - "x": 0.0844887, - "y": 2.37452, - "errorLower": 2.36550139, - "errorUpper": 2.38353861, - "yFit": 1.1170175086363778, - "residuals": -139.43418014124373 - }, - { - "dlam": null, - "dx": 0.00362227, - "dy": 0.00853411, - "lam": null, - "x": 0.0878682, - "y": 2.13092, - "errorLower": 2.1223858900000003, - "errorUpper": 2.13945411, - "yFit": 0.7375118985760059, - "residuals": -163.2751512956822 - }, - { - "dlam": null, - "dx": 0.0036993, - "dy": 0.00801442, - "lam": null, - "x": 0.091383, - "y": 1.93426, - "errorLower": 1.92624558, - "errorUpper": 1.9422744200000002, - "yFit": 0.34518041662814325, - "residuals": -198.2775526328614 - }, - { - "dlam": null, - "dx": 0.00374223, - "dy": 0.00759625, - "lam": null, - "x": 0.0950383, - "y": 1.7841, - "errorLower": 1.77650375, - "errorUpper": 1.79169625, - "yFit": 0.21212960236793044, - "residuals": -206.94031892474177 - }, - { - "dlam": null, - "dx": 0.00381774, - "dy": 0.00721554, - "lam": null, - "x": 0.0988398, - "y": 1.65305, - "errorLower": 1.6458344599999999, - "errorUpper": 1.66026554, - "yFit": 0.3305050582112544, - "residuals": -183.29119397699208 - }, - { - "dlam": null, - "dx": 0.00388979, - "dy": 0.00691554, - "lam": null, - "x": 0.102793, - "y": 1.52134, - "errorLower": 1.5144244599999999, - "errorUpper": 1.52825554, - "yFit": 0.4530306688678962, - "residuals": -154.47952453924114 - }, - { - "dlam": null, - "dx": 0.00396133, - "dy": 0.0066253, - "lam": null, - "x": 0.106905, - "y": 1.40698, - "errorLower": 1.4003546999999998, - "errorUpper": 1.4136053, - "yFit": 0.38912781050128376, - "residuals": -153.63110945900056 - }, - { - "dlam": null, - "dx": 0.0040448, - "dy": 0.00633815, - "lam": null, - "x": 0.111181, - "y": 1.28636, - "errorLower": 1.28002185, - "errorUpper": 1.2926981499999999, - "yFit": 0.20757031599786563, - "residuals": -170.20576729836534 - }, - { - "dlam": null, - "dx": 0.00412381, - "dy": 0.00611845, - "lam": null, - "x": 0.115629, - "y": 1.19797, - "errorLower": 1.19185155, - "errorUpper": 1.20408845, - "yFit": 0.11368599530182577, - "residuals": -177.21547200650068 - }, - { - "dlam": null, - "dx": 0.00420457, - "dy": 0.00589653, - "lam": null, - "x": 0.120254, - "y": 1.12096, - "errorLower": 1.11506347, - "errorUpper": 1.12685653, - "yFit": 0.16208829371310413, - "residuals": -162.61626859981988 - }, - { - "dlam": null, - "dx": 0.00427869, - "dy": 0.00572062, - "lam": null, - "x": 0.125064, - "y": 1.05444, - "errorLower": 1.04871938, - "errorUpper": 1.06016062, - "yFit": 0.2059896036114229, - "residuals": -148.31441284136633 - }, - { - "dlam": null, - "dx": 0.00438243, - "dy": 0.00560039, - "lam": null, - "x": 0.130066, - "y": 0.982053, - "errorLower": 0.9764526099999999, - "errorUpper": 0.98765339, - "yFit": 0.14450378690903282, - "residuals": -149.5519442558406 - }, - { - "dlam": null, - "dx": 0.00449707, - "dy": 0.00551959, - "lam": null, - "x": 0.135269, - "y": 0.930887, - "errorLower": 0.92536741, - "errorUpper": 0.93640659, - "yFit": 0.07212216366138106, - "residuals": -155.58489604094126 - }, - { - "dlam": null, - "dx": 0.00460143, - "dy": 0.00546427, - "lam": null, - "x": 0.14068, - "y": 0.882886, - "errorLower": 0.8774217299999999, - "errorUpper": 0.88835027, - "yFit": 0.08222562739010415, - "residuals": -146.526502645348 - }, - { - "dlam": null, - "dx": 0.00471315, - "dy": 0.00543486, - "lam": null, - "x": 0.146307, - "y": 0.846909, - "errorLower": 0.84147414, - "errorUpper": 0.8523438600000001, - "yFit": 0.10453116476014196, - "residuals": -136.59557656312361 - }, - { - "dlam": null, - "dx": 0.00482935, - "dy": 0.00541176, - "lam": null, - "x": 0.152159, - "y": 0.795072, - "errorLower": 0.78966024, - "errorUpper": 0.80048376, - "yFit": 0.06923038387359784, - "residuals": -134.12302395642124 - }, - { - "dlam": null, - "dx": 0.00494456, - "dy": 0.00543268, - "lam": null, - "x": 0.158246, - "y": 0.765342, - "errorLower": 0.75990932, - "errorUpper": 0.7707746799999999, - "yFit": 0.04210502637856247, - "residuals": -133.12710736164058 - }, - { - "dlam": null, - "dx": 0.00506276, - "dy": 0.00544301, - "lam": null, - "x": 0.164576, - "y": 0.725141, - "errorLower": 0.71969799, - "errorUpper": 0.7305840100000001, - "yFit": 0.05651901388674973, - "residuals": -122.84048460562268 - }, - { - "dlam": null, - "dx": 0.00519308, - "dy": 0.00556163, - "lam": null, - "x": 0.171159, - "y": 0.69475, - "errorLower": 0.68918837, - "errorUpper": 0.70031163, - "yFit": 0.04929943214299541, - "residuals": -116.05420854264031 - }, - { - "dlam": null, - "dx": 0.00532144, - "dy": 0.00568705, - "lam": null, - "x": 0.178005, - "y": 0.664438, - "errorLower": 0.65875095, - "errorUpper": 0.67012505, - "yFit": 0.027006186998035895, - "residuals": -112.08479141241313 - }, - { - "dlam": null, - "dx": 0.00544726, - "dy": 0.00589887, - "lam": null, - "x": 0.185125, - "y": 0.640604, - "errorLower": 0.63470513, - "errorUpper": 0.64650287, - "yFit": 0.03336437077499559, - "residuals": -102.94168700530855 - }, - { - "dlam": null, - "dx": 0.00558291, - "dy": 0.00622744, - "lam": null, - "x": 0.19253, - "y": 0.625173, - "errorLower": 0.61894556, - "errorUpper": 0.63140044, - "yFit": 0.030579179024976828, - "residuals": -95.47965471767262 - }, - { - "dlam": null, - "dx": 0.00570866, - "dy": 0.00663393, - "lam": null, - "x": 0.200231, - "y": 0.5956, - "errorLower": 0.58896607, - "errorUpper": 0.60223393, - "yFit": 0.018484793892093624, - "residuals": -86.99446724760531 - }, - { - "dlam": null, - "dx": 0.00583848, - "dy": 0.00724923, - "lam": null, - "x": 0.208241, - "y": 0.582752, - "errorLower": 0.57550277, - "errorUpper": 0.59000123, - "yFit": 0.02272011331185366, - "residuals": -77.25398237994193 - }, - { - "dlam": null, - "dx": 0.00595692, - "dy": 0.00810892, - "lam": null, - "x": 0.21657, - "y": 0.571269, - "errorLower": 0.5631600800000001, - "errorUpper": 0.57937792, - "yFit": 0.016528860267945124, - "residuals": -68.41110033543985 - }, - { - "dlam": null, - "dx": 0.00607578, - "dy": 0.00929792, - "lam": null, - "x": 0.225233, - "y": 0.563012, - "errorLower": 0.55371408, - "errorUpper": 0.5723099199999999, - "yFit": 0.014281626890903707, - "residuals": -59.016465307197336 - }, - { - "dlam": null, - "dx": 0.00621921, - "dy": 0.010755, - "lam": null, - "x": 0.234242, - "y": 0.539121, - "errorLower": 0.528366, - "errorUpper": 0.5498759999999999, - "yFit": 0.014109910467660195, - "residuals": -48.81553598627055 - }, - { - "dlam": null, - "dx": 0.00636952, - "dy": 0.0125021, - "lam": null, - "x": 0.243612, - "y": 0.511661, - "errorLower": 0.4991589, - "errorUpper": 0.5241631, - "yFit": 0.010560545080817281, - "residuals": -40.08130273467519 - }, - { - "dlam": null, - "dx": 0.00613893, - "dy": 0.0181216, - "lam": null, - "x": 0.251694, - "y": 0.520131, - "errorLower": 0.5020094, - "errorUpper": 0.5382526, - "yFit": 0.011034074904657878, - "residuals": -28.093376142026205 - } -]; - -export const FIT_DATA_2: Array> = [ - { - "residuals": -13.092270443674225, - "x": 0.00714, - "y": 201.14353025229178 - }, - { - "residuals": -9.957383325894869, - "x": 0.0074256, - "y": 205.29092895461838 - }, - { - "residuals": -11.697210397453926, - "x": 0.00772262, - "y": 209.91500495032528 - }, - { - "residuals": -6.9722852420111545, - "x": 0.00803153, - "y": 214.89112069310778 - }, - { - "residuals": -3.1295151117789533, - "x": 0.00835279, - "y": 220.3039218068919 - }, - { - "residuals": 2.1955349925397334, - "x": 0.0086869, - "y": 225.99658853940122 - }, - { - "residuals": 4.128605554550272, - "x": 0.00903438, - "y": 232.5069590271238 - }, - { - "residuals": 11.658744375520246, - "x": 0.00939575, - "y": 239.50715770388211 - }, - { - "residuals": 12.421995277348163, - "x": 0.00977158, - "y": 246.94541642627374 - }, - { - "residuals": 16.97061048117949, - "x": 0.0101624, - "y": 255.55189788360858 - }, - { - "residuals": 21.78600854873716, - "x": 0.0105689, - "y": 265.05280306369554 - }, - { - "residuals": 25.19742902907893, - "x": 0.0109917, - "y": 275.9285406128905 - }, - { - "residuals": 25.171003109270544, - "x": 0.0114314, - "y": 288.4439970905856 - }, - { - "residuals": 29.532884791132325, - "x": 0.0118886, - "y": 303.0494737433603 - }, - { - "residuals": 33.368924165262804, - "x": 0.0123642, - "y": 320.1354748800009 - }, - { - "residuals": 32.04629638595755, - "x": 0.0128587, - "y": 340.4403231168381 - }, - { - "residuals": 28.499888230365578, - "x": 0.0133731, - "y": 364.6927180229718 - }, - { - "residuals": 25.42184633128772, - "x": 0.013908, - "y": 394.82096275423146 - }, - { - "residuals": 17.150486318857325, - "x": 0.0144643, - "y": 430.58647704056506 - }, - { - "residuals": 8.81054932683193, - "x": 0.0150429, - "y": 473.4856799870963 - }, - { - "residuals": 2.6675190452997426, - "x": 0.0156446, - "y": 523.1523485819362 - }, - { - "residuals": -6.0647631220359965, - "x": 0.0162704, - "y": 582.6980418266448 - }, - { - "residuals": -12.40051509447999, - "x": 0.0169212, - "y": 647.7761859351956 - }, - { - "residuals": -15.362142886679854, - "x": 0.0175981, - "y": 716.3590854441541 - }, - { - "residuals": -13.093748148658785, - "x": 0.018302, - "y": 780.0094966301884 - }, - { - "residuals": -0.8254894683081067, - "x": 0.0190341, - "y": 831.4532497483467 - }, - { - "residuals": 22.27332624865347, - "x": 0.0197954, - "y": 856.0375098932918 - }, - { - "residuals": 53.00675396404615, - "x": 0.0205873, - "y": 841.6339851278051 - }, - { - "residuals": 76.8697024446653, - "x": 0.0214107, - "y": 779.4148516431798 - }, - { - "residuals": 96.7359157642899, - "x": 0.0222672, - "y": 674.3709350051355 - }, - { - "residuals": 111.27832604984594, - "x": 0.0231579, - "y": 546.3272232223003 - }, - { - "residuals": 103.34245909759997, - "x": 0.0240842, - "y": 415.3683240557716 - }, - { - "residuals": 69.77939034559108, - "x": 0.0250475, - "y": 297.1199388123701 - }, - { - "residuals": 0.342680172590036, - "x": 0.0260494, - "y": 199.8459305057949 - }, - { - "residuals": -137.96198322449854, - "x": 0.0270914, - "y": 117.60581121929866 - }, - { - "residuals": -271.3556464417536, - "x": 0.0281751, - "y": 65.09672067552056 - }, - { - "residuals": -380.3405776337812, - "x": 0.0293021, - "y": 34.66405990382478 - }, - { - "residuals": -440.53081262251936, - "x": 0.0304742, - "y": 19.47617953042686 - }, - { - "residuals": -393.3916273571842, - "x": 0.0316931, - "y": 19.674700372259792 - }, - { - "residuals": -300.1988938451847, - "x": 0.0329609, - "y": 25.742931197876572 - }, - { - "residuals": -184.7464361934056, - "x": 0.0342793, - "y": 34.50699547305281 - }, - { - "residuals": -60.97595760191705, - "x": 0.0356505, - "y": 43.336468550844366 - }, - { - "residuals": 56.05706087732228, - "x": 0.0370765, - "y": 50.29569450598411 - }, - { - "residuals": 143.75863230930372, - "x": 0.0385595, - "y": 52.54857686176571 - }, - { - "residuals": 178.99664788961167, - "x": 0.0401019, - "y": 49.17084478695563 - }, - { - "residuals": 152.54418594245578, - "x": 0.041706, - "y": 40.66201519604856 - }, - { - "residuals": 62.80760807712516, - "x": 0.0433742, - "y": 29.247892177690073 - }, - { - "residuals": -73.80100123613148, - "x": 0.0451092, - "y": 18.045385245640112 - }, - { - "residuals": -211.9855009971463, - "x": 0.0469136, - "y": 9.421008071206717 - }, - { - "residuals": -324.22589881587567, - "x": 0.0487901, - "y": 4.010126934076892 - }, - { - "residuals": -338.00106340659784, - "x": 0.0507417, - "y": 2.629509671142825 - }, - { - "residuals": -267.7258868773182, - "x": 0.0527714, - "y": 3.7142178759054767 - }, - { - "residuals": -138.4807990487869, - "x": 0.0548822, - "y": 5.928369496267521 - }, - { - "residuals": -6.150040992694081, - "x": 0.0570775, - "y": 7.908606924391415 - }, - { - "residuals": 74.07380818040076, - "x": 0.0593606, - "y": 8.50615678460269 - }, - { - "residuals": 65.23184149836055, - "x": 0.0617351, - "y": 7.306715195960211 - }, - { - "residuals": -26.30363794928284, - "x": 0.0642045, - "y": 4.919605893160927 - }, - { - "residuals": -149.6048753422126, - "x": 0.0667726, - "y": 2.5522299195214138 - }, - { - "residuals": -228.99836746635816, - "x": 0.0694435, - "y": 1.1723355604393952 - }, - { - "residuals": -220.49015373524114, - "x": 0.0722213, - "y": 1.0187868672135822 - }, - { - "residuals": -144.48713568307795, - "x": 0.0751101, - "y": 1.6583626814881005 - }, - { - "residuals": -62.09904644689476, - "x": 0.0781145, - "y": 2.301034585915579 - }, - { - "residuals": -41.18923374262658, - "x": 0.0812391, - "y": 2.2519271719461833 - }, - { - "residuals": -93.2179139819565, - "x": 0.0844887, - "y": 1.5338239887831873 - }, - { - "residuals": -163.869707023099, - "x": 0.0878682, - "y": 0.7324378945971008 - }, - { - "residuals": -189.82211208502568, - "x": 0.091383, - "y": 0.41294586846352865 - }, - { - "residuals": -154.8916522893266, - "x": 0.0950383, - "y": 0.6075042862972029 - }, - { - "residuals": -108.87177396256435, - "x": 0.0988398, - "y": 0.8674813601021584 - }, - { - "residuals": -106.90176280433082, - "x": 0.102793, - "y": 0.7820565832561379 - }, - { - "residuals": -146.75792355380878, - "x": 0.106905, - "y": 0.43466472907895076 - }, - { - "residuals": -167.50439716437677, - "x": 0.111181, - "y": 0.22469200511260526 - }, - { - "residuals": -147.0384893463141, - "x": 0.115629, - "y": 0.2983223548590445 - }, - { - "residuals": -122.99242233292782, - "x": 0.120254, - "y": 0.3957314919412212 - }, - { - "residuals": -132.86009649937205, - "x": 0.125064, - "y": 0.29439787476376233 - }, - { - "residuals": -149.3151792074875, - "x": 0.130066, - "y": 0.145829763518179 - }, - { - "residuals": -141.21297950088274, - "x": 0.135269, - "y": 0.15144925047672253 - }, - { - "residuals": -124.89928899420262, - "x": 0.14068, - "y": 0.2004025621276484 - }, - { - "residuals": -129.943344536132, - "x": 0.146307, - "y": 0.14068511451435764 - }, - { - "residuals": -131.8844670036495, - "x": 0.152159, - "y": 0.08134491684832981 - }, - { - "residuals": -121.56165293288606, - "x": 0.158246, - "y": 0.10493643934456855 - }, - { - "residuals": -115.29156181409623, - "x": 0.164576, - "y": 0.09760787613025608 - }, - { - "residuals": -114.85125846028403, - "x": 0.171159, - "y": 0.05598979540953052 - }, - { - "residuals": -106.11903522108085, - "x": 0.178005, - "y": 0.06093374074595219 - }, - { - "residuals": -98.40355267368362, - "x": 0.185125, - "y": 0.06013423523978789 - }, - { - "residuals": -94.69984174038319, - "x": 0.19253, - "y": 0.03543541755226805 - }, - { - "residuals": -83.4569322426855, - "x": 0.200231, - "y": 0.041952553487281406 - }, - { - "residuals": -75.90297973684268, - "x": 0.208241, - "y": 0.03251384220228803 - }, - { - "residuals": -67.29918264184093, - "x": 0.21657, - "y": 0.025545311891923213 - }, - { - "residuals": -57.68272870853882, - "x": 0.225233, - "y": 0.026682603086302777 - }, - { - "residuals": -48.46202836605871, - "x": 0.234242, - "y": 0.017911884923038544 - }, - { - "residuals": -39.40014436006562, - "x": 0.243612, - "y": 0.019076455196023627 + "strokeWidth": { + "value": 1.5 + } + } + }, + "interactive": false + } + ], + "style": "cell", + "encode": { + "update": { + "width": { + "signal": "width" + }, + "height": { + "signal": "subHeight" + } + } + } + } + ], + "layout": { + "align": "each", + "bounds": "full", + "columns": 1, + "padding": { + "signal": "layoutPadding" + } }, - { - "residuals": -27.928703972009654, - "x": 0.251694, - "y": 0.014018198100829875 - } -]; + "scales": [ + { + "name": "mainX", + "nice": false, + "type": "log", + "zero": false, + "range": [ + 0, + { + "signal": "width" + } + ], + "domain": { + "fields": [ + { + "data": "sas_result_data", + "field": "x" + }, + { + "data": "sas_result_fit", + "field": "x" + } + ] + } + }, + { + "name": "mainY", + "nice": true, + "type": "symlog", + "zero": false, + "range": [ + { + "signal": "mainHeight" + }, + 0 + ], + "round": true, + "domain": { + "fields": [ + { + "data": "sas_result_data", + "field": "y" + }, + { + "data": "sas_result_fit", + "field": "y" + } + ] + } + }, + { + "name": "subX", + "nice": false, + "type": "log", + "zero": false, + "range": [ + 0, + { + "signal": "width" + } + ], + "domain": { + "fields": [ + { + "data": "sas_result_data", + "field": "x" + }, + { + "data": "sas_result_fit", + "field": "x" + } + ] + } + }, + { + "name": "subY", + "nice": true, + "type": "symlog", + "zero": false, + "range": [ + { + "signal": "subHeight" + }, + 0 + ], + "round": true, + "domain": { + "fields": [ + { + "data": "sas_result_fit", + "field": "residuals" + } + ] + } + } + ], + "$schema": "https://vega.github.io/schema/vega/v5.json", + "signals": [ + { + "on": [ + { + "events": "@vCell:mouseover", + "update": "datum" + }, + { + "events": "@vCell:mouseout", + "update": "null" + } + ], + "name": "hover", + "value": null + }, + { + "on": [ + { + "events": "window:resize", + "update": "isFinite(containerSize()[0]) ? containerSize()[0] : 500" + } + ], + "init": "isFinite(containerSize()[0]) ? containerSize()[0] : 500", + "name": "width" + }, + { + "on": [ + { + "events": "window:resize", + "update": "isFinite(containerSize()[1]) ? containerSize()[1] : 500" + } + ], + "init": "isFinite(containerSize()[1]) ? containerSize()[1] : 500", + "name": "height" + }, + { + "on": [ + { + "events": "mousemove", + "update": "invert('mainX', clamp(x(), 0, width))" + } + ], + "name": "xValue", + "value": 0 + }, + { + "on": [ + { + "events": "@vCell:mousemove", + "update": "mainHeight" + }, + { + "events": "@vCell:mouseout", + "update": "null" + } + ], + "name": "yRuleHeightMain", + "value": 0 + }, + { + "on": [ + { + "events": "@vCell:mousemove", + "update": "subHeight" + }, + { + "events": "@vCell:mouseout", + "update": "null" + } + ], + "name": "yRuleHeightSub", + "value": 0 + }, + { + "on": [ + { + "events": { + "type": "resize", + "source": "window" + }, + "update": "pluck(data('data'), 'x')" + } + ], + "name": "dataX", + "value": 0 + }, + { + "on": [ + { + "events": "window:resize", + "update": "height/1.8" + } + ], + "init": "height/1.8", + "name": "mainHeight", + "value": "null" + }, + { + "on": [ + { + "events": "window:resize", + "update": "clamp(height - mainHeight - boxModelOffset, 0, MAX_VALUE)" + } + ], + "init": "clamp(height - mainHeight - boxModelOffset, 0, MAX_VALUE)", + "name": "subHeight", + "value": "null" + }, + { + "name": "layoutPadding", + "value": 20 + }, + { + "init": "layoutPadding * 4 + 15", + "name": "boxModelOffset" + }, + { + "name": "fitColor", + "value": "firebrick" + }, + { + "name": "dataColor", + "value": "steelblue" + }, + { + "on": [ + { + "events": "window:resize", + "update": "height/12" + } + ], + "init": "height/12", + "name": "pointSize" + }, + { + "name": "pointOpacity", + "value": 0.8 + } + ], + "autosize": "fit" +}; + +export const DATA_1: Record = { + 'sas_result_data': [ + { + "dlam": null, + "dx": 0.00144239, + "dy": 1.93973, + "lam": null, + "x": 0.00714, + "y": 226.539, + "errorLower": 224.59927, + "errorUpper": 228.47872999999998, + "yFit": 594.7156752091166, + "residuals": 189.80820795116674 + }, + { + "dlam": null, + "dx": 0.00147496, + "dy": 1.62915, + "lam": null, + "x": 0.0074256, + "y": 221.513, + "errorLower": 219.88385, + "errorUpper": 223.14215000000002, + "yFit": 628.1034648613285, + "residuals": 249.57214796754653 + }, + { + "dlam": null, + "dx": 0.0015166, + "dy": 1.48514, + "lam": null, + "x": 0.00772262, + "y": 227.287, + "errorLower": 225.80186, + "errorUpper": 228.77214, + "yFit": 664.9377380458241, + "residuals": 294.68651982023516 + }, + { + "dlam": null, + "dx": 0.00155158, + "dy": 1.3466, + "lam": null, + "x": 0.00803153, + "y": 224.28, + "errorLower": 222.9334, + "errorUpper": 225.6266, + "yFit": 704.0209311986553, + "residuals": 356.26090241991335 + }, + { + "dlam": null, + "dx": 0.00159088, + "dy": 1.18008, + "lam": null, + "x": 0.00835279, + "y": 223.997, + "errorLower": 222.81692, + "errorUpper": 225.17708000000002, + "yFit": 745.5609303524525, + "residuals": 441.9733665111284 + }, + { + "dlam": null, + "dx": 0.00162593, + "dy": 1.05878, + "lam": null, + "x": 0.0086869, + "y": 223.672, + "errorLower": 222.61321999999998, + "errorUpper": 224.73078, + "yFit": 787.8436630053666, + "residuals": 532.8506989226908 + }, + { + "dlam": null, + "dx": 0.00168048, + "dy": 0.976591, + "lam": null, + "x": 0.00903438, + "y": 228.475, + "errorLower": 227.49840899999998, + "errorUpper": 229.451591, + "yFit": 833.7939188865907, + "residuals": 619.8284838653958 + }, + { + "dlam": null, + "dx": 0.00170509, + "dy": 0.900282, + "lam": null, + "x": 0.00939575, + "y": 229.011, + "errorLower": 228.110718, + "errorUpper": 229.911282, + "yFit": 881.0434283593453, + "residuals": 724.2535431779656 + }, + { + "dlam": null, + "dx": 0.00172049, + "dy": 0.884191, + "lam": null, + "x": 0.00977158, + "y": 235.962, + "errorLower": 235.077809, + "errorUpper": 236.84619099999998, + "yFit": 929.1405989885193, + "residuals": 783.969299606668 + }, + { + "dlam": null, + "dx": 0.00171975, + "dy": 0.84357, + "lam": null, + "x": 0.0101624, + "y": 241.236, + "errorLower": 240.39243, + "errorUpper": 242.07957, + "yFit": 980.3772408976719, + "residuals": 876.2061724547718 + }, + { + "dlam": null, + "dx": 0.00173361, + "dy": 0.807803, + "lam": null, + "x": 0.0105689, + "y": 247.454, + "errorLower": 246.646197, + "errorUpper": 248.26180300000001, + "yFit": 1030.4215667412864, + "residuals": 969.2555817956685 + }, + { + "dlam": null, + "dx": 0.00176472, + "dy": 0.787324, + "lam": null, + "x": 0.0109917, + "y": 256.09, + "errorLower": 255.30267599999996, + "errorUpper": 256.877324, + "yFit": 1079.3556824902878, + "residuals": 1045.6504342434473 + }, + { + "dlam": null, + "dx": 0.00182598, + "dy": 0.755671, + "lam": null, + "x": 0.0114314, + "y": 269.423, + "errorLower": 268.667329, + "errorUpper": 270.178671, + "yFit": 1126.453775028181, + "residuals": 1134.132148816325 + }, + { + "dlam": null, + "dx": 0.00187949, + "dy": 0.711765, + "lam": null, + "x": 0.0118886, + "y": 282.029, + "errorLower": 281.317235, + "errorUpper": 282.740765, + "yFit": 1167.5684621522319, + "residuals": 1244.1458376742771 + }, + { + "dlam": null, + "dx": 0.00193137, + "dy": 0.704532, + "lam": null, + "x": 0.0123642, + "y": 296.626, + "errorLower": 295.921468, + "errorUpper": 297.33053199999995, + "yFit": 1202.112317621233, + "residuals": 1285.2309300659629 + }, + { + "dlam": null, + "dx": 0.00198554, + "dy": 0.68349, + "lam": null, + "x": 0.0128587, + "y": 318.537, + "errorLower": 317.85350999999997, + "errorUpper": 319.22049, + "yFit": 1227.7696865785122, + "residuals": 1330.2794284898273 + }, + { + "dlam": null, + "dx": 0.00203315, + "dy": 0.675291, + "lam": null, + "x": 0.0133731, + "y": 345.447, + "errorLower": 344.771709, + "errorUpper": 346.122291, + "yFit": 1243.0094275779782, + "residuals": 1329.1491039832874 + }, + { + "dlam": null, + "dx": 0.00208813, + "dy": 0.668046, + "lam": null, + "x": 0.013908, + "y": 377.838, + "errorLower": 377.169954, + "errorUpper": 378.506046, + "yFit": 1246.1857101358723, + "residuals": 1299.832212356443 + }, + { + "dlam": null, + "dx": 0.00213326, + "dy": 0.678959, + "lam": null, + "x": 0.0144643, + "y": 418.942, + "errorLower": 418.263041, + "errorUpper": 419.620959, + "yFit": 1233.9666897964098, + "residuals": 1200.4033966652034 + }, + { + "dlam": null, + "dx": 0.00217358, + "dy": 0.686981, + "lam": null, + "x": 0.0150429, + "y": 467.433, + "errorLower": 466.746019, + "errorUpper": 468.119981, + "yFit": 1206.3907504158715, + "residuals": 1075.6596622262794 + }, + { + "dlam": null, + "dx": 0.00220131, + "dy": 0.703031, + "lam": null, + "x": 0.0156446, + "y": 521.277, + "errorLower": 520.573969, + "errorUpper": 521.980031, + "yFit": 1165.0768651812634, + "residuals": 915.7489003774563 + }, + { + "dlam": null, + "dx": 0.00222531, + "dy": 0.727639, + "lam": null, + "x": 0.0162704, + "y": 587.111, + "errorLower": 586.383361, + "errorUpper": 587.838639, + "yFit": 1105.847156450134, + "residuals": 712.9031792552818 + }, + { + "dlam": null, + "dx": 0.00226428, + "dy": 0.744067, + "lam": null, + "x": 0.0169212, + "y": 657.003, + "errorLower": 656.2589330000001, + "errorUpper": 657.747067, + "yFit": 1029.75619833087, + "residuals": 500.9672493617777 + }, + { + "dlam": null, + "dx": 0.00227136, + "dy": 0.754121, + "lam": null, + "x": 0.0175981, + "y": 727.944, + "errorLower": 727.1898789999999, + "errorUpper": 728.698121, + "yFit": 940.9165765484569, + "residuals": 282.411677368031 + }, + { + "dlam": null, + "dx": 0.00228228, + "dy": 0.762387, + "lam": null, + "x": 0.018302, + "y": 789.992, + "errorLower": 789.229613, + "errorUpper": 790.754387, + "yFit": 841.7114391564263, + "residuals": 67.8388261557796 + }, + { + "dlam": null, + "dx": 0.00229589, + "dy": 0.750767, + "lam": null, + "x": 0.0190341, + "y": 832.073, + "errorLower": 831.322233, + "errorUpper": 832.823767, + "yFit": 736.7364242439793, + "residuals": -126.98557043133316 + }, + { + "dlam": null, + "dx": 0.00231852, + "dy": 0.728338, + "lam": null, + "x": 0.0197954, + "y": 839.815, + "errorLower": 839.086662, + "errorUpper": 840.5433380000001, + "yFit": 624.8305891347636, + "residuals": -295.17121290559663 + }, + { + "dlam": null, + "dx": 0.00233235, + "dy": 0.680064, + "lam": null, + "x": 0.0205873, + "y": 805.586, + "errorLower": 804.905936, + "errorUpper": 806.266064, + "yFit": 517.7287382740686, + "residuals": -423.2796644520683 + }, + { + "dlam": null, + "dx": 0.00237326, + "dy": 0.609523, + "lam": null, + "x": 0.0214107, + "y": 732.561, + "errorLower": 731.9514770000001, + "errorUpper": 733.170523, + "yFit": 417.42508393303734, + "residuals": -517.0205489652773 + }, + { + "dlam": null, + "dx": 0.00244917, + "dy": 0.525037, + "lam": null, + "x": 0.0222672, + "y": 623.581, + "errorLower": 623.055963, + "errorUpper": 624.106037, + "yFit": 327.71996959657736, + "residuals": -563.5051061228497 + }, + { + "dlam": null, + "dx": 0.00254252, + "dy": 0.431254, + "lam": null, + "x": 0.0231579, + "y": 498.338, + "errorLower": 497.906746, + "errorUpper": 498.76925400000005, + "yFit": 250.13900151053926, + "residuals": -575.5285713047549 + }, + { + "dlam": null, + "dx": 0.00263583, + "dy": 0.345621, + "lam": null, + "x": 0.0240842, + "y": 379.651, + "errorLower": 379.305379, + "errorUpper": 379.996621, + "yFit": 184.8421981090658, + "residuals": -563.648626359319 + }, + { + "dlam": null, + "dx": 0.00274294, + "dy": 0.275152, + "lam": null, + "x": 0.0250475, + "y": 277.92, + "errorLower": 277.644848, + "errorUpper": 278.195152, + "yFit": 132.19872388016105, + "residuals": -529.6028236023687 + }, + { + "dlam": null, + "dx": 0.0028428, + "dy": 0.215742, + "lam": null, + "x": 0.0260494, + "y": 199.772, + "errorLower": 199.55625799999999, + "errorUpper": 199.987742, + "yFit": 90.91124383355539, + "residuals": -504.5876842081959 + }, + { + "dlam": null, + "dx": 0.00286564, + "dy": 0.172114, + "lam": null, + "x": 0.0270914, + "y": 141.351, + "errorLower": 141.178886, + "errorUpper": 141.523114, + "yFit": 56.234826621458275, + "residuals": -494.53370079448354 + }, + { + "dlam": null, + "dx": 0.00289349, + "dy": 0.138782, + "lam": null, + "x": 0.0281751, + "y": 102.756, + "errorLower": 102.617218, + "errorUpper": 102.894782, + "yFit": 34.58145206268919, + "residuals": -491.2347994502949 + }, + { + "dlam": null, + "dx": 0.00289295, + "dy": 0.114218, + "lam": null, + "x": 0.0293021, + "y": 78.1058, + "errorLower": 77.99158200000001, + "errorUpper": 78.220018, + "yFit": 20.770238179186027, + "residuals": -501.9835912099142 + }, + { + "dlam": null, + "dx": 0.00284193, + "dy": 0.0977755, + "lam": null, + "x": 0.0304742, + "y": 62.5493, + "errorLower": 62.451524500000005, + "errorUpper": 62.6470755, + "yFit": 12.505942974822046, + "residuals": -511.8189835406411 + }, + { + "dlam": null, + "dx": 0.0027452, + "dy": 0.0869322, + "lam": null, + "x": 0.0316931, + "y": 53.8731, + "errorLower": 53.7861678, + "errorUpper": 53.9600322, + "yFit": 10.7252045358092, + "residuals": -496.3396240310357 + }, + { + "dlam": null, + "dx": 0.0026771, + "dy": 0.0804389, + "lam": null, + "x": 0.0329609, + "y": 49.8906, + "errorLower": 49.8101611, + "errorUpper": 49.971038899999996, + "yFit": 12.622188153165856, + "residuals": -463.3132955178918 + }, + { + "dlam": null, + "dx": 0.00262863, + "dy": 0.0759295, + "lam": null, + "x": 0.0342793, + "y": 48.5347, + "errorLower": 48.4587705, + "errorUpper": 48.6106295, + "yFit": 16.836891823389934, + "residuals": -417.46367586524434 + }, + { + "dlam": null, + "dx": 0.00257297, + "dy": 0.0728817, + "lam": null, + "x": 0.0356505, + "y": 47.7805, + "errorLower": 47.7076183, + "errorUpper": 47.85338170000001, + "yFit": 21.3498645864527, + "residuals": -362.65119246048465 + }, + { + "dlam": null, + "dx": 0.00256056, + "dy": 0.0692472, + "lam": null, + "x": 0.0370765, + "y": 46.4139, + "errorLower": 46.3446528, + "errorUpper": 46.4831472, + "yFit": 24.98386593987589, + "residuals": -309.47148852407184 + }, + { + "dlam": null, + "dx": 0.00256325, + "dy": 0.0640746, + "lam": null, + "x": 0.0385595, + "y": 43.3373, + "errorLower": 43.2732254, + "errorUpper": 43.4013746, + "yFit": 26.409891253395084, + "residuals": -264.1828235619874 + }, + { + "dlam": null, + "dx": 0.00258859, + "dy": 0.0581762, + "lam": null, + "x": 0.0401019, + "y": 38.7575, + "errorLower": 38.6993238, + "errorUpper": 38.8156762, + "yFit": 25.443067111121852, + "residuals": -228.86391494938047 + }, + { + "dlam": null, + "dx": 0.002619, + "dy": 0.0513839, + "lam": null, + "x": 0.041706, + "y": 32.8237, + "errorLower": 32.772316100000005, + "errorUpper": 32.8750839, + "yFit": 22.31244728454257, + "residuals": -204.5631552968426 + }, + { + "dlam": null, + "dx": 0.00267382, + "dy": 0.0443289, + "lam": null, + "x": 0.0433742, + "y": 26.4637, + "errorLower": 26.4193711, + "errorUpper": 26.5080289, + "yFit": 17.66628478054633, + "residuals": -198.45778305921576 + }, + { + "dlam": null, + "dx": 0.00272568, + "dy": 0.0378276, + "lam": null, + "x": 0.0451092, + "y": 20.8371, + "errorLower": 20.7992724, + "errorUpper": 20.8749276, + "yFit": 12.48008994959975, + "residuals": -220.9236126637759 + }, + { + "dlam": null, + "dx": 0.00276587, + "dy": 0.0320347, + "lam": null, + "x": 0.0469136, + "y": 16.2119, + "errorLower": 16.1798653, + "errorUpper": 16.2439347, + "yFit": 7.699263224961208, + "residuals": -265.73174635750587 + }, + { + "dlam": null, + "dx": 0.00279571, + "dy": 0.0278154, + "lam": null, + "x": 0.0487901, + "y": 13.0286, + "errorLower": 13.000784600000001, + "errorUpper": 13.0564154, + "yFit": 3.8645861384283373, + "residuals": -329.45828072117115 + }, + { + "dlam": null, + "dx": 0.00281708, + "dy": 0.0245709, + "lam": null, + "x": 0.0507417, + "y": 10.9345, + "errorLower": 10.9099291, + "errorUpper": 10.9590709, + "yFit": 1.8611969330584426, + "residuals": -369.27027772452607 + }, + { + "dlam": null, + "dx": 0.00282959, + "dy": 0.0222794, + "lam": null, + "x": 0.0527714, + "y": 9.67899, + "errorLower": 9.6567106, + "errorUpper": 9.701269400000001, + "yFit": 1.4196773595821721, + "residuals": -370.7152185614437 + }, + { + "dlam": null, + "dx": 0.0028401, + "dy": 0.0206342, + "lam": null, + "x": 0.0548822, + "y": 8.78581, + "errorLower": 8.7651758, + "errorUpper": 8.8064442, + "yFit": 2.1101023242948878, + "residuals": -323.52636282022627 + }, + { + "dlam": null, + "dx": 0.00286615, + "dy": 0.0191646, + "lam": null, + "x": 0.0570775, + "y": 8.02647, + "errorLower": 8.0073054, + "errorUpper": 8.0456346, + "yFit": 3.2444428948983135, + "residuals": -249.5239715465852 + }, + { + "dlam": null, + "dx": 0.00290825, + "dy": 0.0176645, + "lam": null, + "x": 0.0593606, + "y": 7.19768, + "errorLower": 7.1800155, + "errorUpper": 7.2153445000000005, + "yFit": 4.099096700118251, + "residuals": -175.41302045807973 + }, + { + "dlam": null, + "dx": 0.00296442, + "dy": 0.0160657, + "lam": null, + "x": 0.0617351, + "y": 6.25872, + "errorLower": 6.2426543, + "errorUpper": 6.274785700000001, + "yFit": 4.195065775330769, + "residuals": -128.4509373802095 + }, + { + "dlam": null, + "dx": 0.00303237, + "dy": 0.0145183, + "lam": null, + "x": 0.0642045, + "y": 5.30149, + "errorLower": 5.2869717000000005, + "errorUpper": 5.3160083, + "yFit": 3.4757604737072643, + "residuals": -125.75367131776696 + }, + { + "dlam": null, + "dx": 0.00310777, + "dy": 0.0131602, + "lam": null, + "x": 0.0667726, + "y": 4.52106, + "errorLower": 4.507899800000001, + "errorUpper": 4.5342202, + "yFit": 2.2910574956884084, + "residuals": -169.4505025996255 + }, + { + "dlam": null, + "dx": 0.00317865, + "dy": 0.0120429, + "lam": null, + "x": 0.0694435, + "y": 3.93014, + "errorLower": 3.9180971, + "errorUpper": 3.9421829, + "yFit": 1.1776951805548224, + "residuals": -228.55332348895845 + }, + { + "dlam": null, + "dx": 0.00323071, + "dy": 0.0112192, + "lam": null, + "x": 0.0722213, + "y": 3.49251, + "errorLower": 3.4812907999999996, + "errorUpper": 3.5037292, + "yFit": 0.5600044095230652, + "residuals": -261.38277154136966 + }, + { + "dlam": null, + "dx": 0.00329721, + "dy": 0.0105821, + "lam": null, + "x": 0.0751101, + "y": 3.18734, + "errorLower": 3.1767578999999997, + "errorUpper": 3.1979221, + "yFit": 0.5263028657314547, + "residuals": -251.46588430165514 + }, + { + "dlam": null, + "dx": 0.00336836, + "dy": 0.0100843, + "lam": null, + "x": 0.0781145, + "y": 2.92726, + "errorLower": 2.9171757, + "errorUpper": 2.9373443, + "yFit": 0.8987631419722563, + "residuals": -201.1539579373624 + }, + { + "dlam": null, + "dx": 0.00345727, + "dy": 0.00955912, + "lam": null, + "x": 0.0812391, + "y": 2.64566, + "errorLower": 2.63610088, + "errorUpper": 2.65521912, + "yFit": 1.1896069965962524, + "residuals": -152.32082068263057 + }, + { + "dlam": null, + "dx": 0.0035437, + "dy": 0.00901861, + "lam": null, + "x": 0.0844887, + "y": 2.37452, + "errorLower": 2.36550139, + "errorUpper": 2.38353861, + "yFit": 1.1170175086363778, + "residuals": -139.43418014124373 + }, + { + "dlam": null, + "dx": 0.00362227, + "dy": 0.00853411, + "lam": null, + "x": 0.0878682, + "y": 2.13092, + "errorLower": 2.1223858900000003, + "errorUpper": 2.13945411, + "yFit": 0.7375118985760059, + "residuals": -163.2751512956822 + }, + { + "dlam": null, + "dx": 0.0036993, + "dy": 0.00801442, + "lam": null, + "x": 0.091383, + "y": 1.93426, + "errorLower": 1.92624558, + "errorUpper": 1.9422744200000002, + "yFit": 0.34518041662814325, + "residuals": -198.2775526328614 + }, + { + "dlam": null, + "dx": 0.00374223, + "dy": 0.00759625, + "lam": null, + "x": 0.0950383, + "y": 1.7841, + "errorLower": 1.77650375, + "errorUpper": 1.79169625, + "yFit": 0.21212960236793044, + "residuals": -206.94031892474177 + }, + { + "dlam": null, + "dx": 0.00381774, + "dy": 0.00721554, + "lam": null, + "x": 0.0988398, + "y": 1.65305, + "errorLower": 1.6458344599999999, + "errorUpper": 1.66026554, + "yFit": 0.3305050582112544, + "residuals": -183.29119397699208 + }, + { + "dlam": null, + "dx": 0.00388979, + "dy": 0.00691554, + "lam": null, + "x": 0.102793, + "y": 1.52134, + "errorLower": 1.5144244599999999, + "errorUpper": 1.52825554, + "yFit": 0.4530306688678962, + "residuals": -154.47952453924114 + }, + { + "dlam": null, + "dx": 0.00396133, + "dy": 0.0066253, + "lam": null, + "x": 0.106905, + "y": 1.40698, + "errorLower": 1.4003546999999998, + "errorUpper": 1.4136053, + "yFit": 0.38912781050128376, + "residuals": -153.63110945900056 + }, + { + "dlam": null, + "dx": 0.0040448, + "dy": 0.00633815, + "lam": null, + "x": 0.111181, + "y": 1.28636, + "errorLower": 1.28002185, + "errorUpper": 1.2926981499999999, + "yFit": 0.20757031599786563, + "residuals": -170.20576729836534 + }, + { + "dlam": null, + "dx": 0.00412381, + "dy": 0.00611845, + "lam": null, + "x": 0.115629, + "y": 1.19797, + "errorLower": 1.19185155, + "errorUpper": 1.20408845, + "yFit": 0.11368599530182577, + "residuals": -177.21547200650068 + }, + { + "dlam": null, + "dx": 0.00420457, + "dy": 0.00589653, + "lam": null, + "x": 0.120254, + "y": 1.12096, + "errorLower": 1.11506347, + "errorUpper": 1.12685653, + "yFit": 0.16208829371310413, + "residuals": -162.61626859981988 + }, + { + "dlam": null, + "dx": 0.00427869, + "dy": 0.00572062, + "lam": null, + "x": 0.125064, + "y": 1.05444, + "errorLower": 1.04871938, + "errorUpper": 1.06016062, + "yFit": 0.2059896036114229, + "residuals": -148.31441284136633 + }, + { + "dlam": null, + "dx": 0.00438243, + "dy": 0.00560039, + "lam": null, + "x": 0.130066, + "y": 0.982053, + "errorLower": 0.9764526099999999, + "errorUpper": 0.98765339, + "yFit": 0.14450378690903282, + "residuals": -149.5519442558406 + }, + { + "dlam": null, + "dx": 0.00449707, + "dy": 0.00551959, + "lam": null, + "x": 0.135269, + "y": 0.930887, + "errorLower": 0.92536741, + "errorUpper": 0.93640659, + "yFit": 0.07212216366138106, + "residuals": -155.58489604094126 + }, + { + "dlam": null, + "dx": 0.00460143, + "dy": 0.00546427, + "lam": null, + "x": 0.14068, + "y": 0.882886, + "errorLower": 0.8774217299999999, + "errorUpper": 0.88835027, + "yFit": 0.08222562739010415, + "residuals": -146.526502645348 + }, + { + "dlam": null, + "dx": 0.00471315, + "dy": 0.00543486, + "lam": null, + "x": 0.146307, + "y": 0.846909, + "errorLower": 0.84147414, + "errorUpper": 0.8523438600000001, + "yFit": 0.10453116476014196, + "residuals": -136.59557656312361 + }, + { + "dlam": null, + "dx": 0.00482935, + "dy": 0.00541176, + "lam": null, + "x": 0.152159, + "y": 0.795072, + "errorLower": 0.78966024, + "errorUpper": 0.80048376, + "yFit": 0.06923038387359784, + "residuals": -134.12302395642124 + }, + { + "dlam": null, + "dx": 0.00494456, + "dy": 0.00543268, + "lam": null, + "x": 0.158246, + "y": 0.765342, + "errorLower": 0.75990932, + "errorUpper": 0.7707746799999999, + "yFit": 0.04210502637856247, + "residuals": -133.12710736164058 + }, + { + "dlam": null, + "dx": 0.00506276, + "dy": 0.00544301, + "lam": null, + "x": 0.164576, + "y": 0.725141, + "errorLower": 0.71969799, + "errorUpper": 0.7305840100000001, + "yFit": 0.05651901388674973, + "residuals": -122.84048460562268 + }, + { + "dlam": null, + "dx": 0.00519308, + "dy": 0.00556163, + "lam": null, + "x": 0.171159, + "y": 0.69475, + "errorLower": 0.68918837, + "errorUpper": 0.70031163, + "yFit": 0.04929943214299541, + "residuals": -116.05420854264031 + }, + { + "dlam": null, + "dx": 0.00532144, + "dy": 0.00568705, + "lam": null, + "x": 0.178005, + "y": 0.664438, + "errorLower": 0.65875095, + "errorUpper": 0.67012505, + "yFit": 0.027006186998035895, + "residuals": -112.08479141241313 + }, + { + "dlam": null, + "dx": 0.00544726, + "dy": 0.00589887, + "lam": null, + "x": 0.185125, + "y": 0.640604, + "errorLower": 0.63470513, + "errorUpper": 0.64650287, + "yFit": 0.03336437077499559, + "residuals": -102.94168700530855 + }, + { + "dlam": null, + "dx": 0.00558291, + "dy": 0.00622744, + "lam": null, + "x": 0.19253, + "y": 0.625173, + "errorLower": 0.61894556, + "errorUpper": 0.63140044, + "yFit": 0.030579179024976828, + "residuals": -95.47965471767262 + }, + { + "dlam": null, + "dx": 0.00570866, + "dy": 0.00663393, + "lam": null, + "x": 0.200231, + "y": 0.5956, + "errorLower": 0.58896607, + "errorUpper": 0.60223393, + "yFit": 0.018484793892093624, + "residuals": -86.99446724760531 + }, + { + "dlam": null, + "dx": 0.00583848, + "dy": 0.00724923, + "lam": null, + "x": 0.208241, + "y": 0.582752, + "errorLower": 0.57550277, + "errorUpper": 0.59000123, + "yFit": 0.02272011331185366, + "residuals": -77.25398237994193 + }, + { + "dlam": null, + "dx": 0.00595692, + "dy": 0.00810892, + "lam": null, + "x": 0.21657, + "y": 0.571269, + "errorLower": 0.5631600800000001, + "errorUpper": 0.57937792, + "yFit": 0.016528860267945124, + "residuals": -68.41110033543985 + }, + { + "dlam": null, + "dx": 0.00607578, + "dy": 0.00929792, + "lam": null, + "x": 0.225233, + "y": 0.563012, + "errorLower": 0.55371408, + "errorUpper": 0.5723099199999999, + "yFit": 0.014281626890903707, + "residuals": -59.016465307197336 + }, + { + "dlam": null, + "dx": 0.00621921, + "dy": 0.010755, + "lam": null, + "x": 0.234242, + "y": 0.539121, + "errorLower": 0.528366, + "errorUpper": 0.5498759999999999, + "yFit": 0.014109910467660195, + "residuals": -48.81553598627055 + }, + { + "dlam": null, + "dx": 0.00636952, + "dy": 0.0125021, + "lam": null, + "x": 0.243612, + "y": 0.511661, + "errorLower": 0.4991589, + "errorUpper": 0.5241631, + "yFit": 0.010560545080817281, + "residuals": -40.08130273467519 + }, + { + "dlam": null, + "dx": 0.00613893, + "dy": 0.0181216, + "lam": null, + "x": 0.251694, + "y": 0.520131, + "errorLower": 0.5020094, + "errorUpper": 0.5382526, + "yFit": 0.011034074904657878, + "residuals": -28.093376142026205 + } + ], + 'sas_result_fit': [ + { + "residuals": 189.80820795116674, + "x": 0.00714, + "y": 594.7156752091166 + }, + { + "residuals": 249.57214796754653, + "x": 0.0074256, + "y": 628.1034648613285 + }, + { + "residuals": 294.68651982023516, + "x": 0.00772262, + "y": 664.9377380458241 + }, + { + "residuals": 356.26090241991335, + "x": 0.00803153, + "y": 704.0209311986553 + }, + { + "residuals": 441.9733665111284, + "x": 0.00835279, + "y": 745.5609303524525 + }, + { + "residuals": 532.8506989226908, + "x": 0.0086869, + "y": 787.8436630053666 + }, + { + "residuals": 619.8284838653958, + "x": 0.00903438, + "y": 833.7939188865907 + }, + { + "residuals": 724.2535431779656, + "x": 0.00939575, + "y": 881.0434283593453 + }, + { + "residuals": 783.969299606668, + "x": 0.00977158, + "y": 929.1405989885193 + }, + { + "residuals": 876.2061724547718, + "x": 0.0101624, + "y": 980.3772408976719 + }, + { + "residuals": 969.2555817956685, + "x": 0.0105689, + "y": 1030.4215667412864 + }, + { + "residuals": 1045.6504342434473, + "x": 0.0109917, + "y": 1079.3556824902878 + }, + { + "residuals": 1134.132148816325, + "x": 0.0114314, + "y": 1126.453775028181 + }, + { + "residuals": 1244.1458376742771, + "x": 0.0118886, + "y": 1167.5684621522319 + }, + { + "residuals": 1285.2309300659629, + "x": 0.0123642, + "y": 1202.112317621233 + }, + { + "residuals": 1330.2794284898273, + "x": 0.0128587, + "y": 1227.7696865785122 + }, + { + "residuals": 1329.1491039832874, + "x": 0.0133731, + "y": 1243.0094275779782 + }, + { + "residuals": 1299.832212356443, + "x": 0.013908, + "y": 1246.1857101358723 + }, + { + "residuals": 1200.4033966652034, + "x": 0.0144643, + "y": 1233.9666897964098 + }, + { + "residuals": 1075.6596622262794, + "x": 0.0150429, + "y": 1206.3907504158715 + }, + { + "residuals": 915.7489003774563, + "x": 0.0156446, + "y": 1165.0768651812634 + }, + { + "residuals": 712.9031792552818, + "x": 0.0162704, + "y": 1105.847156450134 + }, + { + "residuals": 500.9672493617777, + "x": 0.0169212, + "y": 1029.75619833087 + }, + { + "residuals": 282.411677368031, + "x": 0.0175981, + "y": 940.9165765484569 + }, + { + "residuals": 67.8388261557796, + "x": 0.018302, + "y": 841.7114391564263 + }, + { + "residuals": -126.98557043133316, + "x": 0.0190341, + "y": 736.7364242439793 + }, + { + "residuals": -295.17121290559663, + "x": 0.0197954, + "y": 624.8305891347636 + }, + { + "residuals": -423.2796644520683, + "x": 0.0205873, + "y": 517.7287382740686 + }, + { + "residuals": -517.0205489652773, + "x": 0.0214107, + "y": 417.42508393303734 + }, + { + "residuals": -563.5051061228497, + "x": 0.0222672, + "y": 327.71996959657736 + }, + { + "residuals": -575.5285713047549, + "x": 0.0231579, + "y": 250.13900151053926 + }, + { + "residuals": -563.648626359319, + "x": 0.0240842, + "y": 184.8421981090658 + }, + { + "residuals": -529.6028236023687, + "x": 0.0250475, + "y": 132.19872388016105 + }, + { + "residuals": -504.5876842081959, + "x": 0.0260494, + "y": 90.91124383355539 + }, + { + "residuals": -494.53370079448354, + "x": 0.0270914, + "y": 56.234826621458275 + }, + { + "residuals": -491.2347994502949, + "x": 0.0281751, + "y": 34.58145206268919 + }, + { + "residuals": -501.9835912099142, + "x": 0.0293021, + "y": 20.770238179186027 + }, + { + "residuals": -511.8189835406411, + "x": 0.0304742, + "y": 12.505942974822046 + }, + { + "residuals": -496.3396240310357, + "x": 0.0316931, + "y": 10.7252045358092 + }, + { + "residuals": -463.3132955178918, + "x": 0.0329609, + "y": 12.622188153165856 + }, + { + "residuals": -417.46367586524434, + "x": 0.0342793, + "y": 16.836891823389934 + }, + { + "residuals": -362.65119246048465, + "x": 0.0356505, + "y": 21.3498645864527 + }, + { + "residuals": -309.47148852407184, + "x": 0.0370765, + "y": 24.98386593987589 + }, + { + "residuals": -264.1828235619874, + "x": 0.0385595, + "y": 26.409891253395084 + }, + { + "residuals": -228.86391494938047, + "x": 0.0401019, + "y": 25.443067111121852 + }, + { + "residuals": -204.5631552968426, + "x": 0.041706, + "y": 22.31244728454257 + }, + { + "residuals": -198.45778305921576, + "x": 0.0433742, + "y": 17.66628478054633 + }, + { + "residuals": -220.9236126637759, + "x": 0.0451092, + "y": 12.48008994959975 + }, + { + "residuals": -265.73174635750587, + "x": 0.0469136, + "y": 7.699263224961208 + }, + { + "residuals": -329.45828072117115, + "x": 0.0487901, + "y": 3.8645861384283373 + }, + { + "residuals": -369.27027772452607, + "x": 0.0507417, + "y": 1.8611969330584426 + }, + { + "residuals": -370.7152185614437, + "x": 0.0527714, + "y": 1.4196773595821721 + }, + { + "residuals": -323.52636282022627, + "x": 0.0548822, + "y": 2.1101023242948878 + }, + { + "residuals": -249.5239715465852, + "x": 0.0570775, + "y": 3.2444428948983135 + }, + { + "residuals": -175.41302045807973, + "x": 0.0593606, + "y": 4.099096700118251 + }, + { + "residuals": -128.4509373802095, + "x": 0.0617351, + "y": 4.195065775330769 + }, + { + "residuals": -125.75367131776696, + "x": 0.0642045, + "y": 3.4757604737072643 + }, + { + "residuals": -169.4505025996255, + "x": 0.0667726, + "y": 2.2910574956884084 + }, + { + "residuals": -228.55332348895845, + "x": 0.0694435, + "y": 1.1776951805548224 + }, + { + "residuals": -261.38277154136966, + "x": 0.0722213, + "y": 0.5600044095230652 + }, + { + "residuals": -251.46588430165514, + "x": 0.0751101, + "y": 0.5263028657314547 + }, + { + "residuals": -201.1539579373624, + "x": 0.0781145, + "y": 0.8987631419722563 + }, + { + "residuals": -152.32082068263057, + "x": 0.0812391, + "y": 1.1896069965962524 + }, + { + "residuals": -139.43418014124373, + "x": 0.0844887, + "y": 1.1170175086363778 + }, + { + "residuals": -163.2751512956822, + "x": 0.0878682, + "y": 0.7375118985760059 + }, + { + "residuals": -198.2775526328614, + "x": 0.091383, + "y": 0.34518041662814325 + }, + { + "residuals": -206.94031892474177, + "x": 0.0950383, + "y": 0.21212960236793044 + }, + { + "residuals": -183.29119397699208, + "x": 0.0988398, + "y": 0.3305050582112544 + }, + { + "residuals": -154.47952453924114, + "x": 0.102793, + "y": 0.4530306688678962 + }, + { + "residuals": -153.63110945900056, + "x": 0.106905, + "y": 0.38912781050128376 + }, + { + "residuals": -170.20576729836534, + "x": 0.111181, + "y": 0.20757031599786563 + }, + { + "residuals": -177.21547200650068, + "x": 0.115629, + "y": 0.11368599530182577 + }, + { + "residuals": -162.61626859981988, + "x": 0.120254, + "y": 0.16208829371310413 + }, + { + "residuals": -148.31441284136633, + "x": 0.125064, + "y": 0.2059896036114229 + }, + { + "residuals": -149.5519442558406, + "x": 0.130066, + "y": 0.14450378690903282 + }, + { + "residuals": -155.58489604094126, + "x": 0.135269, + "y": 0.07212216366138106 + }, + { + "residuals": -146.526502645348, + "x": 0.14068, + "y": 0.08222562739010415 + }, + { + "residuals": -136.59557656312361, + "x": 0.146307, + "y": 0.10453116476014196 + }, + { + "residuals": -134.12302395642124, + "x": 0.152159, + "y": 0.06923038387359784 + }, + { + "residuals": -133.12710736164058, + "x": 0.158246, + "y": 0.04210502637856247 + }, + { + "residuals": -122.84048460562268, + "x": 0.164576, + "y": 0.05651901388674973 + }, + { + "residuals": -116.05420854264031, + "x": 0.171159, + "y": 0.04929943214299541 + }, + { + "residuals": -112.08479141241313, + "x": 0.178005, + "y": 0.027006186998035895 + }, + { + "residuals": -102.94168700530855, + "x": 0.185125, + "y": 0.03336437077499559 + }, + { + "residuals": -95.47965471767262, + "x": 0.19253, + "y": 0.030579179024976828 + }, + { + "residuals": -86.99446724760531, + "x": 0.200231, + "y": 0.018484793892093624 + }, + { + "residuals": -77.25398237994193, + "x": 0.208241, + "y": 0.02272011331185366 + }, + { + "residuals": -68.41110033543985, + "x": 0.21657, + "y": 0.016528860267945124 + }, + { + "residuals": -59.016465307197336, + "x": 0.225233, + "y": 0.014281626890903707 + }, + { + "residuals": -48.81553598627055, + "x": 0.234242, + "y": 0.014109910467660195 + }, + { + "residuals": -40.08130273467519, + "x": 0.243612, + "y": 0.010560545080817281 + }, + { + "residuals": -28.093376142026205, + "x": 0.251694, + "y": 0.011034074904657878 + } + ] +}; -export const DATA_2: Array> = [ - { - "dlam": null, - "dx": 0.00144239, - "dy": 1.93973, - "lam": null, - "x": 0.00714, - "y": 226.539, - "errorLower": 224.59927, - "errorUpper": 228.47872999999998, - "yFit": 201.14353025229178, - "residuals": -13.092270443674225 - }, - { - "dlam": null, - "dx": 0.00147496, - "dy": 1.62915, - "lam": null, - "x": 0.0074256, - "y": 221.513, - "errorLower": 219.88385, - "errorUpper": 223.14215000000002, - "yFit": 205.29092895461838, - "residuals": -9.957383325894869 - }, - { - "dlam": null, - "dx": 0.0015166, - "dy": 1.48514, - "lam": null, - "x": 0.00772262, - "y": 227.287, - "errorLower": 225.80186, - "errorUpper": 228.77214, - "yFit": 209.91500495032528, - "residuals": -11.697210397453926 - }, - { - "dlam": null, - "dx": 0.00155158, - "dy": 1.3466, - "lam": null, - "x": 0.00803153, - "y": 224.28, - "errorLower": 222.9334, - "errorUpper": 225.6266, - "yFit": 214.89112069310778, - "residuals": -6.9722852420111545 - }, - { - "dlam": null, - "dx": 0.00159088, - "dy": 1.18008, - "lam": null, - "x": 0.00835279, - "y": 223.997, - "errorLower": 222.81692, - "errorUpper": 225.17708000000002, - "yFit": 220.3039218068919, - "residuals": -3.1295151117789533 - }, - { - "dlam": null, - "dx": 0.00162593, - "dy": 1.05878, - "lam": null, - "x": 0.0086869, - "y": 223.672, - "errorLower": 222.61321999999998, - "errorUpper": 224.73078, - "yFit": 225.99658853940122, - "residuals": 2.1955349925397334 - }, - { - "dlam": null, - "dx": 0.00168048, - "dy": 0.976591, - "lam": null, - "x": 0.00903438, - "y": 228.475, - "errorLower": 227.49840899999998, - "errorUpper": 229.451591, - "yFit": 232.5069590271238, - "residuals": 4.128605554550272 - }, - { - "dlam": null, - "dx": 0.00170509, - "dy": 0.900282, - "lam": null, - "x": 0.00939575, - "y": 229.011, - "errorLower": 228.110718, - "errorUpper": 229.911282, - "yFit": 239.50715770388211, - "residuals": 11.658744375520246 - }, - { - "dlam": null, - "dx": 0.00172049, - "dy": 0.884191, - "lam": null, - "x": 0.00977158, - "y": 235.962, - "errorLower": 235.077809, - "errorUpper": 236.84619099999998, - "yFit": 246.94541642627374, - "residuals": 12.421995277348163 - }, - { - "dlam": null, - "dx": 0.00171975, - "dy": 0.84357, - "lam": null, - "x": 0.0101624, - "y": 241.236, - "errorLower": 240.39243, - "errorUpper": 242.07957, - "yFit": 255.55189788360858, - "residuals": 16.97061048117949 - }, - { - "dlam": null, - "dx": 0.00173361, - "dy": 0.807803, - "lam": null, - "x": 0.0105689, - "y": 247.454, - "errorLower": 246.646197, - "errorUpper": 248.26180300000001, - "yFit": 265.05280306369554, - "residuals": 21.78600854873716 - }, - { - "dlam": null, - "dx": 0.00176472, - "dy": 0.787324, - "lam": null, - "x": 0.0109917, - "y": 256.09, - "errorLower": 255.30267599999996, - "errorUpper": 256.877324, - "yFit": 275.9285406128905, - "residuals": 25.19742902907893 - }, - { - "dlam": null, - "dx": 0.00182598, - "dy": 0.755671, - "lam": null, - "x": 0.0114314, - "y": 269.423, - "errorLower": 268.667329, - "errorUpper": 270.178671, - "yFit": 288.4439970905856, - "residuals": 25.171003109270544 - }, - { - "dlam": null, - "dx": 0.00187949, - "dy": 0.711765, - "lam": null, - "x": 0.0118886, - "y": 282.029, - "errorLower": 281.317235, - "errorUpper": 282.740765, - "yFit": 303.0494737433603, - "residuals": 29.532884791132325 - }, - { - "dlam": null, - "dx": 0.00193137, - "dy": 0.704532, - "lam": null, - "x": 0.0123642, - "y": 296.626, - "errorLower": 295.921468, - "errorUpper": 297.33053199999995, - "yFit": 320.1354748800009, - "residuals": 33.368924165262804 - }, - { - "dlam": null, - "dx": 0.00198554, - "dy": 0.68349, - "lam": null, - "x": 0.0128587, - "y": 318.537, - "errorLower": 317.85350999999997, - "errorUpper": 319.22049, - "yFit": 340.4403231168381, - "residuals": 32.04629638595755 - }, - { - "dlam": null, - "dx": 0.00203315, - "dy": 0.675291, - "lam": null, - "x": 0.0133731, - "y": 345.447, - "errorLower": 344.771709, - "errorUpper": 346.122291, - "yFit": 364.6927180229718, - "residuals": 28.499888230365578 - }, - { - "dlam": null, - "dx": 0.00208813, - "dy": 0.668046, - "lam": null, - "x": 0.013908, - "y": 377.838, - "errorLower": 377.169954, - "errorUpper": 378.506046, - "yFit": 394.82096275423146, - "residuals": 25.42184633128772 - }, - { - "dlam": null, - "dx": 0.00213326, - "dy": 0.678959, - "lam": null, - "x": 0.0144643, - "y": 418.942, - "errorLower": 418.263041, - "errorUpper": 419.620959, - "yFit": 430.58647704056506, - "residuals": 17.150486318857325 - }, - { - "dlam": null, - "dx": 0.00217358, - "dy": 0.686981, - "lam": null, - "x": 0.0150429, - "y": 467.433, - "errorLower": 466.746019, - "errorUpper": 468.119981, - "yFit": 473.4856799870963, - "residuals": 8.81054932683193 - }, - { - "dlam": null, - "dx": 0.00220131, - "dy": 0.703031, - "lam": null, - "x": 0.0156446, - "y": 521.277, - "errorLower": 520.573969, - "errorUpper": 521.980031, - "yFit": 523.1523485819362, - "residuals": 2.6675190452997426 - }, - { - "dlam": null, - "dx": 0.00222531, - "dy": 0.727639, - "lam": null, - "x": 0.0162704, - "y": 587.111, - "errorLower": 586.383361, - "errorUpper": 587.838639, - "yFit": 582.6980418266448, - "residuals": -6.0647631220359965 - }, - { - "dlam": null, - "dx": 0.00226428, - "dy": 0.744067, - "lam": null, - "x": 0.0169212, - "y": 657.003, - "errorLower": 656.2589330000001, - "errorUpper": 657.747067, - "yFit": 647.7761859351956, - "residuals": -12.40051509447999 - }, - { - "dlam": null, - "dx": 0.00227136, - "dy": 0.754121, - "lam": null, - "x": 0.0175981, - "y": 727.944, - "errorLower": 727.1898789999999, - "errorUpper": 728.698121, - "yFit": 716.3590854441541, - "residuals": -15.362142886679854 - }, - { - "dlam": null, - "dx": 0.00228228, - "dy": 0.762387, - "lam": null, - "x": 0.018302, - "y": 789.992, - "errorLower": 789.229613, - "errorUpper": 790.754387, - "yFit": 780.0094966301884, - "residuals": -13.093748148658785 - }, - { - "dlam": null, - "dx": 0.00229589, - "dy": 0.750767, - "lam": null, - "x": 0.0190341, - "y": 832.073, - "errorLower": 831.322233, - "errorUpper": 832.823767, - "yFit": 831.4532497483467, - "residuals": -0.8254894683081067 - }, - { - "dlam": null, - "dx": 0.00231852, - "dy": 0.728338, - "lam": null, - "x": 0.0197954, - "y": 839.815, - "errorLower": 839.086662, - "errorUpper": 840.5433380000001, - "yFit": 856.0375098932918, - "residuals": 22.27332624865347 - }, - { - "dlam": null, - "dx": 0.00233235, - "dy": 0.680064, - "lam": null, - "x": 0.0205873, - "y": 805.586, - "errorLower": 804.905936, - "errorUpper": 806.266064, - "yFit": 841.6339851278051, - "residuals": 53.00675396404615 - }, - { - "dlam": null, - "dx": 0.00237326, - "dy": 0.609523, - "lam": null, - "x": 0.0214107, - "y": 732.561, - "errorLower": 731.9514770000001, - "errorUpper": 733.170523, - "yFit": 779.4148516431798, - "residuals": 76.8697024446653 - }, - { - "dlam": null, - "dx": 0.00244917, - "dy": 0.525037, - "lam": null, - "x": 0.0222672, - "y": 623.581, - "errorLower": 623.055963, - "errorUpper": 624.106037, - "yFit": 674.3709350051355, - "residuals": 96.7359157642899 - }, - { - "dlam": null, - "dx": 0.00254252, - "dy": 0.431254, - "lam": null, - "x": 0.0231579, - "y": 498.338, - "errorLower": 497.906746, - "errorUpper": 498.76925400000005, - "yFit": 546.3272232223003, - "residuals": 111.27832604984594 - }, - { - "dlam": null, - "dx": 0.00263583, - "dy": 0.345621, - "lam": null, - "x": 0.0240842, - "y": 379.651, - "errorLower": 379.305379, - "errorUpper": 379.996621, - "yFit": 415.3683240557716, - "residuals": 103.34245909759997 - }, - { - "dlam": null, - "dx": 0.00274294, - "dy": 0.275152, - "lam": null, - "x": 0.0250475, - "y": 277.92, - "errorLower": 277.644848, - "errorUpper": 278.195152, - "yFit": 297.1199388123701, - "residuals": 69.77939034559108 - }, - { - "dlam": null, - "dx": 0.0028428, - "dy": 0.215742, - "lam": null, - "x": 0.0260494, - "y": 199.772, - "errorLower": 199.55625799999999, - "errorUpper": 199.987742, - "yFit": 199.8459305057949, - "residuals": 0.342680172590036 - }, - { - "dlam": null, - "dx": 0.00286564, - "dy": 0.172114, - "lam": null, - "x": 0.0270914, - "y": 141.351, - "errorLower": 141.178886, - "errorUpper": 141.523114, - "yFit": 117.60581121929866, - "residuals": -137.96198322449854 - }, - { - "dlam": null, - "dx": 0.00289349, - "dy": 0.138782, - "lam": null, - "x": 0.0281751, - "y": 102.756, - "errorLower": 102.617218, - "errorUpper": 102.894782, - "yFit": 65.09672067552056, - "residuals": -271.3556464417536 - }, - { - "dlam": null, - "dx": 0.00289295, - "dy": 0.114218, - "lam": null, - "x": 0.0293021, - "y": 78.1058, - "errorLower": 77.99158200000001, - "errorUpper": 78.220018, - "yFit": 34.66405990382478, - "residuals": -380.3405776337812 - }, - { - "dlam": null, - "dx": 0.00284193, - "dy": 0.0977755, - "lam": null, - "x": 0.0304742, - "y": 62.5493, - "errorLower": 62.451524500000005, - "errorUpper": 62.6470755, - "yFit": 19.47617953042686, - "residuals": -440.53081262251936 - }, - { - "dlam": null, - "dx": 0.0027452, - "dy": 0.0869322, - "lam": null, - "x": 0.0316931, - "y": 53.8731, - "errorLower": 53.7861678, - "errorUpper": 53.9600322, - "yFit": 19.674700372259792, - "residuals": -393.3916273571842 - }, - { - "dlam": null, - "dx": 0.0026771, - "dy": 0.0804389, - "lam": null, - "x": 0.0329609, - "y": 49.8906, - "errorLower": 49.8101611, - "errorUpper": 49.971038899999996, - "yFit": 25.742931197876572, - "residuals": -300.1988938451847 - }, - { - "dlam": null, - "dx": 0.00262863, - "dy": 0.0759295, - "lam": null, - "x": 0.0342793, - "y": 48.5347, - "errorLower": 48.4587705, - "errorUpper": 48.6106295, - "yFit": 34.50699547305281, - "residuals": -184.7464361934056 - }, - { - "dlam": null, - "dx": 0.00257297, - "dy": 0.0728817, - "lam": null, - "x": 0.0356505, - "y": 47.7805, - "errorLower": 47.7076183, - "errorUpper": 47.85338170000001, - "yFit": 43.336468550844366, - "residuals": -60.97595760191705 - }, - { - "dlam": null, - "dx": 0.00256056, - "dy": 0.0692472, - "lam": null, - "x": 0.0370765, - "y": 46.4139, - "errorLower": 46.3446528, - "errorUpper": 46.4831472, - "yFit": 50.29569450598411, - "residuals": 56.05706087732228 - }, - { - "dlam": null, - "dx": 0.00256325, - "dy": 0.0640746, - "lam": null, - "x": 0.0385595, - "y": 43.3373, - "errorLower": 43.2732254, - "errorUpper": 43.4013746, - "yFit": 52.54857686176571, - "residuals": 143.75863230930372 - }, - { - "dlam": null, - "dx": 0.00258859, - "dy": 0.0581762, - "lam": null, - "x": 0.0401019, - "y": 38.7575, - "errorLower": 38.6993238, - "errorUpper": 38.8156762, - "yFit": 49.17084478695563, - "residuals": 178.99664788961167 - }, - { - "dlam": null, - "dx": 0.002619, - "dy": 0.0513839, - "lam": null, - "x": 0.041706, - "y": 32.8237, - "errorLower": 32.772316100000005, - "errorUpper": 32.8750839, - "yFit": 40.66201519604856, - "residuals": 152.54418594245578 - }, - { - "dlam": null, - "dx": 0.00267382, - "dy": 0.0443289, - "lam": null, - "x": 0.0433742, - "y": 26.4637, - "errorLower": 26.4193711, - "errorUpper": 26.5080289, - "yFit": 29.247892177690073, - "residuals": 62.80760807712516 - }, - { - "dlam": null, - "dx": 0.00272568, - "dy": 0.0378276, - "lam": null, - "x": 0.0451092, - "y": 20.8371, - "errorLower": 20.7992724, - "errorUpper": 20.8749276, - "yFit": 18.045385245640112, - "residuals": -73.80100123613148 - }, - { - "dlam": null, - "dx": 0.00276587, - "dy": 0.0320347, - "lam": null, - "x": 0.0469136, - "y": 16.2119, - "errorLower": 16.1798653, - "errorUpper": 16.2439347, - "yFit": 9.421008071206717, - "residuals": -211.9855009971463 - }, - { - "dlam": null, - "dx": 0.00279571, - "dy": 0.0278154, - "lam": null, - "x": 0.0487901, - "y": 13.0286, - "errorLower": 13.000784600000001, - "errorUpper": 13.0564154, - "yFit": 4.010126934076892, - "residuals": -324.22589881587567 - }, - { - "dlam": null, - "dx": 0.00281708, - "dy": 0.0245709, - "lam": null, - "x": 0.0507417, - "y": 10.9345, - "errorLower": 10.9099291, - "errorUpper": 10.9590709, - "yFit": 2.629509671142825, - "residuals": -338.00106340659784 - }, - { - "dlam": null, - "dx": 0.00282959, - "dy": 0.0222794, - "lam": null, - "x": 0.0527714, - "y": 9.67899, - "errorLower": 9.6567106, - "errorUpper": 9.701269400000001, - "yFit": 3.7142178759054767, - "residuals": -267.7258868773182 - }, - { - "dlam": null, - "dx": 0.0028401, - "dy": 0.0206342, - "lam": null, - "x": 0.0548822, - "y": 8.78581, - "errorLower": 8.7651758, - "errorUpper": 8.8064442, - "yFit": 5.928369496267521, - "residuals": -138.4807990487869 - }, - { - "dlam": null, - "dx": 0.00286615, - "dy": 0.0191646, - "lam": null, - "x": 0.0570775, - "y": 8.02647, - "errorLower": 8.0073054, - "errorUpper": 8.0456346, - "yFit": 7.908606924391415, - "residuals": -6.150040992694081 - }, - { - "dlam": null, - "dx": 0.00290825, - "dy": 0.0176645, - "lam": null, - "x": 0.0593606, - "y": 7.19768, - "errorLower": 7.1800155, - "errorUpper": 7.2153445000000005, - "yFit": 8.50615678460269, - "residuals": 74.07380818040076 - }, - { - "dlam": null, - "dx": 0.00296442, - "dy": 0.0160657, - "lam": null, - "x": 0.0617351, - "y": 6.25872, - "errorLower": 6.2426543, - "errorUpper": 6.274785700000001, - "yFit": 7.306715195960211, - "residuals": 65.23184149836055 - }, - { - "dlam": null, - "dx": 0.00303237, - "dy": 0.0145183, - "lam": null, - "x": 0.0642045, - "y": 5.30149, - "errorLower": 5.2869717000000005, - "errorUpper": 5.3160083, - "yFit": 4.919605893160927, - "residuals": -26.30363794928284 - }, - { - "dlam": null, - "dx": 0.00310777, - "dy": 0.0131602, - "lam": null, - "x": 0.0667726, - "y": 4.52106, - "errorLower": 4.507899800000001, - "errorUpper": 4.5342202, - "yFit": 2.5522299195214138, - "residuals": -149.6048753422126 - }, - { - "dlam": null, - "dx": 0.00317865, - "dy": 0.0120429, - "lam": null, - "x": 0.0694435, - "y": 3.93014, - "errorLower": 3.9180971, - "errorUpper": 3.9421829, - "yFit": 1.1723355604393952, - "residuals": -228.99836746635816 - }, - { - "dlam": null, - "dx": 0.00323071, - "dy": 0.0112192, - "lam": null, - "x": 0.0722213, - "y": 3.49251, - "errorLower": 3.4812907999999996, - "errorUpper": 3.5037292, - "yFit": 1.0187868672135822, - "residuals": -220.49015373524114 - }, - { - "dlam": null, - "dx": 0.00329721, - "dy": 0.0105821, - "lam": null, - "x": 0.0751101, - "y": 3.18734, - "errorLower": 3.1767578999999997, - "errorUpper": 3.1979221, - "yFit": 1.6583626814881005, - "residuals": -144.48713568307795 - }, - { - "dlam": null, - "dx": 0.00336836, - "dy": 0.0100843, - "lam": null, - "x": 0.0781145, - "y": 2.92726, - "errorLower": 2.9171757, - "errorUpper": 2.9373443, - "yFit": 2.301034585915579, - "residuals": -62.09904644689476 - }, - { - "dlam": null, - "dx": 0.00345727, - "dy": 0.00955912, - "lam": null, - "x": 0.0812391, - "y": 2.64566, - "errorLower": 2.63610088, - "errorUpper": 2.65521912, - "yFit": 2.2519271719461833, - "residuals": -41.18923374262658 - }, - { - "dlam": null, - "dx": 0.0035437, - "dy": 0.00901861, - "lam": null, - "x": 0.0844887, - "y": 2.37452, - "errorLower": 2.36550139, - "errorUpper": 2.38353861, - "yFit": 1.5338239887831873, - "residuals": -93.2179139819565 - }, - { - "dlam": null, - "dx": 0.00362227, - "dy": 0.00853411, - "lam": null, - "x": 0.0878682, - "y": 2.13092, - "errorLower": 2.1223858900000003, - "errorUpper": 2.13945411, - "yFit": 0.7324378945971008, - "residuals": -163.869707023099 - }, - { - "dlam": null, - "dx": 0.0036993, - "dy": 0.00801442, - "lam": null, - "x": 0.091383, - "y": 1.93426, - "errorLower": 1.92624558, - "errorUpper": 1.9422744200000002, - "yFit": 0.41294586846352865, - "residuals": -189.82211208502568 - }, - { - "dlam": null, - "dx": 0.00374223, - "dy": 0.00759625, - "lam": null, - "x": 0.0950383, - "y": 1.7841, - "errorLower": 1.77650375, - "errorUpper": 1.79169625, - "yFit": 0.6075042862972029, - "residuals": -154.8916522893266 - }, - { - "dlam": null, - "dx": 0.00381774, - "dy": 0.00721554, - "lam": null, - "x": 0.0988398, - "y": 1.65305, - "errorLower": 1.6458344599999999, - "errorUpper": 1.66026554, - "yFit": 0.8674813601021584, - "residuals": -108.87177396256435 - }, - { - "dlam": null, - "dx": 0.00388979, - "dy": 0.00691554, - "lam": null, - "x": 0.102793, - "y": 1.52134, - "errorLower": 1.5144244599999999, - "errorUpper": 1.52825554, - "yFit": 0.7820565832561379, - "residuals": -106.90176280433082 - }, - { - "dlam": null, - "dx": 0.00396133, - "dy": 0.0066253, - "lam": null, - "x": 0.106905, - "y": 1.40698, - "errorLower": 1.4003546999999998, - "errorUpper": 1.4136053, - "yFit": 0.43466472907895076, - "residuals": -146.75792355380878 - }, - { - "dlam": null, - "dx": 0.0040448, - "dy": 0.00633815, - "lam": null, - "x": 0.111181, - "y": 1.28636, - "errorLower": 1.28002185, - "errorUpper": 1.2926981499999999, - "yFit": 0.22469200511260526, - "residuals": -167.50439716437677 - }, - { - "dlam": null, - "dx": 0.00412381, - "dy": 0.00611845, - "lam": null, - "x": 0.115629, - "y": 1.19797, - "errorLower": 1.19185155, - "errorUpper": 1.20408845, - "yFit": 0.2983223548590445, - "residuals": -147.0384893463141 - }, - { - "dlam": null, - "dx": 0.00420457, - "dy": 0.00589653, - "lam": null, - "x": 0.120254, - "y": 1.12096, - "errorLower": 1.11506347, - "errorUpper": 1.12685653, - "yFit": 0.3957314919412212, - "residuals": -122.99242233292782 - }, - { - "dlam": null, - "dx": 0.00427869, - "dy": 0.00572062, - "lam": null, - "x": 0.125064, - "y": 1.05444, - "errorLower": 1.04871938, - "errorUpper": 1.06016062, - "yFit": 0.29439787476376233, - "residuals": -132.86009649937205 - }, - { - "dlam": null, - "dx": 0.00438243, - "dy": 0.00560039, - "lam": null, - "x": 0.130066, - "y": 0.982053, - "errorLower": 0.9764526099999999, - "errorUpper": 0.98765339, - "yFit": 0.145829763518179, - "residuals": -149.3151792074875 - }, - { - "dlam": null, - "dx": 0.00449707, - "dy": 0.00551959, - "lam": null, - "x": 0.135269, - "y": 0.930887, - "errorLower": 0.92536741, - "errorUpper": 0.93640659, - "yFit": 0.15144925047672253, - "residuals": -141.21297950088274 - }, - { - "dlam": null, - "dx": 0.00460143, - "dy": 0.00546427, - "lam": null, - "x": 0.14068, - "y": 0.882886, - "errorLower": 0.8774217299999999, - "errorUpper": 0.88835027, - "yFit": 0.2004025621276484, - "residuals": -124.89928899420262 - }, - { - "dlam": null, - "dx": 0.00471315, - "dy": 0.00543486, - "lam": null, - "x": 0.146307, - "y": 0.846909, - "errorLower": 0.84147414, - "errorUpper": 0.8523438600000001, - "yFit": 0.14068511451435764, - "residuals": -129.943344536132 - }, - { - "dlam": null, - "dx": 0.00482935, - "dy": 0.00541176, - "lam": null, - "x": 0.152159, - "y": 0.795072, - "errorLower": 0.78966024, - "errorUpper": 0.80048376, - "yFit": 0.08134491684832981, - "residuals": -131.8844670036495 - }, - { - "dlam": null, - "dx": 0.00494456, - "dy": 0.00543268, - "lam": null, - "x": 0.158246, - "y": 0.765342, - "errorLower": 0.75990932, - "errorUpper": 0.7707746799999999, - "yFit": 0.10493643934456855, - "residuals": -121.56165293288606 - }, - { - "dlam": null, - "dx": 0.00506276, - "dy": 0.00544301, - "lam": null, - "x": 0.164576, - "y": 0.725141, - "errorLower": 0.71969799, - "errorUpper": 0.7305840100000001, - "yFit": 0.09760787613025608, - "residuals": -115.29156181409623 - }, - { - "dlam": null, - "dx": 0.00519308, - "dy": 0.00556163, - "lam": null, - "x": 0.171159, - "y": 0.69475, - "errorLower": 0.68918837, - "errorUpper": 0.70031163, - "yFit": 0.05598979540953052, - "residuals": -114.85125846028403 - }, - { - "dlam": null, - "dx": 0.00532144, - "dy": 0.00568705, - "lam": null, - "x": 0.178005, - "y": 0.664438, - "errorLower": 0.65875095, - "errorUpper": 0.67012505, - "yFit": 0.06093374074595219, - "residuals": -106.11903522108085 - }, - { - "dlam": null, - "dx": 0.00544726, - "dy": 0.00589887, - "lam": null, - "x": 0.185125, - "y": 0.640604, - "errorLower": 0.63470513, - "errorUpper": 0.64650287, - "yFit": 0.06013423523978789, - "residuals": -98.40355267368362 - }, - { - "dlam": null, - "dx": 0.00558291, - "dy": 0.00622744, - "lam": null, - "x": 0.19253, - "y": 0.625173, - "errorLower": 0.61894556, - "errorUpper": 0.63140044, - "yFit": 0.03543541755226805, - "residuals": -94.69984174038319 - }, - { - "dlam": null, - "dx": 0.00570866, - "dy": 0.00663393, - "lam": null, - "x": 0.200231, - "y": 0.5956, - "errorLower": 0.58896607, - "errorUpper": 0.60223393, - "yFit": 0.041952553487281406, - "residuals": -83.4569322426855 - }, - { - "dlam": null, - "dx": 0.00583848, - "dy": 0.00724923, - "lam": null, - "x": 0.208241, - "y": 0.582752, - "errorLower": 0.57550277, - "errorUpper": 0.59000123, - "yFit": 0.03251384220228803, - "residuals": -75.90297973684268 - }, - { - "dlam": null, - "dx": 0.00595692, - "dy": 0.00810892, - "lam": null, - "x": 0.21657, - "y": 0.571269, - "errorLower": 0.5631600800000001, - "errorUpper": 0.57937792, - "yFit": 0.025545311891923213, - "residuals": -67.29918264184093 - }, - { - "dlam": null, - "dx": 0.00607578, - "dy": 0.00929792, - "lam": null, - "x": 0.225233, - "y": 0.563012, - "errorLower": 0.55371408, - "errorUpper": 0.5723099199999999, - "yFit": 0.026682603086302777, - "residuals": -57.68272870853882 - }, - { - "dlam": null, - "dx": 0.00621921, - "dy": 0.010755, - "lam": null, - "x": 0.234242, - "y": 0.539121, - "errorLower": 0.528366, - "errorUpper": 0.5498759999999999, - "yFit": 0.017911884923038544, - "residuals": -48.46202836605871 - }, - { - "dlam": null, - "dx": 0.00636952, - "dy": 0.0125021, - "lam": null, - "x": 0.243612, - "y": 0.511661, - "errorLower": 0.4991589, - "errorUpper": 0.5241631, - "yFit": 0.019076455196023627, - "residuals": -39.40014436006562 - }, - { - "dlam": null, - "dx": 0.00613893, - "dy": 0.0181216, - "lam": null, - "x": 0.251694, - "y": 0.520131, - "errorLower": 0.5020094, - "errorUpper": 0.5382526, - "yFit": 0.014018198100829875, - "residuals": -27.928703972009654 - } -]; +export const DATA_2: DataRecord = { + 'sas_result_data': [ + { + "dlam": null, + "dx": 0.00144239, + "dy": 1.93973, + "lam": null, + "x": 0.00714, + "y": 226.539, + "errorLower": 224.59927, + "errorUpper": 228.47872999999998, + "yFit": 201.14353025229178, + "residuals": -13.092270443674225 + }, + { + "dlam": null, + "dx": 0.00147496, + "dy": 1.62915, + "lam": null, + "x": 0.0074256, + "y": 221.513, + "errorLower": 219.88385, + "errorUpper": 223.14215000000002, + "yFit": 205.29092895461838, + "residuals": -9.957383325894869 + }, + { + "dlam": null, + "dx": 0.0015166, + "dy": 1.48514, + "lam": null, + "x": 0.00772262, + "y": 227.287, + "errorLower": 225.80186, + "errorUpper": 228.77214, + "yFit": 209.91500495032528, + "residuals": -11.697210397453926 + }, + { + "dlam": null, + "dx": 0.00155158, + "dy": 1.3466, + "lam": null, + "x": 0.00803153, + "y": 224.28, + "errorLower": 222.9334, + "errorUpper": 225.6266, + "yFit": 214.89112069310778, + "residuals": -6.9722852420111545 + }, + { + "dlam": null, + "dx": 0.00159088, + "dy": 1.18008, + "lam": null, + "x": 0.00835279, + "y": 223.997, + "errorLower": 222.81692, + "errorUpper": 225.17708000000002, + "yFit": 220.3039218068919, + "residuals": -3.1295151117789533 + }, + { + "dlam": null, + "dx": 0.00162593, + "dy": 1.05878, + "lam": null, + "x": 0.0086869, + "y": 223.672, + "errorLower": 222.61321999999998, + "errorUpper": 224.73078, + "yFit": 225.99658853940122, + "residuals": 2.1955349925397334 + }, + { + "dlam": null, + "dx": 0.00168048, + "dy": 0.976591, + "lam": null, + "x": 0.00903438, + "y": 228.475, + "errorLower": 227.49840899999998, + "errorUpper": 229.451591, + "yFit": 232.5069590271238, + "residuals": 4.128605554550272 + }, + { + "dlam": null, + "dx": 0.00170509, + "dy": 0.900282, + "lam": null, + "x": 0.00939575, + "y": 229.011, + "errorLower": 228.110718, + "errorUpper": 229.911282, + "yFit": 239.50715770388211, + "residuals": 11.658744375520246 + }, + { + "dlam": null, + "dx": 0.00172049, + "dy": 0.884191, + "lam": null, + "x": 0.00977158, + "y": 235.962, + "errorLower": 235.077809, + "errorUpper": 236.84619099999998, + "yFit": 246.94541642627374, + "residuals": 12.421995277348163 + }, + { + "dlam": null, + "dx": 0.00171975, + "dy": 0.84357, + "lam": null, + "x": 0.0101624, + "y": 241.236, + "errorLower": 240.39243, + "errorUpper": 242.07957, + "yFit": 255.55189788360858, + "residuals": 16.97061048117949 + }, + { + "dlam": null, + "dx": 0.00173361, + "dy": 0.807803, + "lam": null, + "x": 0.0105689, + "y": 247.454, + "errorLower": 246.646197, + "errorUpper": 248.26180300000001, + "yFit": 265.05280306369554, + "residuals": 21.78600854873716 + }, + { + "dlam": null, + "dx": 0.00176472, + "dy": 0.787324, + "lam": null, + "x": 0.0109917, + "y": 256.09, + "errorLower": 255.30267599999996, + "errorUpper": 256.877324, + "yFit": 275.9285406128905, + "residuals": 25.19742902907893 + }, + { + "dlam": null, + "dx": 0.00182598, + "dy": 0.755671, + "lam": null, + "x": 0.0114314, + "y": 269.423, + "errorLower": 268.667329, + "errorUpper": 270.178671, + "yFit": 288.4439970905856, + "residuals": 25.171003109270544 + }, + { + "dlam": null, + "dx": 0.00187949, + "dy": 0.711765, + "lam": null, + "x": 0.0118886, + "y": 282.029, + "errorLower": 281.317235, + "errorUpper": 282.740765, + "yFit": 303.0494737433603, + "residuals": 29.532884791132325 + }, + { + "dlam": null, + "dx": 0.00193137, + "dy": 0.704532, + "lam": null, + "x": 0.0123642, + "y": 296.626, + "errorLower": 295.921468, + "errorUpper": 297.33053199999995, + "yFit": 320.1354748800009, + "residuals": 33.368924165262804 + }, + { + "dlam": null, + "dx": 0.00198554, + "dy": 0.68349, + "lam": null, + "x": 0.0128587, + "y": 318.537, + "errorLower": 317.85350999999997, + "errorUpper": 319.22049, + "yFit": 340.4403231168381, + "residuals": 32.04629638595755 + }, + { + "dlam": null, + "dx": 0.00203315, + "dy": 0.675291, + "lam": null, + "x": 0.0133731, + "y": 345.447, + "errorLower": 344.771709, + "errorUpper": 346.122291, + "yFit": 364.6927180229718, + "residuals": 28.499888230365578 + }, + { + "dlam": null, + "dx": 0.00208813, + "dy": 0.668046, + "lam": null, + "x": 0.013908, + "y": 377.838, + "errorLower": 377.169954, + "errorUpper": 378.506046, + "yFit": 394.82096275423146, + "residuals": 25.42184633128772 + }, + { + "dlam": null, + "dx": 0.00213326, + "dy": 0.678959, + "lam": null, + "x": 0.0144643, + "y": 418.942, + "errorLower": 418.263041, + "errorUpper": 419.620959, + "yFit": 430.58647704056506, + "residuals": 17.150486318857325 + }, + { + "dlam": null, + "dx": 0.00217358, + "dy": 0.686981, + "lam": null, + "x": 0.0150429, + "y": 467.433, + "errorLower": 466.746019, + "errorUpper": 468.119981, + "yFit": 473.4856799870963, + "residuals": 8.81054932683193 + }, + { + "dlam": null, + "dx": 0.00220131, + "dy": 0.703031, + "lam": null, + "x": 0.0156446, + "y": 521.277, + "errorLower": 520.573969, + "errorUpper": 521.980031, + "yFit": 523.1523485819362, + "residuals": 2.6675190452997426 + }, + { + "dlam": null, + "dx": 0.00222531, + "dy": 0.727639, + "lam": null, + "x": 0.0162704, + "y": 587.111, + "errorLower": 586.383361, + "errorUpper": 587.838639, + "yFit": 582.6980418266448, + "residuals": -6.0647631220359965 + }, + { + "dlam": null, + "dx": 0.00226428, + "dy": 0.744067, + "lam": null, + "x": 0.0169212, + "y": 657.003, + "errorLower": 656.2589330000001, + "errorUpper": 657.747067, + "yFit": 647.7761859351956, + "residuals": -12.40051509447999 + }, + { + "dlam": null, + "dx": 0.00227136, + "dy": 0.754121, + "lam": null, + "x": 0.0175981, + "y": 727.944, + "errorLower": 727.1898789999999, + "errorUpper": 728.698121, + "yFit": 716.3590854441541, + "residuals": -15.362142886679854 + }, + { + "dlam": null, + "dx": 0.00228228, + "dy": 0.762387, + "lam": null, + "x": 0.018302, + "y": 789.992, + "errorLower": 789.229613, + "errorUpper": 790.754387, + "yFit": 780.0094966301884, + "residuals": -13.093748148658785 + }, + { + "dlam": null, + "dx": 0.00229589, + "dy": 0.750767, + "lam": null, + "x": 0.0190341, + "y": 832.073, + "errorLower": 831.322233, + "errorUpper": 832.823767, + "yFit": 831.4532497483467, + "residuals": -0.8254894683081067 + }, + { + "dlam": null, + "dx": 0.00231852, + "dy": 0.728338, + "lam": null, + "x": 0.0197954, + "y": 839.815, + "errorLower": 839.086662, + "errorUpper": 840.5433380000001, + "yFit": 856.0375098932918, + "residuals": 22.27332624865347 + }, + { + "dlam": null, + "dx": 0.00233235, + "dy": 0.680064, + "lam": null, + "x": 0.0205873, + "y": 805.586, + "errorLower": 804.905936, + "errorUpper": 806.266064, + "yFit": 841.6339851278051, + "residuals": 53.00675396404615 + }, + { + "dlam": null, + "dx": 0.00237326, + "dy": 0.609523, + "lam": null, + "x": 0.0214107, + "y": 732.561, + "errorLower": 731.9514770000001, + "errorUpper": 733.170523, + "yFit": 779.4148516431798, + "residuals": 76.8697024446653 + }, + { + "dlam": null, + "dx": 0.00244917, + "dy": 0.525037, + "lam": null, + "x": 0.0222672, + "y": 623.581, + "errorLower": 623.055963, + "errorUpper": 624.106037, + "yFit": 674.3709350051355, + "residuals": 96.7359157642899 + }, + { + "dlam": null, + "dx": 0.00254252, + "dy": 0.431254, + "lam": null, + "x": 0.0231579, + "y": 498.338, + "errorLower": 497.906746, + "errorUpper": 498.76925400000005, + "yFit": 546.3272232223003, + "residuals": 111.27832604984594 + }, + { + "dlam": null, + "dx": 0.00263583, + "dy": 0.345621, + "lam": null, + "x": 0.0240842, + "y": 379.651, + "errorLower": 379.305379, + "errorUpper": 379.996621, + "yFit": 415.3683240557716, + "residuals": 103.34245909759997 + }, + { + "dlam": null, + "dx": 0.00274294, + "dy": 0.275152, + "lam": null, + "x": 0.0250475, + "y": 277.92, + "errorLower": 277.644848, + "errorUpper": 278.195152, + "yFit": 297.1199388123701, + "residuals": 69.77939034559108 + }, + { + "dlam": null, + "dx": 0.0028428, + "dy": 0.215742, + "lam": null, + "x": 0.0260494, + "y": 199.772, + "errorLower": 199.55625799999999, + "errorUpper": 199.987742, + "yFit": 199.8459305057949, + "residuals": 0.342680172590036 + }, + { + "dlam": null, + "dx": 0.00286564, + "dy": 0.172114, + "lam": null, + "x": 0.0270914, + "y": 141.351, + "errorLower": 141.178886, + "errorUpper": 141.523114, + "yFit": 117.60581121929866, + "residuals": -137.96198322449854 + }, + { + "dlam": null, + "dx": 0.00289349, + "dy": 0.138782, + "lam": null, + "x": 0.0281751, + "y": 102.756, + "errorLower": 102.617218, + "errorUpper": 102.894782, + "yFit": 65.09672067552056, + "residuals": -271.3556464417536 + }, + { + "dlam": null, + "dx": 0.00289295, + "dy": 0.114218, + "lam": null, + "x": 0.0293021, + "y": 78.1058, + "errorLower": 77.99158200000001, + "errorUpper": 78.220018, + "yFit": 34.66405990382478, + "residuals": -380.3405776337812 + }, + { + "dlam": null, + "dx": 0.00284193, + "dy": 0.0977755, + "lam": null, + "x": 0.0304742, + "y": 62.5493, + "errorLower": 62.451524500000005, + "errorUpper": 62.6470755, + "yFit": 19.47617953042686, + "residuals": -440.53081262251936 + }, + { + "dlam": null, + "dx": 0.0027452, + "dy": 0.0869322, + "lam": null, + "x": 0.0316931, + "y": 53.8731, + "errorLower": 53.7861678, + "errorUpper": 53.9600322, + "yFit": 19.674700372259792, + "residuals": -393.3916273571842 + }, + { + "dlam": null, + "dx": 0.0026771, + "dy": 0.0804389, + "lam": null, + "x": 0.0329609, + "y": 49.8906, + "errorLower": 49.8101611, + "errorUpper": 49.971038899999996, + "yFit": 25.742931197876572, + "residuals": -300.1988938451847 + }, + { + "dlam": null, + "dx": 0.00262863, + "dy": 0.0759295, + "lam": null, + "x": 0.0342793, + "y": 48.5347, + "errorLower": 48.4587705, + "errorUpper": 48.6106295, + "yFit": 34.50699547305281, + "residuals": -184.7464361934056 + }, + { + "dlam": null, + "dx": 0.00257297, + "dy": 0.0728817, + "lam": null, + "x": 0.0356505, + "y": 47.7805, + "errorLower": 47.7076183, + "errorUpper": 47.85338170000001, + "yFit": 43.336468550844366, + "residuals": -60.97595760191705 + }, + { + "dlam": null, + "dx": 0.00256056, + "dy": 0.0692472, + "lam": null, + "x": 0.0370765, + "y": 46.4139, + "errorLower": 46.3446528, + "errorUpper": 46.4831472, + "yFit": 50.29569450598411, + "residuals": 56.05706087732228 + }, + { + "dlam": null, + "dx": 0.00256325, + "dy": 0.0640746, + "lam": null, + "x": 0.0385595, + "y": 43.3373, + "errorLower": 43.2732254, + "errorUpper": 43.4013746, + "yFit": 52.54857686176571, + "residuals": 143.75863230930372 + }, + { + "dlam": null, + "dx": 0.00258859, + "dy": 0.0581762, + "lam": null, + "x": 0.0401019, + "y": 38.7575, + "errorLower": 38.6993238, + "errorUpper": 38.8156762, + "yFit": 49.17084478695563, + "residuals": 178.99664788961167 + }, + { + "dlam": null, + "dx": 0.002619, + "dy": 0.0513839, + "lam": null, + "x": 0.041706, + "y": 32.8237, + "errorLower": 32.772316100000005, + "errorUpper": 32.8750839, + "yFit": 40.66201519604856, + "residuals": 152.54418594245578 + }, + { + "dlam": null, + "dx": 0.00267382, + "dy": 0.0443289, + "lam": null, + "x": 0.0433742, + "y": 26.4637, + "errorLower": 26.4193711, + "errorUpper": 26.5080289, + "yFit": 29.247892177690073, + "residuals": 62.80760807712516 + }, + { + "dlam": null, + "dx": 0.00272568, + "dy": 0.0378276, + "lam": null, + "x": 0.0451092, + "y": 20.8371, + "errorLower": 20.7992724, + "errorUpper": 20.8749276, + "yFit": 18.045385245640112, + "residuals": -73.80100123613148 + }, + { + "dlam": null, + "dx": 0.00276587, + "dy": 0.0320347, + "lam": null, + "x": 0.0469136, + "y": 16.2119, + "errorLower": 16.1798653, + "errorUpper": 16.2439347, + "yFit": 9.421008071206717, + "residuals": -211.9855009971463 + }, + { + "dlam": null, + "dx": 0.00279571, + "dy": 0.0278154, + "lam": null, + "x": 0.0487901, + "y": 13.0286, + "errorLower": 13.000784600000001, + "errorUpper": 13.0564154, + "yFit": 4.010126934076892, + "residuals": -324.22589881587567 + }, + { + "dlam": null, + "dx": 0.00281708, + "dy": 0.0245709, + "lam": null, + "x": 0.0507417, + "y": 10.9345, + "errorLower": 10.9099291, + "errorUpper": 10.9590709, + "yFit": 2.629509671142825, + "residuals": -338.00106340659784 + }, + { + "dlam": null, + "dx": 0.00282959, + "dy": 0.0222794, + "lam": null, + "x": 0.0527714, + "y": 9.67899, + "errorLower": 9.6567106, + "errorUpper": 9.701269400000001, + "yFit": 3.7142178759054767, + "residuals": -267.7258868773182 + }, + { + "dlam": null, + "dx": 0.0028401, + "dy": 0.0206342, + "lam": null, + "x": 0.0548822, + "y": 8.78581, + "errorLower": 8.7651758, + "errorUpper": 8.8064442, + "yFit": 5.928369496267521, + "residuals": -138.4807990487869 + }, + { + "dlam": null, + "dx": 0.00286615, + "dy": 0.0191646, + "lam": null, + "x": 0.0570775, + "y": 8.02647, + "errorLower": 8.0073054, + "errorUpper": 8.0456346, + "yFit": 7.908606924391415, + "residuals": -6.150040992694081 + }, + { + "dlam": null, + "dx": 0.00290825, + "dy": 0.0176645, + "lam": null, + "x": 0.0593606, + "y": 7.19768, + "errorLower": 7.1800155, + "errorUpper": 7.2153445000000005, + "yFit": 8.50615678460269, + "residuals": 74.07380818040076 + }, + { + "dlam": null, + "dx": 0.00296442, + "dy": 0.0160657, + "lam": null, + "x": 0.0617351, + "y": 6.25872, + "errorLower": 6.2426543, + "errorUpper": 6.274785700000001, + "yFit": 7.306715195960211, + "residuals": 65.23184149836055 + }, + { + "dlam": null, + "dx": 0.00303237, + "dy": 0.0145183, + "lam": null, + "x": 0.0642045, + "y": 5.30149, + "errorLower": 5.2869717000000005, + "errorUpper": 5.3160083, + "yFit": 4.919605893160927, + "residuals": -26.30363794928284 + }, + { + "dlam": null, + "dx": 0.00310777, + "dy": 0.0131602, + "lam": null, + "x": 0.0667726, + "y": 4.52106, + "errorLower": 4.507899800000001, + "errorUpper": 4.5342202, + "yFit": 2.5522299195214138, + "residuals": -149.6048753422126 + }, + { + "dlam": null, + "dx": 0.00317865, + "dy": 0.0120429, + "lam": null, + "x": 0.0694435, + "y": 3.93014, + "errorLower": 3.9180971, + "errorUpper": 3.9421829, + "yFit": 1.1723355604393952, + "residuals": -228.99836746635816 + }, + { + "dlam": null, + "dx": 0.00323071, + "dy": 0.0112192, + "lam": null, + "x": 0.0722213, + "y": 3.49251, + "errorLower": 3.4812907999999996, + "errorUpper": 3.5037292, + "yFit": 1.0187868672135822, + "residuals": -220.49015373524114 + }, + { + "dlam": null, + "dx": 0.00329721, + "dy": 0.0105821, + "lam": null, + "x": 0.0751101, + "y": 3.18734, + "errorLower": 3.1767578999999997, + "errorUpper": 3.1979221, + "yFit": 1.6583626814881005, + "residuals": -144.48713568307795 + }, + { + "dlam": null, + "dx": 0.00336836, + "dy": 0.0100843, + "lam": null, + "x": 0.0781145, + "y": 2.92726, + "errorLower": 2.9171757, + "errorUpper": 2.9373443, + "yFit": 2.301034585915579, + "residuals": -62.09904644689476 + }, + { + "dlam": null, + "dx": 0.00345727, + "dy": 0.00955912, + "lam": null, + "x": 0.0812391, + "y": 2.64566, + "errorLower": 2.63610088, + "errorUpper": 2.65521912, + "yFit": 2.2519271719461833, + "residuals": -41.18923374262658 + }, + { + "dlam": null, + "dx": 0.0035437, + "dy": 0.00901861, + "lam": null, + "x": 0.0844887, + "y": 2.37452, + "errorLower": 2.36550139, + "errorUpper": 2.38353861, + "yFit": 1.5338239887831873, + "residuals": -93.2179139819565 + }, + { + "dlam": null, + "dx": 0.00362227, + "dy": 0.00853411, + "lam": null, + "x": 0.0878682, + "y": 2.13092, + "errorLower": 2.1223858900000003, + "errorUpper": 2.13945411, + "yFit": 0.7324378945971008, + "residuals": -163.869707023099 + }, + { + "dlam": null, + "dx": 0.0036993, + "dy": 0.00801442, + "lam": null, + "x": 0.091383, + "y": 1.93426, + "errorLower": 1.92624558, + "errorUpper": 1.9422744200000002, + "yFit": 0.41294586846352865, + "residuals": -189.82211208502568 + }, + { + "dlam": null, + "dx": 0.00374223, + "dy": 0.00759625, + "lam": null, + "x": 0.0950383, + "y": 1.7841, + "errorLower": 1.77650375, + "errorUpper": 1.79169625, + "yFit": 0.6075042862972029, + "residuals": -154.8916522893266 + }, + { + "dlam": null, + "dx": 0.00381774, + "dy": 0.00721554, + "lam": null, + "x": 0.0988398, + "y": 1.65305, + "errorLower": 1.6458344599999999, + "errorUpper": 1.66026554, + "yFit": 0.8674813601021584, + "residuals": -108.87177396256435 + }, + { + "dlam": null, + "dx": 0.00388979, + "dy": 0.00691554, + "lam": null, + "x": 0.102793, + "y": 1.52134, + "errorLower": 1.5144244599999999, + "errorUpper": 1.52825554, + "yFit": 0.7820565832561379, + "residuals": -106.90176280433082 + }, + { + "dlam": null, + "dx": 0.00396133, + "dy": 0.0066253, + "lam": null, + "x": 0.106905, + "y": 1.40698, + "errorLower": 1.4003546999999998, + "errorUpper": 1.4136053, + "yFit": 0.43466472907895076, + "residuals": -146.75792355380878 + }, + { + "dlam": null, + "dx": 0.0040448, + "dy": 0.00633815, + "lam": null, + "x": 0.111181, + "y": 1.28636, + "errorLower": 1.28002185, + "errorUpper": 1.2926981499999999, + "yFit": 0.22469200511260526, + "residuals": -167.50439716437677 + }, + { + "dlam": null, + "dx": 0.00412381, + "dy": 0.00611845, + "lam": null, + "x": 0.115629, + "y": 1.19797, + "errorLower": 1.19185155, + "errorUpper": 1.20408845, + "yFit": 0.2983223548590445, + "residuals": -147.0384893463141 + }, + { + "dlam": null, + "dx": 0.00420457, + "dy": 0.00589653, + "lam": null, + "x": 0.120254, + "y": 1.12096, + "errorLower": 1.11506347, + "errorUpper": 1.12685653, + "yFit": 0.3957314919412212, + "residuals": -122.99242233292782 + }, + { + "dlam": null, + "dx": 0.00427869, + "dy": 0.00572062, + "lam": null, + "x": 0.125064, + "y": 1.05444, + "errorLower": 1.04871938, + "errorUpper": 1.06016062, + "yFit": 0.29439787476376233, + "residuals": -132.86009649937205 + }, + { + "dlam": null, + "dx": 0.00438243, + "dy": 0.00560039, + "lam": null, + "x": 0.130066, + "y": 0.982053, + "errorLower": 0.9764526099999999, + "errorUpper": 0.98765339, + "yFit": 0.145829763518179, + "residuals": -149.3151792074875 + }, + { + "dlam": null, + "dx": 0.00449707, + "dy": 0.00551959, + "lam": null, + "x": 0.135269, + "y": 0.930887, + "errorLower": 0.92536741, + "errorUpper": 0.93640659, + "yFit": 0.15144925047672253, + "residuals": -141.21297950088274 + }, + { + "dlam": null, + "dx": 0.00460143, + "dy": 0.00546427, + "lam": null, + "x": 0.14068, + "y": 0.882886, + "errorLower": 0.8774217299999999, + "errorUpper": 0.88835027, + "yFit": 0.2004025621276484, + "residuals": -124.89928899420262 + }, + { + "dlam": null, + "dx": 0.00471315, + "dy": 0.00543486, + "lam": null, + "x": 0.146307, + "y": 0.846909, + "errorLower": 0.84147414, + "errorUpper": 0.8523438600000001, + "yFit": 0.14068511451435764, + "residuals": -129.943344536132 + }, + { + "dlam": null, + "dx": 0.00482935, + "dy": 0.00541176, + "lam": null, + "x": 0.152159, + "y": 0.795072, + "errorLower": 0.78966024, + "errorUpper": 0.80048376, + "yFit": 0.08134491684832981, + "residuals": -131.8844670036495 + }, + { + "dlam": null, + "dx": 0.00494456, + "dy": 0.00543268, + "lam": null, + "x": 0.158246, + "y": 0.765342, + "errorLower": 0.75990932, + "errorUpper": 0.7707746799999999, + "yFit": 0.10493643934456855, + "residuals": -121.56165293288606 + }, + { + "dlam": null, + "dx": 0.00506276, + "dy": 0.00544301, + "lam": null, + "x": 0.164576, + "y": 0.725141, + "errorLower": 0.71969799, + "errorUpper": 0.7305840100000001, + "yFit": 0.09760787613025608, + "residuals": -115.29156181409623 + }, + { + "dlam": null, + "dx": 0.00519308, + "dy": 0.00556163, + "lam": null, + "x": 0.171159, + "y": 0.69475, + "errorLower": 0.68918837, + "errorUpper": 0.70031163, + "yFit": 0.05598979540953052, + "residuals": -114.85125846028403 + }, + { + "dlam": null, + "dx": 0.00532144, + "dy": 0.00568705, + "lam": null, + "x": 0.178005, + "y": 0.664438, + "errorLower": 0.65875095, + "errorUpper": 0.67012505, + "yFit": 0.06093374074595219, + "residuals": -106.11903522108085 + }, + { + "dlam": null, + "dx": 0.00544726, + "dy": 0.00589887, + "lam": null, + "x": 0.185125, + "y": 0.640604, + "errorLower": 0.63470513, + "errorUpper": 0.64650287, + "yFit": 0.06013423523978789, + "residuals": -98.40355267368362 + }, + { + "dlam": null, + "dx": 0.00558291, + "dy": 0.00622744, + "lam": null, + "x": 0.19253, + "y": 0.625173, + "errorLower": 0.61894556, + "errorUpper": 0.63140044, + "yFit": 0.03543541755226805, + "residuals": -94.69984174038319 + }, + { + "dlam": null, + "dx": 0.00570866, + "dy": 0.00663393, + "lam": null, + "x": 0.200231, + "y": 0.5956, + "errorLower": 0.58896607, + "errorUpper": 0.60223393, + "yFit": 0.041952553487281406, + "residuals": -83.4569322426855 + }, + { + "dlam": null, + "dx": 0.00583848, + "dy": 0.00724923, + "lam": null, + "x": 0.208241, + "y": 0.582752, + "errorLower": 0.57550277, + "errorUpper": 0.59000123, + "yFit": 0.03251384220228803, + "residuals": -75.90297973684268 + }, + { + "dlam": null, + "dx": 0.00595692, + "dy": 0.00810892, + "lam": null, + "x": 0.21657, + "y": 0.571269, + "errorLower": 0.5631600800000001, + "errorUpper": 0.57937792, + "yFit": 0.025545311891923213, + "residuals": -67.29918264184093 + }, + { + "dlam": null, + "dx": 0.00607578, + "dy": 0.00929792, + "lam": null, + "x": 0.225233, + "y": 0.563012, + "errorLower": 0.55371408, + "errorUpper": 0.5723099199999999, + "yFit": 0.026682603086302777, + "residuals": -57.68272870853882 + }, + { + "dlam": null, + "dx": 0.00621921, + "dy": 0.010755, + "lam": null, + "x": 0.234242, + "y": 0.539121, + "errorLower": 0.528366, + "errorUpper": 0.5498759999999999, + "yFit": 0.017911884923038544, + "residuals": -48.46202836605871 + }, + { + "dlam": null, + "dx": 0.00636952, + "dy": 0.0125021, + "lam": null, + "x": 0.243612, + "y": 0.511661, + "errorLower": 0.4991589, + "errorUpper": 0.5241631, + "yFit": 0.019076455196023627, + "residuals": -39.40014436006562 + }, + { + "dlam": null, + "dx": 0.00613893, + "dy": 0.0181216, + "lam": null, + "x": 0.251694, + "y": 0.520131, + "errorLower": 0.5020094, + "errorUpper": 0.5382526, + "yFit": 0.014018198100829875, + "residuals": -27.928703972009654 + } + ], + 'sas_result_fit': [ + { + "residuals": -13.092270443674225, + "x": 0.00714, + "y": 201.14353025229178 + }, + { + "residuals": -9.957383325894869, + "x": 0.0074256, + "y": 205.29092895461838 + }, + { + "residuals": -11.697210397453926, + "x": 0.00772262, + "y": 209.91500495032528 + }, + { + "residuals": -6.9722852420111545, + "x": 0.00803153, + "y": 214.89112069310778 + }, + { + "residuals": -3.1295151117789533, + "x": 0.00835279, + "y": 220.3039218068919 + }, + { + "residuals": 2.1955349925397334, + "x": 0.0086869, + "y": 225.99658853940122 + }, + { + "residuals": 4.128605554550272, + "x": 0.00903438, + "y": 232.5069590271238 + }, + { + "residuals": 11.658744375520246, + "x": 0.00939575, + "y": 239.50715770388211 + }, + { + "residuals": 12.421995277348163, + "x": 0.00977158, + "y": 246.94541642627374 + }, + { + "residuals": 16.97061048117949, + "x": 0.0101624, + "y": 255.55189788360858 + }, + { + "residuals": 21.78600854873716, + "x": 0.0105689, + "y": 265.05280306369554 + }, + { + "residuals": 25.19742902907893, + "x": 0.0109917, + "y": 275.9285406128905 + }, + { + "residuals": 25.171003109270544, + "x": 0.0114314, + "y": 288.4439970905856 + }, + { + "residuals": 29.532884791132325, + "x": 0.0118886, + "y": 303.0494737433603 + }, + { + "residuals": 33.368924165262804, + "x": 0.0123642, + "y": 320.1354748800009 + }, + { + "residuals": 32.04629638595755, + "x": 0.0128587, + "y": 340.4403231168381 + }, + { + "residuals": 28.499888230365578, + "x": 0.0133731, + "y": 364.6927180229718 + }, + { + "residuals": 25.42184633128772, + "x": 0.013908, + "y": 394.82096275423146 + }, + { + "residuals": 17.150486318857325, + "x": 0.0144643, + "y": 430.58647704056506 + }, + { + "residuals": 8.81054932683193, + "x": 0.0150429, + "y": 473.4856799870963 + }, + { + "residuals": 2.6675190452997426, + "x": 0.0156446, + "y": 523.1523485819362 + }, + { + "residuals": -6.0647631220359965, + "x": 0.0162704, + "y": 582.6980418266448 + }, + { + "residuals": -12.40051509447999, + "x": 0.0169212, + "y": 647.7761859351956 + }, + { + "residuals": -15.362142886679854, + "x": 0.0175981, + "y": 716.3590854441541 + }, + { + "residuals": -13.093748148658785, + "x": 0.018302, + "y": 780.0094966301884 + }, + { + "residuals": -0.8254894683081067, + "x": 0.0190341, + "y": 831.4532497483467 + }, + { + "residuals": 22.27332624865347, + "x": 0.0197954, + "y": 856.0375098932918 + }, + { + "residuals": 53.00675396404615, + "x": 0.0205873, + "y": 841.6339851278051 + }, + { + "residuals": 76.8697024446653, + "x": 0.0214107, + "y": 779.4148516431798 + }, + { + "residuals": 96.7359157642899, + "x": 0.0222672, + "y": 674.3709350051355 + }, + { + "residuals": 111.27832604984594, + "x": 0.0231579, + "y": 546.3272232223003 + }, + { + "residuals": 103.34245909759997, + "x": 0.0240842, + "y": 415.3683240557716 + }, + { + "residuals": 69.77939034559108, + "x": 0.0250475, + "y": 297.1199388123701 + }, + { + "residuals": 0.342680172590036, + "x": 0.0260494, + "y": 199.8459305057949 + }, + { + "residuals": -137.96198322449854, + "x": 0.0270914, + "y": 117.60581121929866 + }, + { + "residuals": -271.3556464417536, + "x": 0.0281751, + "y": 65.09672067552056 + }, + { + "residuals": -380.3405776337812, + "x": 0.0293021, + "y": 34.66405990382478 + }, + { + "residuals": -440.53081262251936, + "x": 0.0304742, + "y": 19.47617953042686 + }, + { + "residuals": -393.3916273571842, + "x": 0.0316931, + "y": 19.674700372259792 + }, + { + "residuals": -300.1988938451847, + "x": 0.0329609, + "y": 25.742931197876572 + }, + { + "residuals": -184.7464361934056, + "x": 0.0342793, + "y": 34.50699547305281 + }, + { + "residuals": -60.97595760191705, + "x": 0.0356505, + "y": 43.336468550844366 + }, + { + "residuals": 56.05706087732228, + "x": 0.0370765, + "y": 50.29569450598411 + }, + { + "residuals": 143.75863230930372, + "x": 0.0385595, + "y": 52.54857686176571 + }, + { + "residuals": 178.99664788961167, + "x": 0.0401019, + "y": 49.17084478695563 + }, + { + "residuals": 152.54418594245578, + "x": 0.041706, + "y": 40.66201519604856 + }, + { + "residuals": 62.80760807712516, + "x": 0.0433742, + "y": 29.247892177690073 + }, + { + "residuals": -73.80100123613148, + "x": 0.0451092, + "y": 18.045385245640112 + }, + { + "residuals": -211.9855009971463, + "x": 0.0469136, + "y": 9.421008071206717 + }, + { + "residuals": -324.22589881587567, + "x": 0.0487901, + "y": 4.010126934076892 + }, + { + "residuals": -338.00106340659784, + "x": 0.0507417, + "y": 2.629509671142825 + }, + { + "residuals": -267.7258868773182, + "x": 0.0527714, + "y": 3.7142178759054767 + }, + { + "residuals": -138.4807990487869, + "x": 0.0548822, + "y": 5.928369496267521 + }, + { + "residuals": -6.150040992694081, + "x": 0.0570775, + "y": 7.908606924391415 + }, + { + "residuals": 74.07380818040076, + "x": 0.0593606, + "y": 8.50615678460269 + }, + { + "residuals": 65.23184149836055, + "x": 0.0617351, + "y": 7.306715195960211 + }, + { + "residuals": -26.30363794928284, + "x": 0.0642045, + "y": 4.919605893160927 + }, + { + "residuals": -149.6048753422126, + "x": 0.0667726, + "y": 2.5522299195214138 + }, + { + "residuals": -228.99836746635816, + "x": 0.0694435, + "y": 1.1723355604393952 + }, + { + "residuals": -220.49015373524114, + "x": 0.0722213, + "y": 1.0187868672135822 + }, + { + "residuals": -144.48713568307795, + "x": 0.0751101, + "y": 1.6583626814881005 + }, + { + "residuals": -62.09904644689476, + "x": 0.0781145, + "y": 2.301034585915579 + }, + { + "residuals": -41.18923374262658, + "x": 0.0812391, + "y": 2.2519271719461833 + }, + { + "residuals": -93.2179139819565, + "x": 0.0844887, + "y": 1.5338239887831873 + }, + { + "residuals": -163.869707023099, + "x": 0.0878682, + "y": 0.7324378945971008 + }, + { + "residuals": -189.82211208502568, + "x": 0.091383, + "y": 0.41294586846352865 + }, + { + "residuals": -154.8916522893266, + "x": 0.0950383, + "y": 0.6075042862972029 + }, + { + "residuals": -108.87177396256435, + "x": 0.0988398, + "y": 0.8674813601021584 + }, + { + "residuals": -106.90176280433082, + "x": 0.102793, + "y": 0.7820565832561379 + }, + { + "residuals": -146.75792355380878, + "x": 0.106905, + "y": 0.43466472907895076 + }, + { + "residuals": -167.50439716437677, + "x": 0.111181, + "y": 0.22469200511260526 + }, + { + "residuals": -147.0384893463141, + "x": 0.115629, + "y": 0.2983223548590445 + }, + { + "residuals": -122.99242233292782, + "x": 0.120254, + "y": 0.3957314919412212 + }, + { + "residuals": -132.86009649937205, + "x": 0.125064, + "y": 0.29439787476376233 + }, + { + "residuals": -149.3151792074875, + "x": 0.130066, + "y": 0.145829763518179 + }, + { + "residuals": -141.21297950088274, + "x": 0.135269, + "y": 0.15144925047672253 + }, + { + "residuals": -124.89928899420262, + "x": 0.14068, + "y": 0.2004025621276484 + }, + { + "residuals": -129.943344536132, + "x": 0.146307, + "y": 0.14068511451435764 + }, + { + "residuals": -131.8844670036495, + "x": 0.152159, + "y": 0.08134491684832981 + }, + { + "residuals": -121.56165293288606, + "x": 0.158246, + "y": 0.10493643934456855 + }, + { + "residuals": -115.29156181409623, + "x": 0.164576, + "y": 0.09760787613025608 + }, + { + "residuals": -114.85125846028403, + "x": 0.171159, + "y": 0.05598979540953052 + }, + { + "residuals": -106.11903522108085, + "x": 0.178005, + "y": 0.06093374074595219 + }, + { + "residuals": -98.40355267368362, + "x": 0.185125, + "y": 0.06013423523978789 + }, + { + "residuals": -94.69984174038319, + "x": 0.19253, + "y": 0.03543541755226805 + }, + { + "residuals": -83.4569322426855, + "x": 0.200231, + "y": 0.041952553487281406 + }, + { + "residuals": -75.90297973684268, + "x": 0.208241, + "y": 0.03251384220228803 + }, + { + "residuals": -67.29918264184093, + "x": 0.21657, + "y": 0.025545311891923213 + }, + { + "residuals": -57.68272870853882, + "x": 0.225233, + "y": 0.026682603086302777 + }, + { + "residuals": -48.46202836605871, + "x": 0.234242, + "y": 0.017911884923038544 + }, + { + "residuals": -39.40014436006562, + "x": 0.243612, + "y": 0.019076455196023627 + }, + { + "residuals": -27.928703972009654, + "x": 0.251694, + "y": 0.014018198100829875 + } + ] +}; diff --git a/yarn.lock b/yarn.lock index 52025ae..612a01c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8494,10 +8494,6 @@ onetime@^5.1.0, onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -"opendatafit-types@git+ssh://git@github.com:opendatafit/opendatafit-types.git": - version "0.0.1" - resolved "git+ssh://git@github.com:opendatafit/opendatafit-types.git#a83029dcb4074a3555b7c1ed6249f0c9ba9afa3a" - optionator@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"