diff --git a/addon/modifiers/vega.ts b/addon/modifiers/vega.ts new file mode 100644 index 0000000..4b0973d --- /dev/null +++ b/addon/modifiers/vega.ts @@ -0,0 +1,153 @@ +import Modifier, { ArgsFor, PositionalArgs, NamedArgs } from 'ember-modifier'; +// import { registerDestructor } from '@ember/destroyable'; +import * as Vega from 'vega'; +import * as VegaLite from 'vega-lite'; +import * as VegaTooltip from 'vega-tooltip'; +import { isEmpty } from 'lodash'; + +import { Resource, View } from 'opendatafit-types'; + + +const DEFAULT_CONFIG: Vega.Config = { + 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', + ], + }, +}; + + +interface VegaLiteArgs { + Args: { + Named: { + specType: 'vega-lite'; + spec: VegaLite.TopLevelSpec; + data: Record>; + config: Vega.Config; + }; + Positional: never; + } +} + +interface VegaArgs { + Args: { + Named: { + specType: 'vega'; + spec: Vega.Spec; + data: Record>; + config: Vega.Config; + }; + Positional: never; + } +} + +type VegaModifierSignature = VegaArgs | VegaLiteArgs; + + +export default class VegaModifier extends Modifier { + private _vegaView!: Vega.View; + + constructor( + owner: unknown, + args: ArgsFor + ) { + super(owner, args); + } + + async modify( + element: Element, + positionalArgs: PositionalArgs, + args: NamedArgs + ) { + if (!element) { + throw new Error('Vega has no element'); + } + + let tooltipHandler = new VegaTooltip.Handler(); + + let config = {}; + if (isEmpty(args.config)) { + config = DEFAULT_CONFIG; + } else { + config = args.config; + } + + let viewSpec = null; + if (args.specType === 'vega-lite') { + viewSpec = VegaLite.compile(args.spec).spec; + } else { + viewSpec = args.spec + } + + this._vegaView = new Vega.View(Vega.parse(viewSpec, config), { + renderer: 'svg', // Renderer (canvas or svg) + container: this.element, // Parent DOM container + hover: true, // Enable hover processing + // autosize: { type: 'fit', resize: true }, + tooltip: tooltipHandler.call, + }); + + await this._vegaView.runAsync(); + + // await this.populateData(); + for (const name of Object.keys(args.data)) { + this._vegaView.data(name, args.data[name]); + } + await this._vegaView.runAsync(); + + this.element.classList.add('vega-view-modifier'); + + // TODO: Temporary bug fix for incorrect chart sizing on load before + // first resize + window.dispatchEvent(new Event('resize')); + } + + private _setup(): void { + } + + willDestroy() { + if (this._vegaView) { + this._vegaView.finalize(); + } + + this.element.classList.remove('vega-view-modifier'); + } + + // async didUpdateArguments() { + // if (!this._vegaView) { + // await this._setup(); + // } else { + // // Already loaded, we don't expect the view/config to change + // // Just need to update data package + // await this.populateData(); + // await this._vegaView.runAsync(); + // } + // } +} diff --git a/app/modifiers/vega.js b/app/modifiers/vega.js new file mode 100644 index 0000000..14c4abc --- /dev/null +++ b/app/modifiers/vega.js @@ -0,0 +1 @@ +export { default } from 'ember-vega-modifier/modifiers/vega'; diff --git a/package.json b/package.json index f21dd91..decbfaf 100644 --- a/package.json +++ b/package.json @@ -23,11 +23,22 @@ "start": "ember serve", "test": "npm-run-all lint test:*", "test:ember": "ember test", - "test:ember-compatibility": "ember try:each" + "test:ember-compatibility": "ember try:each", + "prepack": "ember ts:precompile", + "postpack": "ember ts:clean" }, "dependencies": { + "ember-auto-import": "^2.4.2", + "ember-lodash": "^4.19.5", + "@types/lodash": "^4.14.182", + "ember-modifier": "^3.2.7", "ember-cli-babel": "^7.26.11", - "ember-cli-htmlbars": "^6.0.1" + "ember-cli-htmlbars": "^6.0.1", + "ember-cli-typescript": "^5.1.0", + "vega": "^5.22.1", + "vega-lite": "^5.2.0", + "vega-tooltip": "^0.28.0", + "opendatafit-types": "git+ssh://git@github.com:opendatafit/opendatafit-types.git" }, "devDependencies": { "@ember/optional-features": "^2.0.0", @@ -35,14 +46,36 @@ "@embroider/test-setup": "^1.6.0", "@glimmer/component": "^1.1.2", "@glimmer/tracking": "^1.1.2", + "@types/ember-qunit": "^5.0.0", + "@types/ember-resolver": "^5.0.11", + "@types/ember__application": "^4.0.0", + "@types/ember__array": "^4.0.1", + "@types/ember__component": "^4.0.8", + "@types/ember__controller": "^4.0.0", + "@types/ember__debug": "^4.0.1", + "@types/ember__engine": "^4.0.0", + "@types/ember__error": "^4.0.0", + "@types/ember__object": "^4.0.2", + "@types/ember__polyfills": "^4.0.0", + "@types/ember__routing": "^4.0.7", + "@types/ember__runloop": "^4.0.1", + "@types/ember__service": "^4.0.0", + "@types/ember__string": "^3.0.9", + "@types/ember__template": "^4.0.0", + "@types/ember__test": "^4.0.0", + "@types/ember__test-helpers": "^2.6.1", + "@types/ember__utils": "^4.0.0", + "@types/htmlbars-inline-precompile": "^3.0.0", + "@types/qunit": "^2.11.3", + "@types/rsvp": "^4.0.4", "babel-eslint": "^10.1.0", "broccoli-asset-rev": "^3.0.0", - "ember-auto-import": "^2.4.1", "ember-cli": "~4.4.0", "ember-cli-dependency-checker": "^3.3.1", "ember-cli-inject-live-reload": "^2.1.0", "ember-cli-sri": "^2.1.1", "ember-cli-terser": "^4.0.2", + "ember-cli-typescript-blueprints": "^3.0.0", "ember-disable-prototype-extensions": "^1.1.3", "ember-export-application-global": "^2.0.1", "ember-load-initializers": "^2.1.2", @@ -64,6 +97,7 @@ "prettier": "^2.6.2", "qunit": "^2.19.1", "qunit-dom": "^2.0.0", + "typescript": "^4.7.2", "webpack": "^5.72.1" }, "engines": { diff --git a/tests/dummy/app/config/environment.d.ts b/tests/dummy/app/config/environment.d.ts new file mode 100644 index 0000000..3639a23 --- /dev/null +++ b/tests/dummy/app/config/environment.d.ts @@ -0,0 +1,14 @@ +export default config; + +/** + * Type declarations for + * import config from 'my-app/config/environment' + */ +declare const config: { + environment: string; + modulePrefix: string; + podModulePrefix: string; + locationType: 'history' | 'hash' | 'none' | 'auto'; + rootURL: string; + APP: Record; +}; diff --git a/tests/dummy/app/controllers/application.ts b/tests/dummy/app/controllers/application.ts new file mode 100644 index 0000000..6ce595d --- /dev/null +++ b/tests/dummy/app/controllers/application.ts @@ -0,0 +1,110 @@ +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 { + DATAPACKAGE, + DATA, + FIT_DATA, + DATA_2, + FIT_DATA_2 +} from '../utils/data'; + + +export default class Application extends Controller { + @tracked dataResource!: Resource; + @tracked fitResource!: Resource; + + constructor() { + super(...arguments); + + this.dataResource = DATAPACKAGE.resources[4] as Resource; + this.dataResource.data = DATA; + + 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" + ] + } + }; + } + + @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; + } +} + +// DO NOT DELETE: this is how TypeScript knows how to look up your controllers. +declare module '@ember/controller' { + interface Registry { + 'application': Application; + } +} diff --git a/tests/dummy/app/templates/application.hbs b/tests/dummy/app/templates/application.hbs index 1001d14..6324e9c 100644 --- a/tests/dummy/app/templates/application.hbs +++ b/tests/dummy/app/templates/application.hbs @@ -1,5 +1,20 @@ -{{page-title "Dummy"}} +

ember-vega-modifier test

-

Welcome to Ember

+
+
-{{outlet}} \ No newline at end of file +
+ +
+ +{{outlet}} diff --git a/tests/dummy/app/utils/data.ts b/tests/dummy/app/utils/data.ts new file mode 100644 index 0000000..f4f3172 --- /dev/null +++ b/tests/dummy/app/utils/data.ts @@ -0,0 +1,51136 @@ +import { Datapackage } from 'opendatafit-types'; + + +export const DATAPACKAGE: Datapackage = { + "algorithms": [ + { + "name": "sas", + "title": "SAS 1D", + "code": "ZGVmIG1haW4oCiAgICBkYXRhLAogICAgcGFyYW1zLAogICAgc2ZfcGFyYW1zLAogICAgb3B0aW9ucywKICAgICoqa3dhcmdzCik6IAogICAgZnJvbSBjb3B5IGltcG9ydCBkZWVwY29weQoKICAgIGltcG9ydCBzYXNtb2RlbHMgYXMgc20KICAgIGltcG9ydCBzYXNtb2RlbHMuZGF0YQogICAgaW1wb3J0IHNhc21vZGVscy5jb3JlCiAgICBpbXBvcnQgc2FzbW9kZWxzLmJ1bXBzX21vZGVsCgogICAgZnJvbSBzYXMuc2FzY2FsYy5kYXRhbG9hZGVyLmRhdGFfaW5mbyBpbXBvcnQgRGF0YTFECiAgICBmcm9tIHNhcy5zYXNjYWxjLmRhdGFsb2FkZXIubG9hZGVyIGltcG9ydCBMb2FkZXIKCiAgICBpbXBvcnQgYnVtcHMuZml0cHJvYmxlbQogICAgaW1wb3J0IGJ1bXBzLmZpdHRlcnMKICAgIGZyb20gYnVtcHMub3B0aW9ucyBpbXBvcnQgRklUX0NPTkZJRwoKICAgIGltcG9ydCBudW1weSBhcyBucAogICAgaW1wb3J0IHBhbmRhcyBhcyBwZAoKICAgIGZyb20gZnJpY3Rpb25sZXNzIGltcG9ydCBSZXNvdXJjZSwgUGFja2FnZQoKICAgIGltcG9ydCBiYXNlNjQKICAgIGltcG9ydCBpbwoKICAgIGltcG9ydCB0ZW1wZmlsZQoKCiAgICAjID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KICAgICMgR2VuZXJhbCBoZWxwZXJzCgogICAgZGVmIGZpbmQobHN0LCBrZXksIHZhbHVlKToKICAgICAgICAjIFJldHVybiBpdGVtIGl0ZW0gbWF0Y2hpbmcgaVtrZXldID09IHZhbHVlIGluIGEgbGlzdCBvZiBkaWN0cwogICAgICAgIGZvciBkaWMgaW4gbHN0OgogICAgICAgICAgICBpZiBkaWNba2V5XSA9PSB2YWx1ZToKICAgICAgICAgICAgICAgIHJldHVybiBkaWMKICAgICAgICByZXR1cm4gTm9uZQoKCiAgICAjID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KICAgICMgU0FTIGhlbHBlcnMKCgogICAgZGVmIHBhcmFtZXRlcl9yZXNvdXJjZV90b19idW1wc19tb2RlbChrZXJuZWwsIHJlc291cmNlKToKICAgICAgICAjIFRPRE86IE5lZWQgYSB3YXkgdG8gaW5jbHVkZS9leGNsdWRlIFBEIHBhcmFtZXRlcnMgZGVwZW5kaW5nIG9uIG9wdGlvbgogICAgICAgICMgc2VsZWN0aW9uLi4uCgogICAgICAgIHBhcmFtcyA9IHJlc291cmNlLmdldF92YWx1ZXMoKQogICAgICAgIG1vZGVsID0gc20uYnVtcHNfbW9kZWwuTW9kZWwoa2VybmVsLCAqKnBhcmFtcykKCiAgICAgICAgZm9yIGtleSwgcGFyYW0gaW4gcmVzb3VyY2UuZGF0YS5pdGVtcygpOgogICAgICAgICAgICBpZiB0eXBlKChnZXRhdHRyKG1vZGVsLCBrZXkpKSkgPT0gYnVtcHMucGFyYW1ldGVyLlBhcmFtZXRlcjoKICAgICAgICAgICAgICAgIHZhcnkgPSBwYXJhbS5nZXQoInZhcnkiLCBOb25lKQogICAgICAgICAgICAgICAgaWYgdmFyeSBpcyBub3QgTm9uZToKICAgICAgICAgICAgICAgICAgICBpZiB2YXJ5OgogICAgICAgICAgICAgICAgICAgICAgICAjICh0aGlzIGFsc28gc2V0cyBmaXhlZD1GYWxzZSBpbiBidW1wcykKICAgICAgICAgICAgICAgICAgICAgICAgZ2V0YXR0cihtb2RlbCwga2V5KS5saW1pdHMgPSAoCiAgICAgICAgICAgICAgICAgICAgICAgICAgICBwYXJhbVsibG93ZXJCb3VuZCJdLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgcGFyYW1bInVwcGVyQm91bmQiXSwKICAgICAgICAgICAgICAgICAgICAgICAgKQogICAgICAgICAgICAgICAgICAgICAgICBnZXRhdHRyKG1vZGVsLCBrZXkpLmZpeGVkID0gRmFsc2UKICAgICAgICAgICAgICAgICAgICBlbHNlOgogICAgICAgICAgICAgICAgICAgICAgICBnZXRhdHRyKG1vZGVsLCBrZXkpLmZpeGVkID0gVHJ1ZQoKICAgICAgICByZXR1cm4gbW9kZWwKCgogICAgZGVmIGJ1bXBzX21vZGVsX3RvX3BhcmFtZXRlcl9yZXNvdXJjZShtb2RlbCwgcGFyYW1zKToKICAgICAgICAiIiIKICAgICAgICAiIHBhcmFtczogZnJpY3Rpb25sZXNzLlJlc291cmNlCiAgICAgICAgIiBtb2RlbDogc2FzbW9kZWxzLmJ1bXBzX21vZGVsLk1vZGVsCiAgICAgICAgIgogICAgICAgICIgVXBkYXRlcyBwYXJhbXMgcmVzb3VyY2Ugd2l0aCBmaXR0ZWQgcGFyYW1ldGVycyBmcm9tIGJ1bXBzIG1vZGVsCiAgICAgICAgIiIiCgogICAgICAgICMgYnVtcHNfbW9kZWwuTW9kZWwgY2xhc3MgaXMgYSB3cmFwcGVyIGFyb3VuZCBzYXN2aWV3X21vZGVsLk1vZGVsLAogICAgICAgICMgY29udGFpbmluZyBmaXR0aW5nIGluZm9ybWF0aW9uIG9uIHRvcCBvZiBtb2RlbCBkZWZpbml0aW9uCgogICAgICAgIGZvciBwYXJhbSBpbiBwYXJhbXMuZ2V0X3ZhbHVlcygpLmtleXMoKToKICAgICAgICAgICAgcGFyYW1zLnNldF9wYXJhbSgKICAgICAgICAgICAgICAgIGtleT1wYXJhbSwKICAgICAgICAgICAgICAgIHZhbHVlPW1vZGVsLnN0YXRlKClbcGFyYW1dLAogICAgICAgICAgICAgICAgZmllbGQ9InZhbHVlIiwKICAgICAgICAgICAgKQoKICAgICAgICByZXR1cm4gcGFyYW1zCgoKICAgIGRlZiBkYXRhXzFkX3RvX3Jlc291cmNlKGRhdGEpOgogICAgICAgICIiIgogICAgICAgICIgQ29udmVydCBTQVNWaWV3IERhdGExRCBvYmplY3QgdG8gYSBGcmljdGlvbmxlc3MgRGF0YSBSZXNvdXJjZQogICAgICAgICIiIgoKICAgICAgICBkZiA9IHBkLkRhdGFGcmFtZShkYXRhPXsKICAgICAgICAgICAgJ3gnOiBkYXRhLngsCiAgICAgICAgICAgICd5JzogZGF0YS55LAogICAgICAgICAgICAnZHgnOiBkYXRhLmR4LAogICAgICAgICAgICAnZHknOiBkYXRhLmR5LAogICAgICAgICAgICAnbGFtJzogZGF0YS5sYW0sCiAgICAgICAgICAgICdkbGFtJzogZGF0YS5kbGFtLAogICAgICAgIH0pCgogICAgICAgIHJldHVybiBSZXNvdXJjZSgKICAgICAgICAgICAgZGYsCiAgICAgICAgICAgIG5hbWU9ImRhdGEiLAogICAgICAgICAgICBmb3JtYXQ9InBhbmRhcyIsCiAgICAgICAgICAgIHNjaGVtYT17CiAgICAgICAgICAgICAgICAncHJpbWFyeUtleSc6ICd4JywKICAgICAgICAgICAgICAgICdmaWVsZHMnOiBbCiAgICAgICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICAgICAnbmFtZSc6ICd4JywKICAgICAgICAgICAgICAgICAgICAgICAgJ3R5cGUnOiAnbnVtYmVyJywKICAgICAgICAgICAgICAgICAgICAgICAgJ3RpdGxlJzogZGF0YS5feGF4aXMsCiAgICAgICAgICAgICAgICAgICAgICAgICd1bml0JzogZGF0YS5feHVuaXQsCiAgICAgICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgICAgICduYW1lJzogJ3knLAogICAgICAgICAgICAgICAgICAgICAgICAndHlwZSc6ICdudW1iZXInLAogICAgICAgICAgICAgICAgICAgICAgICAndGl0bGUnOiBkYXRhLl95YXhpcywKICAgICAgICAgICAgICAgICAgICAgICAgJ3VuaXQnOiBkYXRhLl95dW5pdCwKICAgICAgICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAgICAgIHsnbmFtZSc6ICdkeCcsICd0eXBlJzogJ251bWJlcid9LAogICAgICAgICAgICAgICAgICAgIHsnbmFtZSc6ICdkeScsICd0eXBlJzogJ251bWJlcid9LAogICAgICAgICAgICAgICAgICAgIHsnbmFtZSc6ICdsYW0nLCAndHlwZSc6ICdudW1iZXInfSwKICAgICAgICAgICAgICAgICAgICB7J25hbWUnOiAnZGxhbScsICd0eXBlJzogJ251bWJlcid9LAogICAgICAgICAgICAgICAgXQogICAgICAgICAgICB9CiAgICAgICAgKQoKCiAgICAjID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KICAgICMgRXh0ZW5kZWQgUmVzb3VyY2UgY2xhc3NlcwoKCiAgICBjbGFzcyBQYXJhbWV0ZXJSZXNvdXJjZShSZXNvdXJjZSk6CiAgICAgICAgZGVmIGNvbmNhdChzZWxmLCByZXNvdXJjZSk6CiAgICAgICAgICAgICMgQ2hlY2sgcHJvZmlsZXMgbWF0Y2gKICAgICAgICAgICAgYXNzZXJ0IHNlbGYucHJvZmlsZSA9PSByZXNvdXJjZS5wcm9maWxlCgogICAgICAgICAgICAjIENvbmNhdCBzY2hlbWEKICAgICAgICAgICAgIyBUT0RPOiBNYXRjaCBhbnkgaWRlbnRpY2FsIGRlc2NyaXB0b3JzIGluIHNjaGVtYT8KICAgICAgICAgICAgIyBUT0RPOiBJbXBsZW1lbnQgY3VzdG9tIFBhcmFtZXRlclNjaGVtYSBvYmplY3QKICAgICAgICAgICAga2V5cyA9IHNlbGYuc2NoZW1hLnRvX2RpY3QoKVsia2V5cyJdCiAgICAgICAgICAgIGtleXMuYXBwZW5kKHJlc291cmNlLnNjaGVtYS50b19kaWN0KClbImtleXMiXSkKICAgICAgICAgICAgc2VsZi5zY2hlbWFbImtleXMiXSA9IGtleXMKCiAgICAgICAgICAgICMgQ29uY2F0IGRhdGEKICAgICAgICAgICAgc2VsZi5kYXRhLnVwZGF0ZShyZXNvdXJjZS5kYXRhKQoKICAgICAgICBkZWYgZ2V0X3BhcmFtKHNlbGYsIGtleSwgZmllbGQ9Tm9uZSk6CiAgICAgICAgICAgIGlmIGZpZWxkIGlzIG5vdCBOb25lOgogICAgICAgICAgICAgICAgcmV0dXJuIHNlbGYuZGF0YVtrZXldW2ZpZWxkXQogICAgICAgICAgICBlbHNlOgogICAgICAgICAgICAgICAgcmV0dXJuIHNlbGYuZGF0YVtrZXldCgogICAgICAgIGRlZiBzZXRfcGFyYW0oc2VsZiwga2V5LCB2YWx1ZSwgZmllbGQ9Tm9uZSk6CiAgICAgICAgICAgIGlmIGZpZWxkIGlzIG5vdCBOb25lOgogICAgICAgICAgICAgICAgc2VsZi5kYXRhW2tleV1bZmllbGRdID0gdmFsdWUKICAgICAgICAgICAgZWxzZToKICAgICAgICAgICAgICAgIHNlbGYuZGF0YVtrZXldID0gdmFsdWUKCiAgICAgICAgZGVmIGdldF92YWx1ZXMoc2VsZiwgZmllbGQ9InZhbHVlIik6CiAgICAgICAgICAgICMgVE9ETzogSGFuZGxlIG5vbi1mbG9hdCB2YWx1ZXMhCgogICAgICAgICAgICBkZWYgaXNfZmxvYXQodmFsdWUpOgogICAgICAgICAgICAgICAgdHJ5OgogICAgICAgICAgICAgICAgICAgIGZsb2F0KHZhbHVlKQogICAgICAgICAgICAgICAgICAgIHJldHVybiBUcnVlCiAgICAgICAgICAgICAgICBleGNlcHQ6ICAjIG5vcWE6IEU3MjIKICAgICAgICAgICAgICAgICAgICByZXR1cm4gRmFsc2UKCiAgICAgICAgICAgIHJldHVybiB7CiAgICAgICAgICAgICAgICBrZXk6IGZsb2F0KHJvdy5nZXQoZmllbGQpKQogICAgICAgICAgICAgICAgaWYgaXNfZmxvYXQocm93LmdldChmaWVsZCkpCiAgICAgICAgICAgICAgICBlbHNlIHJvdy5nZXQoZmllbGQpCiAgICAgICAgICAgICAgICBmb3Iga2V5LCByb3cgaW4gc2VsZi5kYXRhLml0ZW1zKCkKICAgICAgICAgICAgfQoKICAgICAgICBkZWYgYWRkX2ZpZWxkKHNlbGYsIGtleSwgbmFtZSwgKiprd2FyZ3MpOgogICAgICAgICAgICAjIFRPRE86IFRlc3QgdGhpcyB3b3JrcwogICAgICAgICAgICBrZXlfc2NoZW1hID0gZmluZChzZWxmLnNjaGVtYVsia2V5cyJdLCAibmFtZSIsIGtleSkKICAgICAgICAgICAga2V5X3NjaGVtYVsiZmllbGRzIl0uYXBwZW5kKHsibmFtZSI6IG5hbWUsICoqa3dhcmdzfSkKCgogICAgY2xhc3MgT3B0aW9uc1Jlc291cmNlKFJlc291cmNlKToKICAgICAgICBkZWYgZ2V0X29wdGlvbihzZWxmLCBvcHRpb24pOgogICAgICAgICAgICByZXR1cm4gc2VsZi5kYXRhW29wdGlvbl1bIm5hbWUiXQoKICAgICAgICBkZWYgc2V0X29wdGlvbihzZWxmLCBvcHRpb24sIGtleSk6CiAgICAgICAgICAgIHNlbGYuZGF0YVtvcHRpb25dID0gc2VsZi5nZXRfb3B0aW9uX2Nob2ljZShvcHRpb24sIGtleSkKCiAgICAgICAgZGVmIGdldF9vcHRpb25fY2hvaWNlKHNlbGYsIG9wdGlvbiwga2V5KToKICAgICAgICAgICAgZmllbGQgPSBmaW5kKHNlbGYuc2NoZW1hLmZpZWxkcywgIm5hbWUiLCBvcHRpb24pCiAgICAgICAgICAgIHJldHVybiBmaW5kKGZpZWxkWyJjb25zdHJhaW50cyJdWyJlbnVtIl0sICJuYW1lIiwga2V5KQoKCiAgICBjbGFzcyBGaWxlUmVzb3VyY2UoUmVzb3VyY2UpOgogICAgICAgIEBwcm9wZXJ0eQogICAgICAgIGRlZiBmaWxlKHNlbGYpOgogICAgICAgICAgICByZXR1cm4gaW8uQnl0ZXNJTyhiYXNlNjQuYjY0ZGVjb2RlKHNlbGYuZGF0YSkpCgogICAgICAgIEBwcm9wZXJ0eQogICAgICAgIGRlZiBmaWxlX25hbWUoc2VsZik6CiAgICAgICAgICAgIHJldHVybiBzZWxmLnRpdGxlLnJzcGxpdCgiLiIsIDEpWzBdCgogICAgICAgIEBwcm9wZXJ0eQogICAgICAgIGRlZiBmaWxlX2V4dChzZWxmKToKICAgICAgICAgICAgcmV0dXJuIHNlbGYudGl0bGUucnNwbGl0KCIuIiwgMSlbMV0KCgogICAgIyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CiAgICAjIEFuYWx5c2lzIGFsZ29yaXRobQoKICAgIGRhdGFfcmVzb3VyY2UgPSBGaWxlUmVzb3VyY2UoZGVzY3JpcHRvcj1kYXRhKQoKICAgICMgV3JpdGUgdG8gdGVtcG9yYXJ5IGZpbGUgZm9yIHJlYWRpbmcgYnkgU0FTVmlldwogICAgIyBUT0RPOiBXb3VsZCBiZSBpZGVhbCBub3QgdG8gaGF2ZSB0byBkbyB0aGlzLi4uCiAgICB3aXRoIHRlbXBmaWxlLk5hbWVkVGVtcG9yYXJ5RmlsZSgKICAgICAgICAgICAgZGlyPSIvdG1wIiwKICAgICAgICAgICAgcHJlZml4PWRhdGFfcmVzb3VyY2UuZmlsZV9uYW1lKyJfIiwKICAgICAgICAgICAgc3VmZml4PSIuIitkYXRhX3Jlc291cmNlLmZpbGVfZXh0KSBhcyBmOgoKICAgICAgICAjIENyZWF0ZSB0ZW1wb3JhcnkgZmlsZSB0byBiZSBsb2FkZWQgYnkgc2FzdmlldwogICAgICAgIGYud3JpdGUoZGF0YV9yZXNvdXJjZS5maWxlLmdldGJ1ZmZlcigpKQoKICAgICAgICBsb2FkZXIgPSBMb2FkZXIoKQoKICAgICAgICAjIFRPRE86IEhhbmRsZSBtdWx0aXBsZSByZXR1cm4gRGF0YSBvYmpzIC0gZXhhbXBsZSBmaWxlIGZvciB0aGlzIGNhc2U/CiAgICAgICAgIyBUT0RPOiBIYW5kbGUgRGF0YTJEIGNhc2UKICAgICAgICBkYXRhX3NhcyA9IGxvYWRlci5sb2FkKGYubmFtZSkKICAgICAgICBkYXRhX3NhcyA9IGRhdGFfc2FzWzBdCgogICAgIyBUT0RPOiBTZXR0aW5nIGJlYW1zdG9wIGJyZWFrcyBkYXRhc2V0IGNvbnN0cnVjdGlvbiBhcyBYIGRvZXNuJ3QgbWF0Y2ggCiAgICAjIGZpdHRlZCBkYXRhIC0gZml4IHRoaXMgdmlhIHRvX21hc2tlZF9hcnJheSBtYXliZT8/CiAgICAjIHNtLmRhdGEuc2V0X2JlYW1fc3RvcChkYXRhX3NhcywgMC4wMDgsIDAuMTkpCgogICAgIyBUT0RPOiBURU1QCiAgICAjIENvbnZlcnQgb3B0aW9ucyBKU09OIGludG8gUmVzb3VyY2UKICAgIG9wdGlvbnNfcmVzb3VyY2UgPSBPcHRpb25zUmVzb3VyY2UoZGVzY3JpcHRvcj1vcHRpb25zKQoKICAgICMgR2V0IHNlbGVjdGVkIG1vZGVsIG5hbWUKICAgIG1vZGVsX25hbWUgPSBvcHRpb25zX3Jlc291cmNlLmdldF9vcHRpb24oIm1vZGVsIikKICAgIHNmX25hbWUgPSBvcHRpb25zX3Jlc291cmNlLmdldF9vcHRpb24oInN0cnVjdHVyZUZhY3RvciIpCgogICAgaWYgc2ZfbmFtZToKICAgICAgICBsb2FkX25hbWUgPSBtb2RlbF9uYW1lKyJAIitzZl9uYW1lCiAgICBlbHNlOgogICAgICAgIGxvYWRfbmFtZSA9IG1vZGVsX25hbWUKCiAgICBrZXJuZWwgPSBzbS5jb3JlLmxvYWRfbW9kZWwobG9hZF9uYW1lKQoKICAgICMgSW5pdGlhbGlzZSBtb2RlbAogICAgIyBUT0RPOiBFcnJvciBoYW5kbGluZyBmb3IgaWYgbm8gcGFyYW1zIGFyZSBzZXQgdG8gInZhcnkiIC0gYnVtcHMgZmFpbHMgCiAgICAjIG5vbiBncmFjZWZ1bGx5IG9uIHRoaXMKCiAgICAjIFRPRE86IFRFTVAKICAgICMgQ29udmVydCBwYXJhbXMgSlNPTiBpbnRvIFJlc291cmNlCiAgICBwYXJhbXNfcmVzb3VyY2UgPSBQYXJhbWV0ZXJSZXNvdXJjZShkZXNjcmlwdG9yPXBhcmFtcykKICAgICMgVE9ETzogVEVNUCBncm9zcywgdXNlZCBiZWxvdyB0byBjb252ZXJ0IGJ1bXBzIHJlc3VsdHMgdG8gcmVzb3VyY2VzCiAgICBtb2RlbF9wYXJhbXMgPSBwYXJhbXNfcmVzb3VyY2UKICAgIGlmIHNmX3BhcmFtcyBpcyBub3QgTm9uZToKICAgICAgICBzZl9wYXJhbXNfcmVzb3VyY2UgPSBQYXJhbWV0ZXJSZXNvdXJjZShkZXNjcmlwdG9yPXNmX3BhcmFtcykKICAgICAgICAjIFRPRE86IFRFTVAgZ3Jvc3MsIHVzZWQgYmVsb3cgdG8gY29udmVydCBidW1wcyByZXN1bHRzIHRvIHJlc291cmNlcwogICAgICAgIHNmX21vZGVsX3BhcmFtcyA9IHNmX3BhcmFtc19yZXNvdXJjZQoKICAgICMgQ29tYmluZSBmb3JtIGZhY3Rvci9wb2x5ZGlzcGVyc2l0eSBwYXJhbXMgd2l0aCBTRiBwYXJhbXMKICAgIHBhcmFtc19yZXNvdXJjZS5jb25jYXQoc2ZfcGFyYW1zX3Jlc291cmNlKQoKICAgIGlmIGt3YXJncy5nZXQoJ3Bsb3Rfb25seScsIEZhbHNlKToKICAgICAgICAjIERvbid0IGZpdCBpZiBwbG90X29ubHkgZmxhZyBzZXQKICAgICAgICBydW5fZml0ID0gRmFsc2UKICAgIGVsc2U6CiAgICAgICAgIyBBcmUgdGhlcmUgYW55IHBhcmFtZXRlcnMgdG8gYmUgZml0dGVkPwogICAgICAgICMgKGNoZWNrcyBpZiBhbnkgcGFyYW1ldGVycyBhcmUgc2V0IHRvICJ2YXJ5IikKICAgICAgICBydW5fZml0ID0gbnAuYW55KGxpc3QocGFyYW1zX3Jlc291cmNlLmdldF92YWx1ZXMoZmllbGQ9InZhcnkiKS52YWx1ZXMoKSkpCgogICAgIyBDcmVhdGUgYnVtcHMgbW9kZWwKICAgIG1vZGVsID0gcGFyYW1ldGVyX3Jlc291cmNlX3RvX2J1bXBzX21vZGVsKGtlcm5lbCwgcGFyYW1zX3Jlc291cmNlKQoKICAgICMgU2V0IHVwIGJ1bXBzIGZpdHRlcgogICAgTSA9IHNtLmJ1bXBzX21vZGVsLkV4cGVyaW1lbnQoZGF0YT1kYXRhX3NhcywgbW9kZWw9bW9kZWwpCiAgICBwcm9ibGVtID0gYnVtcHMuZml0cHJvYmxlbS5GaXRQcm9ibGVtKE0pCgogICAgIyBTZXQgYnVtcHMgdG8gdXNlIHNlbGVjdGVkIGZpdHRlciBtZXRob2QKICAgIGZpdHRlcl9uYW1lID0gb3B0aW9uc19yZXNvdXJjZS5nZXRfb3B0aW9uKCJtZXRob2QiKQogICAgRklUX0NPTkZJRy5zZWxlY3RlZF9pZCA9IGdldGF0dHIoYnVtcHMuZml0dGVycywgZml0dGVyX25hbWUpLmlkCgogICAgZml0dGVyID0gRklUX0NPTkZJRy5zZWxlY3RlZF9maXR0ZXIKICAgIGZpdHRlcl9vcHRpb25zID0gIEZJVF9DT05GSUcuc2VsZWN0ZWRfdmFsdWVzCgogICAgIyBTZXQgdXAgZml0dGVyIGFuZCBydW4KICAgIGZpdGRyaXZlciA9IGJ1bXBzLmZpdHRlcnMuRml0RHJpdmVyKGZpdHRlciwgcHJvYmxlbT1wcm9ibGVtLCAqKmZpdHRlcl9vcHRpb25zKQoKICAgIGlmIHJ1bl9maXQ6CiAgICAgICAgYmVzdCwgZmJlc3QgPSBmaXRkcml2ZXIuZml0KCkKCiAgICAjIEJ1aWxkIGZpdCBjdXJ2ZSByZXNvdXJjZQogICAgIyBUT0RPOiBDSEVDSyBDT05WRVJHRU5DRQogICAgIyAodGVzdCBieSBzZXR0aW5nIGluaXRpYWwgcGFyYW1zIHRvIHNvbWV0aGluZyBiYWQgLSB0aGVvcnkoKSByZXR1cm5zIE5hTnMpCiAgICBmaXRfZGYgPSBwZC5EYXRhRnJhbWUoZGF0YT17CiAgICAgICAgJ3gnOiAgICAgICAgIHByb2JsZW0uZml0bmVzcy5fZGF0YS54LmZsYXR0ZW4oKSwKICAgICAgICAneSc6ICAgICAgICAgcHJvYmxlbS5maXRuZXNzLnRoZW9yeSgpLmZsYXR0ZW4oKSwKICAgICAgICAncmVzaWR1YWxzJzogcHJvYmxlbS5maXRuZXNzLnJlc2lkdWFscygpLmZsYXR0ZW4oKSwKICAgIH0pCgogICAgZml0X3RhYmxlID0gUmVzb3VyY2UoCiAgICAgICAgZml0X2RmLAogICAgICAgIG5hbWU9ImZpdCIsCiAgICAgICAgZm9ybWF0PSJwYW5kYXMiLAogICAgICAgIHNjaGVtYT17CiAgICAgICAgICAgICdwcmltYXJ5S2V5JzogJ3gnLAogICAgICAgICAgICAnZmllbGRzJzogWwogICAgICAgICAgICAgICAgewogICAgICAgICAgICAgICAgICAgICduYW1lJzogJ3gnLAogICAgICAgICAgICAgICAgICAgICd0eXBlJzogJ251bWJlcicsCiAgICAgICAgICAgICAgICAgICAgJ3RpdGxlJzogZGF0YV9zYXMuX3hheGlzLAogICAgICAgICAgICAgICAgICAgICd1bml0JzogZGF0YV9zYXMuX3h1bml0LAogICAgICAgICAgICAgICAgfSwKICAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgICAnbmFtZSc6ICd5JywKICAgICAgICAgICAgICAgICAgICAndHlwZSc6ICdudW1iZXInLAogICAgICAgICAgICAgICAgICAgICd0aXRsZSc6IGRhdGFfc2FzLl95YXhpcywKICAgICAgICAgICAgICAgICAgICAndW5pdCc6IGRhdGFfc2FzLl95dW5pdCwKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgICAgICB7CiAgICAgICAgICAgICAgICAgICAgJ25hbWUnOiAncmVzaWR1YWxzJywKICAgICAgICAgICAgICAgICAgICAndHlwZSc6ICdudW1iZXInLAogICAgICAgICAgICAgICAgICAgICd0aXRsZSc6IGRhdGFfc2FzLl95YXhpcywKICAgICAgICAgICAgICAgICAgICAndW5pdCc6IGRhdGFfc2FzLl95dW5pdCwKICAgICAgICAgICAgICAgIH0sCiAgICAgICAgICAgIF0KICAgICAgICB9CiAgICApCgogICAgIyBUT0RPOiBNb3ZlIHRoaXMgdG8gYSBsaWJyYXJ5IGZ1bmN0aW9uIE9SIGZpbmQgYSB3YXkgdG8gdXNlIAogICAgIyBQYW5kYXNKU09ORW5jb2RlciBmcm9tIGRhdGFmaXQtZnJhbWV3b3JrOmRhdGF0eXBlcy9wYWNrYWdlLmpzIGluc2lkZQogICAgIyBjb250YWluZXItYmFzZSBiZWZvcmUgZGF0YSBpcyByZXR1cm5lZC4uLgoKICAgICMgQ29udmVydCBkYXRhIGZyb20gUGFuZGFzIERhdGFGcmFtZSB0byBKU09OIHJvd3MgZm9yIHNlcmlhbGl6YXRpb24KICAgIHJvd3MgPSBmaXRfdGFibGUuZGF0YS50b19kaWN0KCJyZWNvcmRzIikKICAgIGZpdF90YWJsZS5kYXRhID0gcm93cwoKICAgIGRhdGFfc2FzX3Jlc291cmNlID0gZGF0YV8xZF90b19yZXNvdXJjZShkYXRhX3NhcykKICAgIHJvd3MgPSBkYXRhX3Nhc19yZXNvdXJjZS5kYXRhLnRvX2RpY3QoInJlY29yZHMiKQogICAgZGF0YV9zYXNfcmVzb3VyY2UuZGF0YSA9IHJvd3MKCiAgICAjIE9wdGltaXNlZCBwYXJhbWV0ZXIgcmVzb3VyY2VzCiAgICBmaXRfbW9kZWxfcGFyYW1zID0gYnVtcHNfbW9kZWxfdG9fcGFyYW1ldGVyX3Jlc291cmNlKG1vZGVsLCBtb2RlbF9wYXJhbXMpCgogICAgaWYgc2ZfbmFtZToKICAgICAgICBmaXRfbW9kZWxfc2ZfcGFyYW1zID0gYnVtcHNfbW9kZWxfdG9fcGFyYW1ldGVyX3Jlc291cmNlKG1vZGVsLCBzZl9tb2RlbF9wYXJhbXMpCgogICAgcmV0dXJuIHsKICAgICAgICAncmVzdWx0X2RhdGEnOiBkYXRhX3Nhc19yZXNvdXJjZSwKICAgICAgICAncmVzdWx0X2ZpdCc6IGZpdF90YWJsZSwKICAgICAgICAncmVzdWx0X3BhcmFtcyc6IGZpdF9tb2RlbF9wYXJhbXMsCiAgICAgICAgJ3Jlc3VsdF9zZl9wYXJhbXMnOiBmaXRfbW9kZWxfc2ZfcGFyYW1zLAogICAgfQoK", + "inputs": [ + { + "name": "data", + "title": "Data", + "description": "SAS data", + "type": "resource", + "resource": "sas_data" + }, + { + "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" + } + }, + "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" + } + ] + }, + "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 + } + }, + "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" + } + ] + }, + "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": "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" + } + ] + }, + "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" + } + }, + "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" + } + ] + }, + "scheme": "memory", + "profile": "data-resource", + "tmpprofile": "parameter-data-resource" + }, + { + "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 + }, + "volfraction_sm": { + "vary": false, + "value": 0.2, + "lowerBound": 0, + "upperBound": 1 + } + }, + "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" + } + ] + }, + "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" + } + }, + "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" + } + ] + }, + "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 + } + }, + "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" + } + ] + }, + "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 + } + }, + "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" + } + ] + }, + "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" + } + }, + "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" + } + ] + }, + "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 + }, + { + "residuals": -27.928703972009654, + "x": 0.251694, + "y": 0.014018198100829875 + } +]; + +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 + } +]; diff --git a/tests/integration/modifiers/vega-test.js b/tests/integration/modifiers/vega-test.js new file mode 100644 index 0000000..cb6b1e1 --- /dev/null +++ b/tests/integration/modifiers/vega-test.js @@ -0,0 +1,15 @@ +import { module, test } from 'qunit'; +import { setupRenderingTest } from 'ember-qunit'; +import { render } from '@ember/test-helpers'; +import { hbs } from 'ember-cli-htmlbars'; + +module('Integration | Modifier | vega', function (hooks) { + setupRenderingTest(hooks); + + // Replace this with your real tests. + test('it renders', async function (assert) { + await render(hbs`
`); + + assert.ok(true); + }); +}); diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a1a7ca6 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,101 @@ +{ + "compilerOptions": { + "target": "ES2021", + "module": "ES2020", + "moduleResolution": "node", + + // Trying to check Ember apps and addons with `allowJs: true` is a recipe + // for many unresolveable type errors, because with *considerable* extra + // configuration it ends up including many files which are *not* valid and + // cannot be: they *appear* to be resolve-able to TS, but are in fact not in + // valid Node-resolveable locations and may not have TS-ready types. This + // will likely improve over time + "allowJs": false, + + // --- TS for SemVer Types compatibility + // Strictness settings -- you should *not* change these: Ember code is not + // guaranteed to type check with these set to looser values. + "strict": true, + "noUncheckedIndexedAccess": true, + + // Interop: these are viral and will require anyone downstream of your + // package to *also* set them to true. If you *must* enable them to consume + // an upstream package, you should document that for downstream consumers to + // be aware of. + // + // These *are* safe for apps to enable, since they do not *have* downstream + // consumers; but leaving them off is still preferred when possible, since + // it makes it easier to switch between apps and addons and have the same + // rules for what can be imported and how. + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + + // --- Lint-style rules + + // TypeScript also supplies some lint-style checks; nearly all of them are + // better handled by ESLint with the `@typescript-eslint`. This one is more + // like a safety check, though, so we leave it on. + "noPropertyAccessFromIndexSignature": true, + + // --- Compilation/integration settings + // Setting `noEmitOnError` here allows ember-cli-typescript to catch errors + // and inject them into Ember CLI's build error reporting, which provides + // nice feedback for when + "noEmitOnError": true, + + // We use Babel for emitting runtime code, because it's very important that + // we always and only use the same transpiler for non-stable features, in + // particular decorators. If you were to change this to `true`, it could + // lead to accidentally generating code with `tsc` instead of Babel, and + // could thereby result in broken code at runtime. + "noEmit": true, + + // Ember makes heavy use of decorators; TS does not support them at all + // without this flag. + "experimentalDecorators": true, + + // Support generation of source maps. Note: you must *also* enable source + // maps in your `ember-cli-babel` config and/or `babel.config.js`. + "declaration": true, + "declarationMap": true, + "inlineSourceMap": true, + "inlineSources": true, + + // The combination of `baseUrl` with `paths` allows Ember's classic package + // layout, which is not resolveable with the Node resolution algorithm, to + // work with TypeScript. + "baseUrl": ".", + "paths": { + "dummy/tests/*": [ + "tests/*" + ], + "dummy/*": [ + "tests/dummy/app/*", + "app/*" + ], + "ember-vega-modifier": [ + "addon" + ], + "ember-vega-modifier/*": [ + "addon/*" + ], + "ember-vega-modifier/test-support": [ + "addon-test-support" + ], + "ember-vega-modifier/test-support/*": [ + "addon-test-support/*" + ], + "*": [ + "types/*" + ] + } + }, + "include": [ + "app/**/*", + "addon/**/*", + "tests/**/*", + "types/**/*", + "test-support/**/*", + "addon-test-support/**/*" + ] +} diff --git a/types/dummy/index.d.ts b/types/dummy/index.d.ts new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/types/dummy/index.d.ts @@ -0,0 +1 @@ + diff --git a/types/global.d.ts b/types/global.d.ts new file mode 100644 index 0000000..871ef68 --- /dev/null +++ b/types/global.d.ts @@ -0,0 +1,6 @@ +// Types for compiled templates +declare module 'ember-vega-modifier/templates/*' { + import { TemplateFactory } from 'htmlbars-inline-precompile'; + const tmpl: TemplateFactory; + export default tmpl; +} diff --git a/yarn.lock b/yarn.lock index a2bba65..c085705 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1346,6 +1346,11 @@ resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.1.tgz#e2c6e73e0bdeb2521d00756d099218e9f5d90a04" integrity sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ== +"@types/clone@~2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@types/clone/-/clone-2.1.1.tgz#9b880d0ce9b1f209b5e0bd6d9caa38209db34024" + integrity sha512-BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg== + "@types/component-emitter@^1.2.10": version "1.2.11" resolved "https://registry.yarnpkg.com/@types/component-emitter/-/component-emitter-1.2.11.tgz#50d47d42b347253817a39709fef03ce66a108506" @@ -1368,6 +1373,182 @@ resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.12.tgz#6b2c510a7ad7039e98e7b8d3d6598f4359e5c080" integrity sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw== +"@types/ember-qunit@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@types/ember-qunit/-/ember-qunit-5.0.0.tgz#e39749d129dc7643df13d8df94225867c57d006e" + integrity sha512-p7ZZUbohO5E57JsUC6fxD8gveV9LcSnPIx2J86WF7FNLno/2oKvWnI+j5AtobSoy86hfZZaYjiIuW0dNe1eblQ== + dependencies: + "@types/ember-resolver" "*" + "@types/ember__test" "*" + "@types/ember__test-helpers" "*" + "@types/qunit" "*" + +"@types/ember-resolver@*", "@types/ember-resolver@^5.0.11": + version "5.0.11" + resolved "https://registry.yarnpkg.com/@types/ember-resolver/-/ember-resolver-5.0.11.tgz#db931fb5c2d6bda4e29adea132fb48c7ed17aa62" + integrity sha512-2BL9d8kBdNUO9Je6KBF7Q34BSwbQG6vzCzTeSopt8FAmLDfaDU9xDDdyZobpfy9GR36mCSeG9b9wr4bgYh/MYw== + dependencies: + "@types/ember__object" "*" + +"@types/ember@*": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember/-/ember-4.0.0.tgz#0c29294fa0e5aa07ba6090f60243707dde8fc411" + integrity sha512-IR4o8OkFgoiRKVLRI8URvyNhEBSkjO5DXp2900/TptxOl0Retu8/tKtFaRTwkqteg2a0/6zXAA1rpFb3BbxNpA== + dependencies: + "@types/ember__application" "*" + "@types/ember__array" "*" + "@types/ember__component" "*" + "@types/ember__controller" "*" + "@types/ember__debug" "*" + "@types/ember__engine" "*" + "@types/ember__error" "*" + "@types/ember__object" "*" + "@types/ember__polyfills" "*" + "@types/ember__routing" "*" + "@types/ember__runloop" "*" + "@types/ember__service" "*" + "@types/ember__string" "*" + "@types/ember__template" "*" + "@types/ember__test" "*" + "@types/ember__utils" "*" + "@types/htmlbars-inline-precompile" "*" + "@types/rsvp" "*" + +"@types/ember__application@*", "@types/ember__application@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__application/-/ember__application-4.0.0.tgz#a4d2fead37845550dad83bb1fd8afd52052563a7" + integrity sha512-1Atwevfyu1/vjiezPPdP4s96BxWGelEQlCJRU5ZQV9WlzVuMTuCDPumZ1lQdS4/EYycFZeod030FjE3CT9mZFA== + dependencies: + "@types/ember" "*" + "@types/ember-resolver" "*" + "@types/ember__application" "*" + "@types/ember__engine" "*" + "@types/ember__object" "*" + "@types/ember__routing" "*" + +"@types/ember__array@*", "@types/ember__array@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@types/ember__array/-/ember__array-4.0.1.tgz#b62126ed080b29351a5633bd28e595a5cfee27ce" + integrity sha512-fwrYcYmFbsEnu77Xn9z3WSAp6tqpwn8Wksx8RzGg5pib6VmFD/dkT5jefwoKtlcImsxUNEoP1VgWKrdrpGaQcg== + dependencies: + "@types/ember" "*" + "@types/ember__array" "*" + "@types/ember__object" "*" + +"@types/ember__component@*", "@types/ember__component@^4.0.8": + version "4.0.8" + resolved "https://registry.yarnpkg.com/@types/ember__component/-/ember__component-4.0.8.tgz#09a5f954f734fcbe6c988a173f4de4fa09084470" + integrity sha512-YVGn/kpWtpZAu6I2XtS9fsZV+78/sON5NyKzK5EOUyMiCwwpbUr5XL8dTSdkHehYrsfzJikcYvqpmwbNZSJxGQ== + dependencies: + "@types/ember" "*" + "@types/ember__component" "*" + "@types/ember__object" "*" + +"@types/ember__controller@*", "@types/ember__controller@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__controller/-/ember__controller-4.0.0.tgz#f8891840ebb84cb54eba82385e3b2dbe805d692a" + integrity sha512-rxJt8McWaaIZFsu2z+IB7TvgSjglAPb07Pj0F7OGvZQ3j9NV7kreqqics/cHQIEBG3GgVAewBE+xI5D6PNq/vg== + dependencies: + "@types/ember__object" "*" + +"@types/ember__debug@*", "@types/ember__debug@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@types/ember__debug/-/ember__debug-4.0.1.tgz#1e4a8a1045484295dddc7bd4356d0b3014b0d509" + integrity sha512-qrKk6Ujh6oev7TSB0eB7AEmQWKCt5t84k/K3hDvJXUiLU3YueN0kyt7aPoIAkVjC111A9FqDugl9n60+N5yeEw== + dependencies: + "@types/ember-resolver" "*" + "@types/ember__debug" "*" + "@types/ember__object" "*" + +"@types/ember__engine@*", "@types/ember__engine@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__engine/-/ember__engine-4.0.0.tgz#e39c06d98c7a085912508e8257c48a70196c1a87" + integrity sha512-AfJHIWaBeZ+TZWJbSoUz7LK+z8uNPjMqmucz8C5u+EV2NDiaq02oGPTB4SeKInLNBMga8c5xvz0gVefZJnTBnQ== + dependencies: + "@types/ember-resolver" "*" + "@types/ember__engine" "*" + "@types/ember__object" "*" + +"@types/ember__error@*", "@types/ember__error@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__error/-/ember__error-4.0.0.tgz#c73037e65c1c3d7060b97f98135ba73c712972b1" + integrity sha512-1WVMR65/QTqPzMWafK2vKEwGafILxRxItbWJng6eEJyKDHRvvHFCl3XzJ4dQjdFcfOlozsn0mmEYCpjKoyzMqA== + +"@types/ember__object@*", "@types/ember__object@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/ember__object/-/ember__object-4.0.2.tgz#070f1a36961f7df777e1fceed2551a648db0fd23" + integrity sha512-m3xjqjs7bGVT0+QXlgIoDMsp/oqePobnf4IiVoFdXLBpGCICiOAEi7HuUtCLi57WTvx0lYsS9hE1vgGyZn9qnw== + dependencies: + "@types/ember" "*" + "@types/ember__object" "*" + "@types/rsvp" "*" + +"@types/ember__polyfills@*", "@types/ember__polyfills@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__polyfills/-/ember__polyfills-4.0.0.tgz#d83ae94ff2890ad47798315426d9916f39ff4ae6" + integrity sha512-Yk85J18y1Ys6agoIBLdJWu6ZkWe68oaC9JPyW7BhOINVNKm89PXrR/yxdOJ1/vN1Hj7ZZQKq+4X6fz3sxebavA== + +"@types/ember__routing@*", "@types/ember__routing@^4.0.7": + version "4.0.7" + resolved "https://registry.yarnpkg.com/@types/ember__routing/-/ember__routing-4.0.7.tgz#16cc442fcee2dda06dc79bb3d7fd5002f154ad07" + integrity sha512-iWsk8C0WIqqK6dgK1UdJisyQLs6rVq/+A2f7fXjdLJHA+SAHK8aqfCHHFkTuiy4sXkM/PBINmP9qHpk4KrScbw== + dependencies: + "@types/ember" "*" + "@types/ember__controller" "*" + "@types/ember__object" "*" + "@types/ember__routing" "*" + "@types/ember__service" "*" + +"@types/ember__runloop@*", "@types/ember__runloop@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@types/ember__runloop/-/ember__runloop-4.0.1.tgz#7f6e45af7dbf1158655ef3ad852852b0bf87065f" + integrity sha512-3HrsavVrdgxUkYptQUv/e9RwJG02cV9WbnJxKSvwl9ZYpeX4JbuDVucjTWk5BAvJUVtbiQLPGzLEHZ6daoCbbg== + dependencies: + "@types/ember" "*" + "@types/ember__runloop" "*" + +"@types/ember__service@*", "@types/ember__service@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__service/-/ember__service-4.0.0.tgz#ae6164e3b5d927fe17513b49867b52dc0222490d" + integrity sha512-FbN2y6tRb6NIV+kmzQcxRAoB17vH7qHCfzcKlxsmt2EI7fboLTcdeKpZKPBEromRXg83fx67QX1b95WcwSGtaw== + dependencies: + "@types/ember__object" "*" + +"@types/ember__string@*", "@types/ember__string@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@types/ember__string/-/ember__string-3.0.9.tgz#669188ccea5a61777a36bf88a05ba6875dc9b7d7" + integrity sha512-v9QwhhfTTgJH6PCviWlz3JgcraYdSWQoTg2XN5Z7bPgXMJYXczxB/N22L9FnuFgDYdN87yXdTJv6E9rw2YGEhw== + +"@types/ember__template@*", "@types/ember__template@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__template/-/ember__template-4.0.0.tgz#3423b6ddc3a6cf0b13a1e0fd5f1a84eec664a095" + integrity sha512-51bAEQecMKpDYRXMmVVfU7excrtxDJixRU7huUsAm4acBCqL2+TmMgTqZEkOQSNy6qnKUc2ktSzX28a9//C6pA== + +"@types/ember__test-helpers@*", "@types/ember__test-helpers@^2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@types/ember__test-helpers/-/ember__test-helpers-2.6.1.tgz#2835bc60fd7daa93292d669fa9b61706836fe2e7" + integrity sha512-d2RShuBSaBzp04nt8ad+mNE1F6rbIcIIud8WFUVQqGSUGHuZQUq1051Jza12ksCUnXduyE/J9UDjyZvNKOHeBQ== + dependencies: + "@types/ember-resolver" "*" + "@types/ember__application" "*" + "@types/ember__error" "*" + "@types/ember__test-helpers" "*" + "@types/htmlbars-inline-precompile" "*" + +"@types/ember__test@*", "@types/ember__test@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__test/-/ember__test-4.0.0.tgz#1a7dcbe24fedfc34fa60547b03f130a14397c4b6" + integrity sha512-vI/qhZkexJLN25lp1UAfjJv4R6pPtrQlAmPDXkKd8PNjwRk3KANFVRzdghN7HWhXgQ+s91PbvxEnZ3eZiRPdcQ== + dependencies: + "@types/ember__application" "*" + +"@types/ember__utils@*", "@types/ember__utils@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/ember__utils/-/ember__utils-4.0.0.tgz#a7e9e11334b5e203324e6155ff74c2b33ec21567" + integrity sha512-gwSFUm+6t6StkQxSllbn9lqRms/dXMCQDieRfaTGN8IRatnKjJoEPME3A0T6O9afsU6viBQyqlPyFxsOWknYkg== + dependencies: + "@types/ember" "*" + "@types/eslint-scope@^3.7.3": version "3.7.3" resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.3.tgz#125b88504b61e3c8bc6f870882003253005c3224" @@ -1397,6 +1578,11 @@ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== +"@types/estree@^0.0.50": + version "0.0.50" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" + integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== + "@types/express-serve-static-core@^4.17.18": version "4.17.28" resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz#c47def9f34ec81dc6328d0b1b5303d1ec98d86b8" @@ -1438,11 +1624,21 @@ "@types/minimatch" "*" "@types/node" "*" +"@types/htmlbars-inline-precompile@*", "@types/htmlbars-inline-precompile@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/htmlbars-inline-precompile/-/htmlbars-inline-precompile-3.0.0.tgz#4d3f19eeb2af9f4605620e13a566dae3952a4f68" + integrity sha512-n1YwM/Q937KmS9W4Ytran71nzhhcT2FDQI00eRGBNUyeErLZspBdDBewEe1F8tcRlUdsCVo2AZBLJsRjEceTRg== + "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.11" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== +"@types/lodash@^4.14.182": + version "4.14.182" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.182.tgz#05301a4d5e62963227eaafe0ce04dd77c54ea5c2" + integrity sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q== + "@types/mime@^1": version "1.3.2" resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" @@ -1463,6 +1659,11 @@ resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== +"@types/qunit@*", "@types/qunit@^2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@types/qunit/-/qunit-2.11.3.tgz#2900adb58eee250c96b2d33a923cc4eae70d72ba" + integrity sha512-UF/4jDehcpRlMXzKXi2Z59Id48/uYlMeUDhYdjFrVVwy30Eud/e60Ok3yVjSPlHprafj3B315uFTrF6eqQTeSw== + "@types/range-parser@*": version "1.2.4" resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" @@ -1476,6 +1677,11 @@ "@types/glob" "*" "@types/node" "*" +"@types/rsvp@*", "@types/rsvp@^4.0.4": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@types/rsvp/-/rsvp-4.0.4.tgz#55e93e7054027f1ad4b4ebc1e60e59eb091e2d32" + integrity sha512-J3Ol++HCC7/hwZhanDvggFYU/GtxHxE/e7cGRWxR04BF7Tt3TqJZ84BkzQgDxmX0uu8IagiyfmfoUlBACh2Ilg== + "@types/serve-static@*": version "1.13.10" resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.10.tgz#f5e0ce8797d2d7cc5ebeda48a52c96c4fa47a8d9" @@ -1926,7 +2132,7 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-to-html@^0.6.6: +ansi-to-html@^0.6.15, ansi-to-html@^0.6.6: version "0.6.15" resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.15.tgz#ac6ad4798a00f6aa045535d7f6a9cb9294eebea7" integrity sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ== @@ -2009,6 +2215,11 @@ array-equal@^1.0.0: resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" integrity sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA== +array-flat-polyfill@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-flat-polyfill/-/array-flat-polyfill-1.0.1.tgz#1e3a4255be619dfbffbfd1d635c1cf357cd034e7" + integrity sha512-hfJmKupmQN0lwi0xG6FQ5U8Rd97RnIERplymOv/qpq8AoNKPPAnxJadjFA23FNWm88wykh9HmpLJUUwUtNU/iw== + array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" @@ -2709,7 +2920,7 @@ broccoli-config-replace@^1.1.2: debug "^2.2.0" fs-extra "^0.24.0" -broccoli-debug@^0.6.4, broccoli-debug@^0.6.5: +broccoli-debug@^0.6.1, broccoli-debug@^0.6.4, broccoli-debug@^0.6.5: version "0.6.5" resolved "https://registry.yarnpkg.com/broccoli-debug/-/broccoli-debug-0.6.5.tgz#164a5cdafd8936e525e702bf8f91f39d758e2e78" integrity sha512-RIVjHvNar9EMCLDW/FggxFRXqpjhncM/3qq87bn/y+/zR9tqEkHvTqbyOc4QnB97NO2m6342w4wGkemkaeOuWg== @@ -2797,7 +3008,7 @@ broccoli-kitchen-sink-helpers@^0.3.1: glob "^5.0.10" mkdirp "^0.5.1" -broccoli-merge-trees@^3.0.1, broccoli-merge-trees@^3.0.2: +broccoli-merge-trees@^3.0.0, broccoli-merge-trees@^3.0.1, broccoli-merge-trees@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/broccoli-merge-trees/-/broccoli-merge-trees-3.0.2.tgz#f33b451994225522b5c9bcf27d59decfd8ba537d" integrity sha512-ZyPAwrOdlCddduFbsMyyFzJUrvW6b04pMvDiAQZrCwghlvgowJDY+EfoXn+eR1RRA5nmGHJ+B68T63VnpRiT1A== @@ -2847,7 +3058,7 @@ broccoli-output-wrapper@^3.2.5: heimdalljs-logger "^0.1.10" symlink-or-copy "^1.2.0" -broccoli-persistent-filter@^1.1.6, broccoli-persistent-filter@^1.4.3: +broccoli-persistent-filter@^1.1.5, broccoli-persistent-filter@^1.1.6, broccoli-persistent-filter@^1.4.3: version "1.4.6" resolved "https://registry.yarnpkg.com/broccoli-persistent-filter/-/broccoli-persistent-filter-1.4.6.tgz#80762d19000880a77da33c34373299c0f6a3e615" integrity sha512-0RejLwoC95kv4kta8KAa+FmECJCK78Qgm8SRDEK7YyU0N9Cx6KpY3UCDy9WELl3mCXLN8TokNxc7/hp3lL4lfw== @@ -2996,6 +3207,14 @@ broccoli-stew@^3.0.0: symlink-or-copy "^1.2.0" walk-sync "^1.1.3" +broccoli-string-replace@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/broccoli-string-replace/-/broccoli-string-replace-0.1.2.tgz#1ed92f85680af8d503023925e754e4e33676b91f" + integrity sha512-QHESTrrrPlKuXQNWsvXawSQbV2g34wCZ5oKgd6bntdOuN8VHxbg1BCBHqVY5HxXJhWelimgGxj3vI7ECkyij8g== + dependencies: + broccoli-persistent-filter "^1.1.5" + minimatch "^3.0.3" + broccoli-terser-sourcemap@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/broccoli-terser-sourcemap/-/broccoli-terser-sourcemap-4.1.0.tgz#5f37441b64a3b6bfb0c67e9af232259c9576f115" @@ -3484,7 +3703,7 @@ clone@^1.0.2: resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== -clone@^2.1.2: +clone@^2.1.2, clone@~2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== @@ -3536,6 +3755,11 @@ colors@^1.4.0: resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== +commander@2, commander@^2.20.0, commander@^2.6.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + commander@2.8.x: version "2.8.1" resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" @@ -3543,16 +3767,11 @@ commander@2.8.x: dependencies: graceful-readlink ">= 1.0.0" -commander@7.2.0: +commander@7, commander@7.2.0: version "7.2.0" resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== -commander@^2.20.0, commander@^2.6.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - commander@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" @@ -3869,6 +4088,135 @@ cyclist@^1.0.1: resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" integrity sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A== +"d3-array@1 - 3", "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@^3.1.1: + version "3.1.6" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.1.6.tgz#0342c835925826f49b4d16eb7027aec334ffc97d" + integrity sha512-DCbBBNuKOeiR9h04ySRBMW52TFVc91O9wJziuyXw6Ztmy8D3oZbmCkOO3UHKC7ceNJsN2Mavo9+vwV8EAEUXzA== + dependencies: + internmap "1 - 2" + +d3-array@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.1.1.tgz#7797eb53ead6b9083c75a45a681e93fc41bc468c" + integrity sha512-33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ== + dependencies: + internmap "1 - 2" + +"d3-color@1 - 3", d3-color@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" + integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== + +d3-delaunay@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.2.tgz#7fd3717ad0eade2fc9939f4260acfb503f984e92" + integrity sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ== + dependencies: + delaunator "5" + +"d3-dispatch@1 - 3": + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e" + integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg== + +d3-dsv@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73" + integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q== + dependencies: + commander "7" + iconv-lite "0.6" + rw "1" + +d3-force@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4" + integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg== + dependencies: + d3-dispatch "1 - 3" + d3-quadtree "1 - 3" + d3-timer "1 - 3" + +"d3-format@1 - 3", d3-format@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" + integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== + +d3-geo-projection@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz#dc229e5ead78d31869a4e87cf1f45bd2716c48ca" + integrity sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg== + dependencies: + commander "7" + d3-array "1 - 3" + d3-geo "1.12.0 - 3" + +"d3-geo@1.12.0 - 3", d3-geo@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.0.1.tgz#4f92362fd8685d93e3b1fae0fd97dc8980b1ed7e" + integrity sha512-Wt23xBych5tSy9IYAM1FR2rWIBFWa52B/oF/GYe5zbdHrg08FU8+BuI6X4PvTwPDdqdAdq04fuWJpELtsaEjeA== + dependencies: + d3-array "2.5.0 - 3" + +d3-hierarchy@^3.1.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6" + integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA== + +"d3-interpolate@1.2.0 - 3", d3-interpolate@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" + integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== + dependencies: + d3-color "1 - 3" + +"d3-path@1 - 3", d3-path@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.0.1.tgz#f09dec0aaffd770b7995f1a399152bf93052321e" + integrity sha512-gq6gZom9AFZby0YLduxT1qmrp4xpBA1YZr19OI717WIdKE2OM5ETq5qrHLb301IgxhLwcuxvGZVLeeWc/k1I6w== + +"d3-quadtree@1 - 3": + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f" + integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw== + +d3-scale@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" + integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== + dependencies: + d3-array "2.10.0 - 3" + d3-format "1 - 3" + d3-interpolate "1.2.0 - 3" + d3-time "2.1.1 - 3" + d3-time-format "2 - 4" + +d3-shape@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.1.0.tgz#c8a495652d83ea6f524e482fca57aa3f8bc32556" + integrity sha512-tGDh1Muf8kWjEDT/LswZJ8WF85yDZLvVJpYU9Nq+8+yW1Z5enxrmXOhTArlkaElU+CTn0OTVNli+/i+HP45QEQ== + dependencies: + d3-path "1 - 3" + +"d3-time-format@2 - 4", d3-time-format@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" + integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== + dependencies: + d3-time "1 - 3" + +"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.0.0.tgz#65972cb98ae2d4954ef5c932e8704061335d4975" + integrity sha512-zmV3lRnlaLI08y9IMRXSDshQb5Nj77smnfpnd2LrBa/2K281Jijactokeak14QacHs/kKq0AQ121nidNYlarbQ== + dependencies: + d3-array "2 - 3" + +"d3-timer@1 - 3", d3-timer@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0" + integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== + dag-map@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/dag-map/-/dag-map-2.0.2.tgz#9714b472de82a1843de2fba9b6876938cab44c68" @@ -3964,6 +4312,13 @@ define-property@^2.0.2: is-descriptor "^1.0.2" isobject "^3.0.1" +delaunator@5: + version "5.0.0" + resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.0.tgz#60f052b28bd91c9b4566850ebf7756efe821d81b" + integrity sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw== + dependencies: + robust-predicates "^3.0.0" + delegates@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" @@ -4148,7 +4503,7 @@ ember-auto-import@^1.11.3: walk-sync "^0.3.3" webpack "^4.43.0" -ember-auto-import@^2.4.0, ember-auto-import@^2.4.1: +ember-auto-import@^2.4.0, ember-auto-import@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/ember-auto-import/-/ember-auto-import-2.4.2.tgz#d4d3bc6885a11cf124f606f5c37169bdf76e37ae" integrity sha512-REh+1aJWpTkvN42a/ga41OuRpUsSW7UQfPr2wPtYx56o/xoSNhVBXejy7yV9ObrkN7gogz6fs2xZwih5cOwpYg== @@ -4331,7 +4686,7 @@ ember-cli-sri@^2.1.1: dependencies: broccoli-sri-hash "^2.1.0" -ember-cli-string-utils@^1.1.0: +ember-cli-string-utils@^1.0.0, ember-cli-string-utils@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/ember-cli-string-utils/-/ember-cli-string-utils-1.1.0.tgz#39b677fc2805f55173735376fcef278eaa4452a1" integrity sha512-PlJt4fUDyBrC/0X+4cOpaGCiMawaaB//qD85AXmDRikxhxVzfVdpuoec02HSiTGTTB85qCIzWBIh8lDOiMyyFg== @@ -4343,6 +4698,13 @@ ember-cli-terser@^4.0.2: dependencies: broccoli-terser-sourcemap "^4.1.0" +ember-cli-test-info@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-test-info/-/ember-cli-test-info-1.0.0.tgz#ed4e960f249e97523cf891e4aed2072ce84577b4" + integrity sha512-dEVTIpmUfCzweC97NGf6p7L6XKBwV2GmSM4elmzKvkttEp5P7AvGA9uGyN4GqFq+RwhW+2b0I2qlX00w+skm+A== + dependencies: + ember-cli-string-utils "^1.0.0" + ember-cli-test-loader@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/ember-cli-test-loader/-/ember-cli-test-loader-3.0.0.tgz#1c036fc48de36155355fcda3266af63f977826f1" @@ -4358,6 +4720,27 @@ ember-cli-typescript-blueprint-polyfill@^0.1.0: chalk "^4.0.0" remove-types "^1.0.0" +ember-cli-typescript-blueprints@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-typescript-blueprints/-/ember-cli-typescript-blueprints-3.0.0.tgz#88595df71ddca9a7cb3ef1fb1626a1c2528da1b6" + integrity sha512-nJScjIjwDY96q9eiIBse9npLht/1FNmDRMpoTLJUrgSTzmx7/S6JhlH4BrMELkLCvtPkWoduDNBGiGBdCqf9FA== + dependencies: + chalk "^2.4.1" + ember-cli-babel "^7.0.0" + ember-cli-get-component-path-option "^1.0.0" + ember-cli-is-package-missing "^1.0.0" + ember-cli-normalize-entity-name "^1.0.0" + ember-cli-path-utils "^1.0.0" + ember-cli-string-utils "^1.1.0" + ember-cli-test-info "^1.0.0" + ember-cli-valid-component-name "^1.0.0" + ember-cli-version-checker "^3.0.0" + ember-router-generator "^2.0.0" + exists-sync "^0.1.0" + fs-extra "^8.0.0" + inflection "^1.12.0" + silent-error "^1.1.0" + ember-cli-typescript@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/ember-cli-typescript/-/ember-cli-typescript-3.0.0.tgz#3b838d1ce9e4d22a98e68da22ceac6dc0cfd9bfc" @@ -4393,7 +4776,30 @@ ember-cli-typescript@^2.0.2: stagehand "^1.0.0" walk-sync "^1.0.0" -ember-cli-version-checker@^3.1.3: +ember-cli-typescript@^5.0.0, ember-cli-typescript@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ember-cli-typescript/-/ember-cli-typescript-5.1.0.tgz#460eb848564e29d64f2b36b2a75bbe98172b72a4" + integrity sha512-wEZfJPkjqFEZAxOYkiXsDrJ1HY75e/6FoGhQFg8oNFJeGYpIS/3W0tgyl1aRkSEEN1NRlWocDubJ4aZikT+RTA== + dependencies: + ansi-to-html "^0.6.15" + broccoli-stew "^3.0.0" + debug "^4.0.0" + execa "^4.0.0" + fs-extra "^9.0.1" + resolve "^1.5.0" + rsvp "^4.8.1" + semver "^7.3.2" + stagehand "^1.0.0" + walk-sync "^2.2.0" + +ember-cli-valid-component-name@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-valid-component-name/-/ember-cli-valid-component-name-1.0.0.tgz#71550ce387e0233065f30b30b1510aa2dfbe87ef" + integrity sha512-6ZtIG0UMmGwUUju5dwLLS98eZRLQxpMqXfpMUkZ8t+7MBdX6gCjVYHSCdGkDlVAGF06J3mgpAWHVrsyRLRn7/g== + dependencies: + silent-error "^1.0.0" + +ember-cli-version-checker@^3.0.0, ember-cli-version-checker@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/ember-cli-version-checker/-/ember-cli-version-checker-3.1.3.tgz#7c9b4f5ff30fdebcd480b1c06c4de43bb51c522c" integrity sha512-PZNSvpzwWgv68hcXxyjREpj3WWb81A7rtYNQq1lLEgrWIchF8ApKJjWP3NBpHjaatwILkZAV8klair5WFlXAKg== @@ -4517,7 +4923,7 @@ ember-cli@~4.4.0: workerpool "^6.2.0" yam "^1.0.0" -ember-compatibility-helpers@^1.1.2, ember-compatibility-helpers@^1.2.1: +ember-compatibility-helpers@^1.1.2, ember-compatibility-helpers@^1.2.1, ember-compatibility-helpers@^1.2.5: version "1.2.6" resolved "https://registry.yarnpkg.com/ember-compatibility-helpers/-/ember-compatibility-helpers-1.2.6.tgz#603579ab2fb14be567ef944da3fc2d355f779cd8" integrity sha512-2UBUa5SAuPg8/kRVaiOfTwlXdeVweal1zdNPibwItrhR0IvPrXpaqwJDlEZnWKEoB+h33V0JIfiWleSG6hGkkA== @@ -4555,6 +4961,29 @@ ember-load-initializers@^2.1.2: ember-cli-babel "^7.13.0" ember-cli-typescript "^2.0.2" +ember-lodash@^4.19.5: + version "4.19.5" + resolved "https://registry.yarnpkg.com/ember-lodash/-/ember-lodash-4.19.5.tgz#489293aceb25c8b165e9b0b802c4bd1e3a4cda37" + integrity sha512-3NMtKvEMpipaxRuf5jbihQ5iGWnZyYssxLd0xDbqzxTU/3rHhnDIVS3+qPnw5AT0iH+hjlFlk1M4Ekv/K8a+bw== + dependencies: + broccoli-debug "^0.6.1" + broccoli-funnel "^2.0.1" + broccoli-merge-trees "^3.0.0" + broccoli-string-replace "^0.1.1" + ember-cli-babel "^7.0.0" + lodash-es "^4.17.4" + +ember-modifier@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/ember-modifier/-/ember-modifier-3.2.7.tgz#f2d35b7c867cbfc549e1acd8d8903c5ecd02ea4b" + integrity sha512-ezcPQhH8jUfcJQbbHji4/ZG/h0yyj1jRDknfYue/ypQS8fM8LrGcCMo0rjDZLzL1Vd11InjNs3BD7BdxFlzGoA== + dependencies: + ember-cli-babel "^7.26.6" + ember-cli-normalize-entity-name "^1.0.0" + ember-cli-string-utils "^1.1.0" + ember-cli-typescript "^5.0.0" + ember-compatibility-helpers "^1.2.5" + ember-page-title@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/ember-page-title/-/ember-page-title-7.0.0.tgz#11bebd4901d80757646c9006954a13e4fc187421" @@ -5168,6 +5597,11 @@ execa@^5.1.1: signal-exit "^3.0.3" strip-final-newline "^2.0.0" +exists-sync@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/exists-sync/-/exists-sync-0.1.0.tgz#318d545213d2b2a31499e92c35f74c94196a22f7" + integrity sha512-qEfFekfBVid4b14FNug/RNY1nv+BADnlzKGHulc+t6ZLqGY4kdHGh1iFha8lnE3sJU/1WzMzKRNxS6EvSakJUg== + exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" @@ -5273,7 +5707,7 @@ extract-stack@^2.0.0: resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-2.0.0.tgz#11367bc865bfcd9bc0db3123e5edb57786f11f9b" integrity sha512-AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ== -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3, fast-deep-equal@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== @@ -5294,7 +5728,7 @@ fast-glob@^3.0.3, fast-glob@^3.2.11, fast-glob@^3.2.9: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@^2.0.0: +fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -6311,6 +6745,13 @@ iconv-lite@0.4.24, iconv-lite@^0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" +iconv-lite@0.6: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + icss-utils@^5.0.0, icss-utils@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" @@ -6354,7 +6795,7 @@ infer-owner@^1.0.3: resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== -inflection@^1.13.1, inflection@^1.13.2: +inflection@^1.12.0, inflection@^1.13.1, inflection@^1.13.2: version "1.13.2" resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.13.2.tgz#15e8c797c6c3dadf31aa658f8df8a4ea024798b0" integrity sha512-cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw== @@ -6445,6 +6886,11 @@ internal-slot@^1.0.3: has "^1.0.3" side-channel "^1.0.4" +"internmap@1 - 2": + version "2.0.3" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" + integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== + invariant@^2.2.2: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" @@ -6889,6 +7335,11 @@ json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: dependencies: jsonify "~0.0.0" +json-stringify-pretty-compact@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz#f71ef9d82ef16483a407869556588e91b681d9ab" + integrity sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA== + json5@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" @@ -7101,6 +7552,11 @@ locate-path@^7.1.0: dependencies: p-locate "^6.0.0" +lodash-es@^4.17.4: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + lodash._baseassign@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" @@ -7597,7 +8053,7 @@ minimalistic-crypto-utils@^1.0.1: resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== -"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1: +"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -7783,7 +8239,7 @@ no-case@^3.0.4: lower-case "^2.0.2" tslib "^2.0.3" -node-fetch@^2.6.0: +node-fetch@^2.6.0, node-fetch@^2.6.7: version "2.6.7" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== @@ -8033,6 +8489,10 @@ 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" @@ -9093,6 +9553,11 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" +robust-predicates@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.1.tgz#ecde075044f7f30118682bd9fb3f123109577f9a" + integrity sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g== + rsvp@^3.0.14, rsvp@^3.0.17, rsvp@^3.0.18, rsvp@^3.0.21, rsvp@^3.0.6, rsvp@^3.1.0: version "3.6.2" resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" @@ -9127,6 +9592,11 @@ run-queue@^1.0.0, run-queue@^1.0.3: dependencies: aproba "^1.1.1" +rw@1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" + integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= + rxjs@^6.4.0, rxjs@^6.6.0: version "6.6.7" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" @@ -9161,7 +9631,7 @@ safe-stable-stringify@^2.3.1: resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz#ab67cbe1fe7d40603ca641c5e765cb942d04fc73" integrity sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg== -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.1.0: +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -9384,7 +9854,7 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -silent-error@^1.0.0, silent-error@^1.0.1, silent-error@^1.1.1: +silent-error@^1.0.0, silent-error@^1.0.1, silent-error@^1.1.0, silent-error@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/silent-error/-/silent-error-1.1.1.tgz#f72af5b0d73682a2ba1778b7e32cd8aa7c2d8662" integrity sha512-n4iEKyNcg4v6/jpb3c0/iyH2G1nzUNl7Gpqtn/mHIJK9S/q/7MCfoO4rwVOoO59qPFIc0hVHvMbiOJ0NdtxKKw== @@ -10187,6 +10657,13 @@ toidentifier@1.0.1: resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== +topojson-client@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99" + integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw== + dependencies: + commander "2" + tr46@~0.0.3: version "0.0.3" resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" @@ -10229,6 +10706,11 @@ tslib@^2.0.3, tslib@^2.3.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== +tslib@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" @@ -10281,6 +10763,11 @@ typescript-memoize@^1.0.0-alpha.3, typescript-memoize@^1.0.1: resolved "https://registry.yarnpkg.com/typescript-memoize/-/typescript-memoize-1.1.0.tgz#4a8f512d06fc995167c703a3592219901db8bc79" integrity sha512-LQPKVXK8QrBBkL/zclE6YgSWn0I8ew5m0Lf+XL00IwMhlotqRLlzHV+BRrljVQIc+NohUAuQP7mg4HQwrx5Xbg== +typescript@^4.7.2: + version "4.7.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.2.tgz#1f9aa2ceb9af87cca227813b4310fff0b51593c4" + integrity sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A== + uc.micro@^1.0.1, uc.micro@^1.0.5: version "1.0.6" resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" @@ -10507,6 +10994,344 @@ vary@^1, vary@~1.1.2: resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= +vega-canvas@^1.2.5, vega-canvas@^1.2.6: + version "1.2.6" + resolved "https://registry.yarnpkg.com/vega-canvas/-/vega-canvas-1.2.6.tgz#55e032ce9a62acd17229f6bac66d99db3d6879cd" + integrity sha512-rgeYUpslYn/amIfnuv3Sw6n4BGns94OjjZNtUc9IDji6b+K8LGS/kW+Lvay8JX/oFqtulBp8RLcHN6QjqPLA9Q== + +vega-crossfilter@~4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/vega-crossfilter/-/vega-crossfilter-4.1.0.tgz#b6c5a728ce987f2514074adb22cf86b9bc63e0c8" + integrity sha512-aiOJcvVpiEDIu5uNc4Kf1hakkkPaVOO5fw5T4RSFAw6GEDbdqcB6eZ1xePcsLVic1hxYD5SGiUPdiiIs0SMh2g== + dependencies: + d3-array "^3.1.1" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-dataflow@^5.7.3, vega-dataflow@^5.7.4, vega-dataflow@~5.7.4: + version "5.7.4" + resolved "https://registry.yarnpkg.com/vega-dataflow/-/vega-dataflow-5.7.4.tgz#7cafc0a41b9d0b11dd2e34a513f8b7ca345dfd74" + integrity sha512-JGHTpUo8XGETH3b1V892we6hdjzCWB977ybycIu8DPqRoyrZuj6t1fCVImazfMgQD1LAfJlQybWP+alwKDpKig== + dependencies: + vega-format "^1.0.4" + vega-loader "^4.3.2" + vega-util "^1.16.1" + +vega-encode@~4.9.0: + version "4.9.0" + resolved "https://registry.yarnpkg.com/vega-encode/-/vega-encode-4.9.0.tgz#3dd1031056bb8029f262afc4b4d58372c8f073a6" + integrity sha512-etv2BHuCn9bzEc0cxyA2TnbtcAFQGVFmsaqmB4sgBCaqTSEfXMoX68LK3yxBrsdm5LU+y3otJVoewi3qWYCx2g== + dependencies: + d3-array "^3.1.1" + d3-interpolate "^3.0.1" + vega-dataflow "^5.7.3" + vega-scale "^7.0.3" + vega-util "^1.15.2" + +vega-event-selector@^3.0.0, vega-event-selector@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/vega-event-selector/-/vega-event-selector-3.0.0.tgz#7b855ac0c3ddb59bc5b5caa0d96dbbc9fbd33a4c" + integrity sha512-Gls93/+7tEJGE3kUuUnxrBIxtvaNeF01VIFB2Q2Of2hBIBvtHX74jcAdDtkh5UhhoYGD8Q1J30P5cqEBEwtPoQ== + +vega-expression@^5.0.0, vega-expression@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/vega-expression/-/vega-expression-5.0.0.tgz#938f26689693a1e0d26716030cdaed43ca7abdfb" + integrity sha512-y5+c2frq0tGwJ7vYXzZcfVcIRF/QGfhf2e+bV1Z0iQs+M2lI1II1GPDdmOcMKimpoCVp/D61KUJDIGE1DSmk2w== + dependencies: + "@types/estree" "^0.0.50" + vega-util "^1.16.0" + +vega-force@~4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/vega-force/-/vega-force-4.1.0.tgz#cc8dea972baa52adc60840ff744ebb9e57d8f1f5" + integrity sha512-Sssf8iH48vYlz+E7/RpU+SUaJbuLoIL87U4tG2Av4gf/hRiImU49x2TI3EuhFWg1zpaCFxlz0CAaX++Oh/gjdw== + dependencies: + d3-force "^3.0.0" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-format@^1.0.4, vega-format@^1.1.0, vega-format@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/vega-format/-/vega-format-1.1.0.tgz#b9d81cf1bcf222ae5cbd94357ae70245d2c7b18d" + integrity sha512-6mgpeWw8yGdG0Zdi8aVkx5oUrpJGOpNxqazC2858RSDPvChM/jDFlgRMTYw52qk7cxU0L08ARp4BwmXaI75j0w== + dependencies: + d3-array "^3.1.1" + d3-format "^3.1.0" + d3-time-format "^4.1.0" + vega-time "^2.0.3" + vega-util "^1.15.2" + +vega-functions@^5.12.1, vega-functions@^5.13.0, vega-functions@~5.13.0: + version "5.13.0" + resolved "https://registry.yarnpkg.com/vega-functions/-/vega-functions-5.13.0.tgz#c9ab8c6eedbf39f75b424cca6776b1d0b8c74b32" + integrity sha512-Mf53zNyx+c9fFqagEI0T8zc9nMlx0zozOngr8oOpG1tZDKOgwOnUgN99zQKbLHjyv+UzWrq3LYTnSLyVe0ZmhQ== + dependencies: + d3-array "^3.1.1" + d3-color "^3.0.1" + d3-geo "^3.0.1" + vega-dataflow "^5.7.3" + vega-expression "^5.0.0" + vega-scale "^7.2.0" + vega-scenegraph "^4.9.3" + vega-selections "^5.3.1" + vega-statistics "^1.7.9" + vega-time "^2.1.0" + vega-util "^1.16.0" + +vega-geo@~4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/vega-geo/-/vega-geo-4.4.0.tgz#ce792df57f8ca4c54a7a1a29467cfa24bc53f573" + integrity sha512-3YX41y+J5pu0PMjvBCASg0/lgvu9+QXWJZ+vl6FFKa8AlsIopQ67ZL7ObwqjZcoZMolJ4q0rc+ZO8aj1pXCYcw== + dependencies: + d3-array "^3.1.1" + d3-color "^3.0.1" + d3-geo "^3.0.1" + vega-canvas "^1.2.5" + vega-dataflow "^5.7.3" + vega-projection "^1.4.5" + vega-statistics "^1.7.9" + vega-util "^1.15.2" + +vega-hierarchy@~4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/vega-hierarchy/-/vega-hierarchy-4.1.0.tgz#605edbe3a6232853f9e8b57e3b905471d33b1a48" + integrity sha512-DWBK39IEt4FiQru12twzKSFUvFFZ7KtlH9+lAaqrJnKuIZFCyQ1XOUfKScfbKIlk4KS+DuCTNLI/pxC/f7Sk9Q== + dependencies: + d3-hierarchy "^3.1.0" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-label@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/vega-label/-/vega-label-1.2.0.tgz#bcb2659aec54f890f9debab3e41ab87a58292dce" + integrity sha512-1prOqkCAfXaUvMqavbGI0nbYGqV8UQR9qvuVwrPJ6Yxm3GIUIOA/JRqNY8eZR8USwMP/kzsqlfVEixj9+Y75VQ== + dependencies: + vega-canvas "^1.2.6" + vega-dataflow "^5.7.3" + vega-scenegraph "^4.9.2" + vega-util "^1.15.2" + +vega-lite@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/vega-lite/-/vega-lite-5.2.0.tgz#bc3c5c70a38d9de8f3fb9644c7dd52f3b9f47a1b" + integrity sha512-Yxcg8MvYfxHcG6BbkaKT0oVCIMIcE19UvqIsEwBmyd/7h2nzW7oRnID81T8UrY7hpDrIr6wa2JADOT2dhGNErw== + dependencies: + "@types/clone" "~2.1.1" + array-flat-polyfill "^1.0.1" + clone "~2.1.2" + fast-deep-equal "~3.1.3" + fast-json-stable-stringify "~2.1.0" + json-stringify-pretty-compact "~3.0.0" + tslib "~2.3.1" + vega-event-selector "~3.0.0" + vega-expression "~5.0.0" + vega-util "~1.17.0" + yargs "~17.2.1" + +vega-loader@^4.3.2, vega-loader@^4.4.0, vega-loader@~4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/vega-loader/-/vega-loader-4.5.0.tgz#b15acc4c8f84191f500e94d35ddfb9721ac943ad" + integrity sha512-EkAyzbx0pCYxH3v3wghGVCaKINWxHfgbQ2pYDiYv0yo8e04S8Mv/IlRGTt6BAe7cLhrk1WZ4zh20QOppnGG05w== + dependencies: + d3-dsv "^3.0.1" + node-fetch "^2.6.7" + topojson-client "^3.1.0" + vega-format "^1.1.0" + vega-util "^1.16.0" + +vega-parser@~6.1.4: + version "6.1.4" + resolved "https://registry.yarnpkg.com/vega-parser/-/vega-parser-6.1.4.tgz#4868e41af2c9645b6d7daeeb205cfad06b9d465c" + integrity sha512-tORdpWXiH/kkXcpNdbSVEvtaxBuuDtgYp9rBunVW9oLsjFvFXbSWlM1wvJ9ZFSaTfx6CqyTyGMiJemmr1QnTjQ== + dependencies: + vega-dataflow "^5.7.3" + vega-event-selector "^3.0.0" + vega-functions "^5.12.1" + vega-scale "^7.1.1" + vega-util "^1.16.0" + +vega-projection@^1.4.5, vega-projection@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/vega-projection/-/vega-projection-1.5.0.tgz#51c5f0455170cd35b3c5f3e653e99c3616520640" + integrity sha512-aob7qojh555x3hQWZ/tr8cIJNSWQbm6EoWTJaheZgFOY2x3cDa4Qrg3RJbGw6KwVj/IQk2p40paRzixKZ2kr+A== + dependencies: + d3-geo "^3.0.1" + d3-geo-projection "^4.0.0" + +vega-regression@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/vega-regression/-/vega-regression-1.1.0.tgz#b4394db403ada93de52bb4536d04be336c983a8c" + integrity sha512-09K0RemY6cdaXBAyakDUNFfEkRcLkGjkDJyWQPAUqGK59hV2J+G3i4uxkZp18Vu0t8oqU7CgzwWim1s5uEpOcA== + dependencies: + d3-array "^3.1.1" + vega-dataflow "^5.7.3" + vega-statistics "^1.7.9" + vega-util "^1.15.2" + +vega-runtime@^6.1.3, vega-runtime@~6.1.3: + version "6.1.3" + resolved "https://registry.yarnpkg.com/vega-runtime/-/vega-runtime-6.1.3.tgz#01e18246f7a80cee034a96017ac30113b92c4034" + integrity sha512-gE+sO2IfxMUpV0RkFeQVnHdmPy3K7LjHakISZgUGsDI/ZFs9y+HhBf8KTGSL5pcZPtQsZh3GBQ0UonqL1mp9PA== + dependencies: + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-scale@^7.0.3, vega-scale@^7.1.1, vega-scale@^7.2.0, vega-scale@~7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/vega-scale/-/vega-scale-7.2.0.tgz#9e298cc02ad340498cb56847436b19439911f0fc" + integrity sha512-QYltO/otrZHLrCGGf06Y99XtPtqWXITr6rw7rO9oL+l3d9o5RFl9sjHrVxiM7v+vGoZVWbBd5IPbFhPsXZ6+TA== + dependencies: + d3-array "^3.1.1" + d3-interpolate "^3.0.1" + d3-scale "^4.0.2" + vega-time "^2.1.0" + vega-util "^1.17.0" + +vega-scenegraph@^4.10.0, vega-scenegraph@^4.9.2, vega-scenegraph@^4.9.3, vega-scenegraph@~4.10.1: + version "4.10.1" + resolved "https://registry.yarnpkg.com/vega-scenegraph/-/vega-scenegraph-4.10.1.tgz#944da67b8a28758fab2e1306259fb7ff6be89f6b" + integrity sha512-takIpkmNxYHhJYALOYzhTin3EDzbys6U4g+l1yJZVlXG9YTdiCMuEVAdtaQOCqF9/7qytD6pCrMxJY2HaoN0qQ== + dependencies: + d3-path "^3.0.1" + d3-shape "^3.1.0" + vega-canvas "^1.2.5" + vega-loader "^4.4.0" + vega-scale "^7.2.0" + vega-util "^1.15.2" + +vega-selections@^5.3.1: + version "5.4.0" + resolved "https://registry.yarnpkg.com/vega-selections/-/vega-selections-5.4.0.tgz#c2783897421fa39b674c015fa8f15a0023b8054e" + integrity sha512-Un3JdLDPjIpF9Dh4sw6m1c/QAcfam6m1YXHJ9vJxE/GdJ+sOrPxc7bcEU8VhOmTUN7IQUn4/1ry4JqqOVMbEhw== + dependencies: + d3-array "3.1.1" + vega-expression "^5.0.0" + vega-util "^1.16.0" + +vega-statistics@^1.7.9, vega-statistics@^1.8.0, vega-statistics@~1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/vega-statistics/-/vega-statistics-1.8.0.tgz#ad66f7461473d58bc96671588981a059ffd60b59" + integrity sha512-dl+LCRS6qS4jWDme/NEdPVt5r649uB4IK6Kyr2/czmGA5JqjuFmtQ9lHQOnRu8945XLkqLf+JIQQo7vnw+nslA== + dependencies: + d3-array "^3.1.1" + +vega-time@^2.0.3, vega-time@^2.1.0, vega-time@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/vega-time/-/vega-time-2.1.0.tgz#acfbab88d7798b87ff63913b0dce2ca5eb0d46ca" + integrity sha512-Q9/l3S6Br1RPX5HZvyLD/cQ4K6K8DtpR09/1y7D66gxNorg2+HGzYZINH9nUvN3mxoXcBWg4cCUh3+JvmkDaEg== + dependencies: + d3-array "^3.1.1" + d3-time "^3.0.0" + vega-util "^1.15.2" + +vega-tooltip@^0.28.0: + version "0.28.0" + resolved "https://registry.yarnpkg.com/vega-tooltip/-/vega-tooltip-0.28.0.tgz#8bae2601ffae5e67622de37108f53f284e9a978b" + integrity sha512-DbK0V5zzk+p9cphZZXV91ZGeKq0zr6JIS0VndUoGTisldzw4tRgmpGQcTfMjew53o7/voeTM2ELTnJAJRzX4tg== + dependencies: + vega-util "^1.17.0" + +vega-transforms@~4.10.0: + version "4.10.0" + resolved "https://registry.yarnpkg.com/vega-transforms/-/vega-transforms-4.10.0.tgz#a1017ede13cf4e25499f588610a3be4da615d82d" + integrity sha512-Yk6ByzVq5F2niFfPlSsrU5wi+NZhsF7IBpJCcTfms4U7eoyNepUXagdFEJ3VWBD/Lit6GorLXFgO17NYcyS5gg== + dependencies: + d3-array "^3.1.1" + vega-dataflow "^5.7.4" + vega-statistics "^1.8.0" + vega-time "^2.1.0" + vega-util "^1.16.1" + +vega-typings@~0.22.0: + version "0.22.3" + resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.22.3.tgz#f6c73b5ffcdb152539cfcc5ad240a413af579ba7" + integrity sha512-PREcya3nXT9Tk7xU0IhEpOLVTlqizNtKXV55NhI6ApBjJtqVYbJL7IBh2ckKxGBy3YeUQ37BQZl56UqqiYVWBw== + dependencies: + vega-event-selector "^3.0.0" + vega-expression "^5.0.0" + vega-util "^1.15.2" + +vega-util@^1.15.2, vega-util@^1.16.0, vega-util@^1.16.1, vega-util@^1.17.0, vega-util@~1.17.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/vega-util/-/vega-util-1.17.0.tgz#b72ae0baa97f943bf591f8f5bb27ceadf06834ac" + integrity sha512-HTaydZd9De3yf+8jH66zL4dXJ1d1p5OIFyoBzFiOli4IJbwkL1jrefCKz6AHDm1kYBzDJ0X4bN+CzZSCTvNk1w== + +vega-view-transforms@~4.5.8: + version "4.5.8" + resolved "https://registry.yarnpkg.com/vega-view-transforms/-/vega-view-transforms-4.5.8.tgz#c8dc42c3c7d4aa725d40b8775180c9f23bc98f4e" + integrity sha512-966m7zbzvItBL8rwmF2nKG14rBp7q+3sLCKWeMSUrxoG+M15Smg5gWEGgwTG3A/RwzrZ7rDX5M1sRaAngRH25g== + dependencies: + vega-dataflow "^5.7.3" + vega-scenegraph "^4.9.2" + vega-util "^1.15.2" + +vega-view@~5.11.0: + version "5.11.0" + resolved "https://registry.yarnpkg.com/vega-view/-/vega-view-5.11.0.tgz#8a7b29a36776e43cc6599e087ed7f48a918b805d" + integrity sha512-MI9NTRFmtFX6ADk6KOHhi8bhHjC9pPm42Bj2+74c6l1d3NQZf9Jv7lkiGqKohdkQDNH9LPwz/6slhKwPU9JdkQ== + dependencies: + d3-array "^3.1.1" + d3-timer "^3.0.1" + vega-dataflow "^5.7.3" + vega-format "^1.1.0" + vega-functions "^5.13.0" + vega-runtime "^6.1.3" + vega-scenegraph "^4.10.0" + vega-util "^1.16.1" + +vega-voronoi@~4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/vega-voronoi/-/vega-voronoi-4.2.0.tgz#14c74c84f52d9a16be2facd1bede879d32d988f2" + integrity sha512-1iuNAVZgUHRlBpdq4gSga3KlQmrgFfwy+KpyDgPLQ8HbLkhcVeT7RDh2L6naluqD7Op0xVLms3clR920WsYryQ== + dependencies: + d3-delaunay "^6.0.2" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-wordcloud@~4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/vega-wordcloud/-/vega-wordcloud-4.1.3.tgz#ce90900333f4e0d3ee706ba4f36bb0905f8b4a9f" + integrity sha512-is4zYn9FMAyp9T4SAcz2P/U/wqc0Lx3P5YtpWKCbOH02a05vHjUQrQ2TTPOuvmMfAEDCSKvbMSQIJMOE018lJA== + dependencies: + vega-canvas "^1.2.5" + vega-dataflow "^5.7.3" + vega-scale "^7.1.1" + vega-statistics "^1.7.9" + vega-util "^1.15.2" + +vega@^5.22.1: + version "5.22.1" + resolved "https://registry.yarnpkg.com/vega/-/vega-5.22.1.tgz#e028f3645de18e0070317bc04410282975549e1e" + integrity sha512-KJBI7OWSzpfCPbmWl3GQCqBqbf2TIdpWS0mzO6MmWbvdMhWHf74P9IVnx1B1mhg0ZTqWFualx9ZYhWzMMwudaQ== + dependencies: + vega-crossfilter "~4.1.0" + vega-dataflow "~5.7.4" + vega-encode "~4.9.0" + vega-event-selector "~3.0.0" + vega-expression "~5.0.0" + vega-force "~4.1.0" + vega-format "~1.1.0" + vega-functions "~5.13.0" + vega-geo "~4.4.0" + vega-hierarchy "~4.1.0" + vega-label "~1.2.0" + vega-loader "~4.5.0" + vega-parser "~6.1.4" + vega-projection "~1.5.0" + vega-regression "~1.1.0" + vega-runtime "~6.1.3" + vega-scale "~7.2.0" + vega-scenegraph "~4.10.1" + vega-statistics "~1.8.0" + vega-time "~2.1.0" + vega-transforms "~4.10.0" + vega-typings "~0.22.0" + vega-util "~1.17.0" + vega-view "~5.11.0" + vega-view-transforms "~4.5.8" + vega-voronoi "~4.2.0" + vega-wordcloud "~4.1.3" + vm-browserify@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" @@ -10841,6 +11666,11 @@ yam@^1.0.0: fs-extra "^4.0.2" lodash.merge "^4.6.0" +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + yargs-parser@^21.0.0: version "21.0.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" @@ -10859,6 +11689,19 @@ yargs@^17.5.1: y18n "^5.0.5" yargs-parser "^21.0.0" +yargs@~17.2.1: + version "17.2.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.2.1.tgz#e2c95b9796a0e1f7f3bf4427863b42e0418191ea" + integrity sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"