FourCIPP 1.1.0__py3-none-any.whl → 1.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  metadata:
2
- commit_hash: aeb492d9ff89b399b9be6b6b8b06a984e88a58cc
2
+ commit_hash: 987236e3e7336a663348d19d2252027d4af7c780
3
3
  version: 2025.3.0-dev
4
4
  description_section_name: TITLE
5
5
  legacy_element_specs:
@@ -40996,6 +40996,7 @@ sections:
40996
40996
  choices:
40997
40997
  - name: none
40998
40998
  - name: penalty
40999
+ - name: lagrange
40999
41000
  - name: PENALTY_PARAMETER
41000
41001
  type: double
41001
41002
  description: "Penalty parameter for beam-to-solid surface contact"
@@ -41154,6 +41155,7 @@ sections:
41154
41155
  choices:
41155
41156
  - name: none
41156
41157
  - name: penalty
41158
+ - name: lagrange
41157
41159
  - name: COUPLING_TYPE
41158
41160
  type: enum
41159
41161
  description: "How the coupling constraints are formulated/"
@@ -41362,6 +41364,7 @@ sections:
41362
41364
  choices:
41363
41365
  - name: none
41364
41366
  - name: penalty
41367
+ - name: lagrange
41365
41368
  - name: MORTAR_SHAPE_FUNCTION
41366
41369
  type: enum
41367
41370
  description: "Shape function for the mortar Lagrange-multipliers"
@@ -41372,6 +41375,15 @@ sections:
41372
41375
  - name: line2
41373
41376
  - name: line3
41374
41377
  - name: line4
41378
+ - name: LAGRANGE_FORMULATION
41379
+ type: enum
41380
+ description: "Type of employed Lagrange Formulation while using Lagrange Multipliers for constraint enforcement "
41381
+ required: false
41382
+ default: none
41383
+ choices:
41384
+ - name: none
41385
+ - name: saddlepoint
41386
+ - name: regularized
41375
41387
  - name: MORTAR_FOURIER_MODES
41376
41388
  type: int
41377
41389
  description: "Number of fourier modes to be used for cross-section mortar coupling"
@@ -211945,6 +211957,665 @@ sections:
211945
211957
  description: "tolerance for convergence check of outer iteration"
211946
211958
  required: false
211947
211959
  default: 1e-06
211960
+ - name: reduced_dimensional_lung
211961
+ type: group
211962
+ required: false
211963
+ specs:
211964
+ - type: all_of
211965
+ specs:
211966
+ - name: dynamics
211967
+ type: group
211968
+ required: true
211969
+ specs:
211970
+ - type: all_of
211971
+ specs:
211972
+ - name: time_increment
211973
+ type: double
211974
+ description: "Time increment dt."
211975
+ required: true
211976
+ - name: number_of_steps
211977
+ type: int
211978
+ description: "Number of time steps."
211979
+ required: true
211980
+ - name: restart_every
211981
+ type: int
211982
+ description: "Increment for writing restart."
211983
+ required: false
211984
+ default: 1
211985
+ - name: results_every
211986
+ type: int
211987
+ description: "Increment for writing solution."
211988
+ required: false
211989
+ default: 1
211990
+ - name: linear_solver
211991
+ type: int
211992
+ description: "Number of linear solver used for reduced dimensional lung simulation."
211993
+ required: true
211994
+ - name: lung_tree
211995
+ type: group
211996
+ description: Definition of the reduced dimensional lung tree including model definitions and parameters
211997
+ required: true
211998
+ specs:
211999
+ - type: all_of
212000
+ specs:
212001
+ - name: element_type
212002
+ type: selection
212003
+ description: "Type of reduced lung elements."
212004
+ required: true
212005
+ choices:
212006
+ - name: constant
212007
+ spec:
212008
+ name: constant
212009
+ type: enum
212010
+ description: "Constant value for the field."
212011
+ required: true
212012
+ choices:
212013
+ - name: Airway
212014
+ - name: TerminalUnit
212015
+ - name: from_file
212016
+ spec:
212017
+ name: from_file
212018
+ type: path
212019
+ description: "Path to a file containing the input field data."
212020
+ required: true
212021
+ - name: field_reference
212022
+ spec:
212023
+ name: field_reference
212024
+ type: string
212025
+ description: "Refer to a globally defined field by a name."
212026
+ required: true
212027
+ - name: generation
212028
+ type: selection
212029
+ description: "Generation of the airway elements."
212030
+ required: true
212031
+ choices:
212032
+ - name: constant
212033
+ spec:
212034
+ name: constant
212035
+ type: int
212036
+ description: "Constant value for the field."
212037
+ required: true
212038
+ - name: from_file
212039
+ spec:
212040
+ name: from_file
212041
+ type: path
212042
+ description: "Path to a file containing the input field data."
212043
+ required: true
212044
+ - name: field_reference
212045
+ spec:
212046
+ name: field_reference
212047
+ type: string
212048
+ description: "Refer to a globally defined field by a name."
212049
+ required: true
212050
+ - name: airways
212051
+ type: group
212052
+ description: Definition of the airway model.
212053
+ required: true
212054
+ specs:
212055
+ - type: all_of
212056
+ specs:
212057
+ - name: radius
212058
+ type: selection
212059
+ description: "Radius of the Airway."
212060
+ required: true
212061
+ choices:
212062
+ - name: constant
212063
+ spec:
212064
+ name: constant
212065
+ type: double
212066
+ description: "Constant value for the field."
212067
+ required: true
212068
+ - name: from_file
212069
+ spec:
212070
+ name: from_file
212071
+ type: path
212072
+ description: "Path to a file containing the input field data."
212073
+ required: true
212074
+ - name: field_reference
212075
+ spec:
212076
+ name: field_reference
212077
+ type: string
212078
+ description: "Refer to a globally defined field by a name."
212079
+ required: true
212080
+ - name: flow_model
212081
+ type: group
212082
+ description: Flow model of the airway.
212083
+ required: true
212084
+ specs:
212085
+ - type: all_of
212086
+ specs:
212087
+ - name: resistance_type
212088
+ type: selection
212089
+ description: "Type of resistance model for the airway."
212090
+ required: true
212091
+ choices:
212092
+ - name: constant
212093
+ spec:
212094
+ name: constant
212095
+ type: enum
212096
+ description: "Constant value for the field."
212097
+ required: true
212098
+ choices:
212099
+ - name: Linear
212100
+ - name: NonLinear
212101
+ - name: from_file
212102
+ spec:
212103
+ name: from_file
212104
+ type: path
212105
+ description: "Path to a file containing the input field data."
212106
+ required: true
212107
+ - name: field_reference
212108
+ spec:
212109
+ name: field_reference
212110
+ type: string
212111
+ description: "Refer to a globally defined field by a name."
212112
+ required: true
212113
+ - name: resistance_model
212114
+ type: group
212115
+ description: Definition of the airway resistance model
212116
+ required: false
212117
+ specs:
212118
+ - type: all_of
212119
+ specs:
212120
+ - name: non_linear
212121
+ type: group
212122
+ description: Definition of the non-linear airway resistance model.
212123
+ required: false
212124
+ specs:
212125
+ - type: all_of
212126
+ specs:
212127
+ - name: turbulence_factor_gamma
212128
+ type: selection
212129
+ description: "Van Ertbruggen's generation dependent turbulence factor defining turbulent onset."
212130
+ required: true
212131
+ choices:
212132
+ - name: constant
212133
+ spec:
212134
+ name: constant
212135
+ type: double
212136
+ description: "Constant value for the field."
212137
+ required: true
212138
+ - name: from_file
212139
+ spec:
212140
+ name: from_file
212141
+ type: path
212142
+ description: "Path to a file containing the input field data."
212143
+ required: true
212144
+ - name: field_reference
212145
+ spec:
212146
+ name: field_reference
212147
+ type: string
212148
+ description: "Refer to a globally defined field by a name."
212149
+ required: true
212150
+ - name: include_inertia
212151
+ type: selection
212152
+ description: "Include inertial effects in the airway flow model."
212153
+ required: true
212154
+ choices:
212155
+ - name: constant
212156
+ spec:
212157
+ name: constant
212158
+ type: bool
212159
+ description: "Constant value for the field."
212160
+ required: true
212161
+ - name: from_file
212162
+ spec:
212163
+ name: from_file
212164
+ type: path
212165
+ description: "Path to a file containing the input field data."
212166
+ required: true
212167
+ - name: field_reference
212168
+ spec:
212169
+ name: field_reference
212170
+ type: string
212171
+ description: "Refer to a globally defined field by a name."
212172
+ required: true
212173
+ - name: wall_model_type
212174
+ type: selection
212175
+ description: "Type of wall model of the airway."
212176
+ required: true
212177
+ choices:
212178
+ - name: constant
212179
+ spec:
212180
+ name: constant
212181
+ type: enum
212182
+ description: "Constant value for the field."
212183
+ required: true
212184
+ choices:
212185
+ - name: Rigid
212186
+ - name: KelvinVoigt
212187
+ - name: from_file
212188
+ spec:
212189
+ name: from_file
212190
+ type: path
212191
+ description: "Path to a file containing the input field data."
212192
+ required: true
212193
+ - name: field_reference
212194
+ spec:
212195
+ name: field_reference
212196
+ type: string
212197
+ description: "Refer to a globally defined field by a name."
212198
+ required: true
212199
+ - name: wall_model
212200
+ type: group
212201
+ description: Wall model of the airway.
212202
+ required: false
212203
+ specs:
212204
+ - type: all_of
212205
+ specs:
212206
+ - name: kelvin_voigt
212207
+ type: group
212208
+ description: Kelvin-Voigt type airway wall model.
212209
+ required: false
212210
+ specs:
212211
+ - type: all_of
212212
+ specs:
212213
+ - name: elasticity
212214
+ type: group
212215
+ description: Elasticity parameters of the airway wall.
212216
+ required: false
212217
+ specs:
212218
+ - type: all_of
212219
+ specs:
212220
+ - name: wall_poisson_ratio
212221
+ type: selection
212222
+ description: "Poisson's ratio of the airway wall."
212223
+ required: true
212224
+ choices:
212225
+ - name: constant
212226
+ spec:
212227
+ name: constant
212228
+ type: double
212229
+ description: "Constant value for the field."
212230
+ required: true
212231
+ - name: from_file
212232
+ spec:
212233
+ name: from_file
212234
+ type: path
212235
+ description: "Path to a file containing the input field data."
212236
+ required: true
212237
+ - name: field_reference
212238
+ spec:
212239
+ name: field_reference
212240
+ type: string
212241
+ description: "Refer to a globally defined field by a name."
212242
+ required: true
212243
+ - name: wall_elasticity
212244
+ type: selection
212245
+ description: "Elasticity of the airway wall."
212246
+ required: true
212247
+ choices:
212248
+ - name: constant
212249
+ spec:
212250
+ name: constant
212251
+ type: double
212252
+ description: "Constant value for the field."
212253
+ required: true
212254
+ - name: from_file
212255
+ spec:
212256
+ name: from_file
212257
+ type: path
212258
+ description: "Path to a file containing the input field data."
212259
+ required: true
212260
+ - name: field_reference
212261
+ spec:
212262
+ name: field_reference
212263
+ type: string
212264
+ description: "Refer to a globally defined field by a name."
212265
+ required: true
212266
+ - name: diameter_over_wall_thickness
212267
+ type: selection
212268
+ description: "Ratio of diameter over wall thickness."
212269
+ required: true
212270
+ choices:
212271
+ - name: constant
212272
+ spec:
212273
+ name: constant
212274
+ type: double
212275
+ description: "Constant value for the field."
212276
+ required: true
212277
+ - name: from_file
212278
+ spec:
212279
+ name: from_file
212280
+ type: path
212281
+ description: "Path to a file containing the input field data."
212282
+ required: true
212283
+ - name: field_reference
212284
+ spec:
212285
+ name: field_reference
212286
+ type: string
212287
+ description: "Refer to a globally defined field by a name."
212288
+ required: true
212289
+ - name: viscosity
212290
+ type: group
212291
+ description: Viscous parameters of the airway wall.
212292
+ required: false
212293
+ specs:
212294
+ - type: all_of
212295
+ specs:
212296
+ - name: viscous_time_constant
212297
+ type: selection
212298
+ description: "Viscous time constant."
212299
+ required: true
212300
+ choices:
212301
+ - name: constant
212302
+ spec:
212303
+ name: constant
212304
+ type: double
212305
+ description: "Constant value for the field."
212306
+ required: true
212307
+ - name: from_file
212308
+ spec:
212309
+ name: from_file
212310
+ type: path
212311
+ description: "Path to a file containing the input field data."
212312
+ required: true
212313
+ - name: field_reference
212314
+ spec:
212315
+ name: field_reference
212316
+ type: string
212317
+ description: "Refer to a globally defined field by a name."
212318
+ required: true
212319
+ - name: viscous_phase_shift
212320
+ type: selection
212321
+ description: "Viscous phase shift."
212322
+ required: true
212323
+ choices:
212324
+ - name: constant
212325
+ spec:
212326
+ name: constant
212327
+ type: double
212328
+ description: "Constant value for the field."
212329
+ required: true
212330
+ - name: from_file
212331
+ spec:
212332
+ name: from_file
212333
+ type: path
212334
+ description: "Path to a file containing the input field data."
212335
+ required: true
212336
+ - name: field_reference
212337
+ spec:
212338
+ name: field_reference
212339
+ type: string
212340
+ description: "Refer to a globally defined field by a name."
212341
+ required: true
212342
+ - name: terminal_units
212343
+ type: group
212344
+ description: Terminal units.
212345
+ required: true
212346
+ specs:
212347
+ - type: all_of
212348
+ specs:
212349
+ - name: rheological_model
212350
+ type: group
212351
+ description: Rheological model of the terminal unit.
212352
+ required: true
212353
+ specs:
212354
+ - type: all_of
212355
+ specs:
212356
+ - name: rheological_model_type
212357
+ type: selection
212358
+ description: "Type of the rheological model."
212359
+ required: true
212360
+ choices:
212361
+ - name: constant
212362
+ spec:
212363
+ name: constant
212364
+ type: enum
212365
+ description: "Constant value for the field."
212366
+ required: true
212367
+ choices:
212368
+ - name: KelvinVoigt
212369
+ - name: FourElementMaxwell
212370
+ - name: from_file
212371
+ spec:
212372
+ name: from_file
212373
+ type: path
212374
+ description: "Path to a file containing the input field data."
212375
+ required: true
212376
+ - name: field_reference
212377
+ spec:
212378
+ name: field_reference
212379
+ type: string
212380
+ description: "Refer to a globally defined field by a name."
212381
+ required: true
212382
+ - name: kelvin_voigt
212383
+ type: group
212384
+ description: Kelvin-Voigt model of the terminal unit.
212385
+ required: false
212386
+ specs:
212387
+ - type: all_of
212388
+ specs:
212389
+ - name: viscosity_kelvin_voigt_eta
212390
+ type: selection
212391
+ description: "Viscosity parameter (dashpot) of the terminal unit."
212392
+ required: true
212393
+ choices:
212394
+ - name: constant
212395
+ spec:
212396
+ name: constant
212397
+ type: double
212398
+ description: "Constant value for the field."
212399
+ required: true
212400
+ - name: from_file
212401
+ spec:
212402
+ name: from_file
212403
+ type: path
212404
+ description: "Path to a file containing the input field data."
212405
+ required: true
212406
+ - name: field_reference
212407
+ spec:
212408
+ name: field_reference
212409
+ type: string
212410
+ description: "Refer to a globally defined field by a name."
212411
+ required: true
212412
+ - name: 4_element_maxwell
212413
+ type: group
212414
+ description: 4-element Maxwell model of the terminal unit.
212415
+ required: false
212416
+ specs:
212417
+ - type: all_of
212418
+ specs:
212419
+ - name: viscosity_kelvin_voigt_eta
212420
+ type: selection
212421
+ description: "Dashpot viscosity of the Kelvin-Voigt body of the terminal unit."
212422
+ required: true
212423
+ choices:
212424
+ - name: constant
212425
+ spec:
212426
+ name: constant
212427
+ type: double
212428
+ description: "Constant value for the field."
212429
+ required: true
212430
+ - name: from_file
212431
+ spec:
212432
+ name: from_file
212433
+ type: path
212434
+ description: "Path to a file containing the input field data."
212435
+ required: true
212436
+ - name: field_reference
212437
+ spec:
212438
+ name: field_reference
212439
+ type: string
212440
+ description: "Refer to a globally defined field by a name."
212441
+ required: true
212442
+ - name: viscosity_maxwell_eta_m
212443
+ type: selection
212444
+ description: "Dashpot viscosity of the Maxwell body of the terminal unit."
212445
+ required: true
212446
+ choices:
212447
+ - name: constant
212448
+ spec:
212449
+ name: constant
212450
+ type: double
212451
+ description: "Constant value for the field."
212452
+ required: true
212453
+ - name: from_file
212454
+ spec:
212455
+ name: from_file
212456
+ type: path
212457
+ description: "Path to a file containing the input field data."
212458
+ required: true
212459
+ - name: field_reference
212460
+ spec:
212461
+ name: field_reference
212462
+ type: string
212463
+ description: "Refer to a globally defined field by a name."
212464
+ required: true
212465
+ - name: elasticity_maxwell_e_m
212466
+ type: selection
212467
+ description: "Spring stiffness of the Maxwell body of the terminal unit."
212468
+ required: true
212469
+ choices:
212470
+ - name: constant
212471
+ spec:
212472
+ name: constant
212473
+ type: double
212474
+ description: "Constant value for the field."
212475
+ required: true
212476
+ - name: from_file
212477
+ spec:
212478
+ name: from_file
212479
+ type: path
212480
+ description: "Path to a file containing the input field data."
212481
+ required: true
212482
+ - name: field_reference
212483
+ spec:
212484
+ name: field_reference
212485
+ type: string
212486
+ description: "Refer to a globally defined field by a name."
212487
+ required: true
212488
+ - name: elasticity_model
212489
+ type: group
212490
+ description: Elasticity model for the customizable spring of the rheological model.
212491
+ required: true
212492
+ specs:
212493
+ - type: all_of
212494
+ specs:
212495
+ - name: elasticity_model_type
212496
+ type: selection
212497
+ description: "Type of the elastic model."
212498
+ required: true
212499
+ choices:
212500
+ - name: constant
212501
+ spec:
212502
+ name: constant
212503
+ type: enum
212504
+ description: "Constant value for the field."
212505
+ required: true
212506
+ choices:
212507
+ - name: Linear
212508
+ - name: Ogden
212509
+ - name: from_file
212510
+ spec:
212511
+ name: from_file
212512
+ type: path
212513
+ description: "Path to a file containing the input field data."
212514
+ required: true
212515
+ - name: field_reference
212516
+ spec:
212517
+ name: field_reference
212518
+ type: string
212519
+ description: "Refer to a globally defined field by a name."
212520
+ required: true
212521
+ - name: linear
212522
+ type: group
212523
+ description: Linear elastic model in the rheological model of the terminal unit.
212524
+ required: false
212525
+ specs:
212526
+ - type: all_of
212527
+ specs:
212528
+ - name: elasticity_e
212529
+ type: selection
212530
+ description: "Linear elastic stiffness of the terminal unit."
212531
+ required: true
212532
+ choices:
212533
+ - name: constant
212534
+ spec:
212535
+ name: constant
212536
+ type: double
212537
+ description: "Constant value for the field."
212538
+ required: true
212539
+ - name: from_file
212540
+ spec:
212541
+ name: from_file
212542
+ type: path
212543
+ description: "Path to a file containing the input field data."
212544
+ required: true
212545
+ - name: field_reference
212546
+ spec:
212547
+ name: field_reference
212548
+ type: string
212549
+ description: "Refer to a globally defined field by a name."
212550
+ required: true
212551
+ - name: ogden
212552
+ type: group
212553
+ description: Ogden type spring in the rheological model of the terminal unit.
212554
+ required: false
212555
+ specs:
212556
+ - type: all_of
212557
+ specs:
212558
+ - name: ogden_parameter_kappa
212559
+ type: selection
212560
+ description: "Parameter Kappa in volumetric Ogden law."
212561
+ required: true
212562
+ choices:
212563
+ - name: constant
212564
+ spec:
212565
+ name: constant
212566
+ type: double
212567
+ description: "Constant value for the field."
212568
+ required: true
212569
+ - name: from_file
212570
+ spec:
212571
+ name: from_file
212572
+ type: path
212573
+ description: "Path to a file containing the input field data."
212574
+ required: true
212575
+ - name: field_reference
212576
+ spec:
212577
+ name: field_reference
212578
+ type: string
212579
+ description: "Refer to a globally defined field by a name."
212580
+ required: true
212581
+ - name: ogden_parameter_beta
212582
+ type: selection
212583
+ description: "Parameter Beta in volumetric Ogden law."
212584
+ required: true
212585
+ choices:
212586
+ - name: constant
212587
+ spec:
212588
+ name: constant
212589
+ type: double
212590
+ description: "Constant value for the field."
212591
+ required: true
212592
+ - name: from_file
212593
+ spec:
212594
+ name: from_file
212595
+ type: path
212596
+ description: "Path to a file containing the input field data."
212597
+ required: true
212598
+ - name: field_reference
212599
+ spec:
212600
+ name: field_reference
212601
+ type: string
212602
+ description: "Refer to a globally defined field by a name."
212603
+ required: true
212604
+ - name: air_properties
212605
+ type: group
212606
+ description: Air properties for the reduced dimensional lung simulation
212607
+ required: true
212608
+ specs:
212609
+ - type: all_of
212610
+ specs:
212611
+ - name: dynamic_viscosity
212612
+ type: double
212613
+ description: "Dynamic viscosity of air in the reduced dimensional lung simulation."
212614
+ required: true
212615
+ - name: density
212616
+ type: double
212617
+ description: "Density of air in the reduced dimensional lung simulation."
212618
+ required: true
211948
212619
  legacy_string_sections:
211949
212620
  - STRUCTURE ELEMENTS
211950
212621
  - FLUID ELEMENTS