-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.test_durations
More file actions
1098 lines (1098 loc) · 146 KB
/
Copy path.test_durations
File metadata and controls
1098 lines (1098 loc) · 146 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tests/ecalc_cli/test_app.py::TestCsvOutput::test_csv_default": 0.07425595802487805,
"tests/ecalc_cli/test_app.py::TestCsvOutput::test_csv_temporal_default": 0.44253333400411066,
"tests/ecalc_cli/test_app.py::TestCsvOutput::test_no_csv": 0.1961323749856092,
"tests/ecalc_cli/test_app.py::TestFlowDiagramOutput::test_valid": 0.08436004300892819,
"tests/ecalc_cli/test_app.py::TestJsonOutput::test_json_advanced_model": 2.8449819999805186,
"tests/ecalc_cli/test_app.py::TestJsonOutput::test_json_false": 0.042057958999066614,
"tests/ecalc_cli/test_app.py::TestJsonOutput::test_json_true": 0.07629841698508244,
"tests/ecalc_cli/test_app.py::TestJsonOutput::test_json_true_detailed_output": 0.06963566700869706,
"tests/ecalc_cli/test_app.py::TestLogFileOutput::test_save_logs": 0.04352412601292599,
"tests/ecalc_cli/test_app.py::TestLtpExport::test_new_ltp_export_properly": 3.0980288330174517,
"tests/ecalc_cli/test_app.py::TestStpExport::test_new_stp_export_properly": 5.09918916701281,
"tests/ecalc_cli/test_app.py::TestYamlFile::test_yaml_file_error": 0.0011307079839752987,
"tests/ecalc_cli/test_app.py::TestYamlFile::test_yaml_multiple_energy_models_one_consumer": 0.012329249977483414,
"tests/ecalc_cli/test_emission_intensity.py::test_cli_with_resampling": 0.21065141701546963,
"tests/ecalc_cli/test_emission_intensity.py::test_correct_intensity": 0.0014188329951139167,
"tests/ecalc_cli/test_emission_intensity.py::test_emission_intensity_to_csv": 0.002412166999420151,
"tests/ecalc_cli/test_emission_intensity.py::test_emission_intensity_to_json": 0.0012000839924439788,
"tests/ecalc_cli/test_emission_intensity.py::test_emission_intensity_with_different_frequencies[MS]": 0.0014441249950323254,
"tests/ecalc_cli/test_emission_intensity.py::test_emission_intensity_with_different_frequencies[YS]": 0.001050041988492012,
"tests/ecalc_cli/test_emission_intensity.py::test_emission_intensity_with_different_frequencies[none]": 0.0013186239812057465,
"tests/ecalc_neqsim_wrapper/integration_tests/test_gerg_fluid.py::test_gerg_model_against_unisim": 0.07391283399192616,
"tests/ecalc_neqsim_wrapper/integration_tests/test_remove_liquid.py::test_liquid_takeoff": 0.10466550097044092,
"tests/ecalc_neqsim_wrapper/test_cache_service.py::TestCacheBehavior::test_cache_independence_across_compositions": 0.08189666699036025,
"tests/ecalc_neqsim_wrapper/test_cache_service.py::TestCacheBehavior::test_cache_key_rounding_boundary": 0.05648895700869616,
"tests/ecalc_neqsim_wrapper/test_cache_service.py::TestCacheBehavior::test_flash_cache_hit_on_repeated_query": 0.04077095800312236,
"tests/ecalc_neqsim_wrapper/test_cache_service.py::TestCacheBehavior::test_two_tier_cache_architecture": 0.040678416000446305,
"tests/ecalc_neqsim_wrapper/test_cache_service.py::TestLRUCacheDisabling::test_cache_disabled_with_max_size_zero": 0.001069582998752594,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestCacheConfig::test_custom_values": 0.0008789170096861199,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestCacheConfig::test_default_classmethod": 0.0009677089983597398,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestCacheConfig::test_default_values": 0.001028124985168688,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestCacheConfig::test_immutable": 0.0011721670016413555,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestFluidServiceConfigure::test_configure_after_instance_raises": 0.0011497499945107847,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestFluidServiceConfigure::test_configure_before_instance": 0.0010890419944189489,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestFluidServiceConfigure::test_configure_only_flash_cache": 0.0009360420081065968,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestFluidServiceConfigure::test_configure_only_reference_cache": 0.0009148329991148785,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestFluidServiceConfigure::test_default_sizes_without_configure": 0.0013045410014456138,
"tests/ecalc_neqsim_wrapper/unit_tests/test_fluid_service_config.py::TestFluidServiceConfigure::test_reset_clears_config": 0.0010742079903138801,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestConfigurePy4J::test_configure_after_initialize_raises": 0.000839749991428107,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestConfigurePy4J::test_default_config_used_when_not_configured": 0.0009768750023795292,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestConfigurePy4J::test_reset_clears_config": 0.0009774159989319742,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JConfig::test_custom_values": 0.0011299170000711456,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JConfig::test_default_values": 0.0011744990042643622,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JConfig::test_immutable": 0.0008769170090090483,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JConfig::test_invalid_memory_format_raises": 0.0009656249894760549,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JConfig::test_invalid_memory_no_unit_raises": 0.0008614169928478077,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JConfig::test_valid_memory_formats": 0.0008367909904336557,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JShutdownOnExit::test_configure_py4j_custom_memory_is_applied": 0.1477175839972915,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JShutdownOnExit::test_shutdown_clears_service_and_double_shutdown_is_safe": 0.14789004198973998,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::TestPy4JShutdownOnExit::test_shutdown_on_exit_false_config": 0.08428758301306516,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::test_get_new_py4j_instance": 0.0009352089837193489,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::test_init_not_allowed": 0.0009623340010875836,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::test_py4j_service": 0.02043149998644367,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::test_reinitialize_not_allowed": 0.0008472090121358633,
"tests/ecalc_neqsim_wrapper/unit_tests/test_java_service.py::test_same_instance": 0.0008184990001609549,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_composition": 0.05931224899541121,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_density": 0.03575187502428889,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_enthalpy_J_per_kg": 0.05289887500111945,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_kappa": 0.02939629198226612,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_molar_mass": 0.03644441600772552,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_pressure_bara": 0.028312082984484732,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_remove_liquid": 0.015838000006624497,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_set_new_pressure_and_enthalpy": 0.04748812499747146,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_set_new_pressure_and_temperature": 0.037088251003297046,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_temperature_kelvin": 0.0638837910228176,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_volume": 0.0445328750211047,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_fluid_z": 0.0387334999977611,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_gerg_properties": 0.7672082500066608,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_mix_neqsim_streams": 0.01263033298891969,
"tests/ecalc_neqsim_wrapper/unit_tests/test_neqsim_fluid.py::test_neqsim_component_error": 0.012081459004548378,
"tests/libecalc/application/test_stream_distribution.py::TestCommonStreamDistribution::test_common_stream_with_overflow": 0.0015172919956967235,
"tests/libecalc/application/test_stream_distribution.py::TestCommonStreamDistribution::test_common_stream_with_overflow_cycle": 0.01869033300317824,
"tests/libecalc/application/test_stream_distribution.py::TestCommonStreamDistribution::test_common_stream_with_overflow_out_of_capacity": 0.0013731259969063103,
"tests/libecalc/application/test_stream_distribution.py::TestCommonStreamDistribution::test_common_stream_without_overflow": 0.030793540994636714,
"tests/libecalc/common/ddd/test_entity.py::test_comparing_with_non_entity_raises_type_error": 0.0011942089768126607,
"tests/libecalc/common/ddd/test_entity.py::test_comparing_with_none_returns_false": 0.0010477919859113172,
"tests/libecalc/common/ddd/test_entity.py::test_different_entity_types_with_same_uuid_are_not_equal": 0.001007707993267104,
"tests/libecalc/common/ddd/test_entity.py::test_different_ids_are_not_equal": 0.0013151250022929162,
"tests/libecalc/common/ddd/test_entity.py::test_entities_with_different_ids_distinct_in_set": 0.0008719579927856103,
"tests/libecalc/common/ddd/test_entity.py::test_entity_usable_in_set": 0.0009473749960307032,
"tests/libecalc/common/ddd/test_entity.py::test_explicit_id_is_preserved": 0.0007029989938018844,
"tests/libecalc/common/ddd/test_entity.py::test_id_is_uuid": 0.00134170800447464,
"tests/libecalc/common/ddd/test_entity.py::test_same_entity_is_equal": 0.0010123320098500699,
"tests/libecalc/common/ddd/test_entity.py::test_same_id_is_equal": 0.00079554200056009,
"tests/libecalc/common/ddd/test_entity.py::test_two_instances_have_different_ids": 0.0012395409867167473,
"tests/libecalc/common/ddd/test_value_object.py::TestEqualityByValue::test_different_units_are_not_equal": 0.0007528339920099825,
"tests/libecalc/common/ddd/test_value_object.py::TestEqualityByValue::test_different_value_object_types_not_equal": 0.0008037920051719993,
"tests/libecalc/common/ddd/test_value_object.py::TestEqualityByValue::test_different_values_are_not_equal": 0.0007802089967299253,
"tests/libecalc/common/ddd/test_value_object.py::TestEqualityByValue::test_equal_to_itself": 0.0009109989914577454,
"tests/libecalc/common/ddd/test_value_object.py::TestEqualityByValue::test_same_values_are_equal": 0.0007865820080041885,
"tests/libecalc/common/ddd/test_value_object.py::TestHashability::test_can_be_used_as_dict_key": 0.0009908760112011805,
"tests/libecalc/common/ddd/test_value_object.py::TestHashability::test_can_be_used_in_a_set": 0.0008662920008646324,
"tests/libecalc/common/ddd/test_value_object.py::TestHashability::test_distinct_units_distinct_in_set": 0.0007852929993532598,
"tests/libecalc/common/ddd/test_value_object.py::TestHashability::test_distinct_values_distinct_in_set": 0.000794542022049427,
"tests/libecalc/common/ddd/test_value_object.py::TestHashability::test_equal_objects_have_same_hash": 0.0007511239964514971,
"tests/libecalc/common/ddd/test_value_object.py::TestImmutability::test_field_reassignment_raises": 0.0008646680071251467,
"tests/libecalc/common/ddd/test_value_object.py::TestIsDataclass::test_fields_are_accessible": 0.0009815840021474287,
"tests/libecalc/common/ddd/test_value_object.py::TestIsDataclass::test_instance_is_a_dataclass_instance": 0.000987332983640954,
"tests/libecalc/common/ddd/test_value_object.py::TestIsDataclass::test_no_instance_dict": 0.0010206660081166774,
"tests/libecalc/common/ddd/test_value_object.py::TestIsDataclass::test_subclass_is_a_dataclass": 0.0008536679961252958,
"tests/libecalc/common/ddd/test_value_object.py::TestIsDataclass::test_uses_slots": 0.0009049590007634833,
"tests/libecalc/common/ddd/test_value_object.py::TestNestedValueObjects::test_asdict_flattens_nested": 0.0008848340075928718,
"tests/libecalc/common/ddd/test_value_object.py::TestNestedValueObjects::test_nested_equality": 0.0009681249939603731,
"tests/libecalc/common/ddd/test_value_object.py::TestNestedValueObjects::test_nested_inequality": 0.0008285829972010106,
"tests/libecalc/common/ddd/test_value_object.py::TestPostInitValidation::test_negative_bara_raises": 0.0009797509846976027,
"tests/libecalc/common/ddd/test_value_object.py::TestPostInitValidation::test_negative_barg_raises": 0.0008617929997853935,
"tests/libecalc/common/ddd/test_value_object.py::TestPostInitValidation::test_negative_pascal_raises": 0.0008222500182455406,
"tests/libecalc/common/ddd/test_value_object.py::TestPostInitValidation::test_valid_pressure_bara": 0.0008302909991471097,
"tests/libecalc/common/ddd/test_value_object.py::TestPostInitValidation::test_valid_pressure_barg": 0.000860375992488116,
"tests/libecalc/common/ddd/test_value_object.py::TestPostInitValidation::test_valid_pressure_pascal": 0.0010793319961521775,
"tests/libecalc/common/ddd/test_value_object.py::TestPostInitValidation::test_zero_pressure_is_valid": 0.000822207992314361,
"tests/libecalc/common/test_constants.py::test__celsius_to_kelvin": 0.000989040985587053,
"tests/libecalc/common/test_constants.py::test_earth_gravity": 0.0009350420150440186,
"tests/libecalc/common/test_constants.py::test_gas_constant": 0.0009478749998379499,
"tests/libecalc/common/test_constants.py::test_hours_per_day": 0.0009306250140070915,
"tests/libecalc/common/test_constants.py::test_seconds_per_hour": 0.001038582980982028,
"tests/libecalc/common/test_constants.py::test_standard_pressure": 0.0009710000013001263,
"tests/libecalc/common/test_constants.py::test_standard_temperature_celsius": 0.0007812920084688812,
"tests/libecalc/common/test_constants.py::test_standard_temperature_kelvin": 0.0008338329935213551,
"tests/libecalc/common/test_dangerous.py::test_feature_toggle_off": 0.0010722499864641577,
"tests/libecalc/common/test_dangerous.py::test_feature_toggle_on": 0.001330541999777779,
"tests/libecalc/common/test_fluid_common.py::test_calculate_molar_mass_with_percent_composition": 0.0010439180041430518,
"tests/libecalc/common/test_fluid_common.py::test_fluid_composition_normalized": 0.0010976670018862933,
"tests/libecalc/common/test_fluid_common.py::test_fluid_composition_normalized_zero_total": 0.0010304169991286471,
"tests/libecalc/common/test_graph.py::TestGraph::test_get_node_with_data": 0.0009737910149851814,
"tests/libecalc/common/test_graph.py::TestGraph::test_get_predecessors": 0.0010397500154795125,
"tests/libecalc/common/test_graph.py::TestGraph::test_get_successors": 0.0011840419902000576,
"tests/libecalc/common/test_graph.py::TestGraph::test_root": 0.0011417079949751496,
"tests/libecalc/common/test_graph.py::TestGraph::test_subgraph": 0.001203833002364263,
"tests/libecalc/common/test_graph.py::TestGraph::test_topological_sort": 0.001005249985610135,
"tests/libecalc/common/test_interpolate.py::TestInterpolate::test_1d_interpolator_basic": 0.001433375000488013,
"tests/libecalc/common/test_interpolate.py::TestInterpolate::test_1d_interpolator_out_of_bounds": 0.0012164580257376656,
"tests/libecalc/common/test_interpolate.py::TestInterpolate::test_1d_interpolator_single_point": 0.0009502089960733429,
"tests/libecalc/common/test_interpolate.py::TestInterpolate::test_nd_interpolator_basic": 0.0012421259743859991,
"tests/libecalc/common/test_interpolate.py::TestInterpolate::test_nd_interpolator_out_of_bounds": 0.0010415839933557436,
"tests/libecalc/common/test_list_utils.py::test_array_to_list_always_returns_list": 0.0009187499817926437,
"tests/libecalc/common/test_list_utils.py::test_elementwise_multiplication": 0.0007987499993760139,
"tests/libecalc/common/test_list_utils.py::test_elementwise_sum": 0.0008430409943684936,
"tests/libecalc/common/test_list_utils.py::test_group_data_by_value_at_index": 0.0009279999940190464,
"tests/libecalc/common/test_list_utils.py::test_group_data_by_value_at_index_negative_index": 0.0008939989929785952,
"tests/libecalc/common/test_list_utils.py::test_group_data_by_value_at_index_out_of_bounds": 0.0008119999984046444,
"tests/libecalc/common/test_numbers.py::test_numbers[-0.0001-6--0.0001]": 0.0009108330123126507,
"tests/libecalc/common/test_numbers.py::test_numbers[-0.01-6--0.01]": 0.0009085410129046068,
"tests/libecalc/common/test_numbers.py::test_numbers[-0.09-0-0]": 0.0008539170084986836,
"tests/libecalc/common/test_numbers.py::test_numbers[-0.09-1--0.1]": 0.0009743330010678619,
"tests/libecalc/common/test_numbers.py::test_numbers[-0.1-6--0.1_0]": 0.0008192089881049469,
"tests/libecalc/common/test_numbers.py::test_numbers[-0.1-6--0.1_1]": 0.0009865009924396873,
"tests/libecalc/common/test_numbers.py::test_numbers[-1-6--1]": 0.0010245839948765934,
"tests/libecalc/common/test_numbers.py::test_numbers[-1.09-0--1]": 0.0010818750015459955,
"tests/libecalc/common/test_numbers.py::test_numbers[-1.09-1--1.1]": 0.0008657080179546028,
"tests/libecalc/common/test_numbers.py::test_numbers[-10-6--10]": 0.0010227079910691828,
"tests/libecalc/common/test_numbers.py::test_numbers[-100-6--100]": 0.0009150830010185018,
"tests/libecalc/common/test_numbers.py::test_numbers[-1000-6--1000]": 0.0008422929822700098,
"tests/libecalc/common/test_numbers.py::test_numbers[-10000-6--10000]": 0.000886957990587689,
"tests/libecalc/common/test_numbers.py::test_numbers[-100000-6--100000]": 0.0009452920057810843,
"tests/libecalc/common/test_numbers.py::test_numbers[-1000000-6--1000000]": 0.0008973329968284816,
"tests/libecalc/common/test_numbers.py::test_numbers[-10000000-6--10000000]": 0.0009017069969559088,
"tests/libecalc/common/test_numbers.py::test_numbers[-100000000-6--100000000_0]": 0.0008603749884059653,
"tests/libecalc/common/test_numbers.py::test_numbers[-100000000-6--100000000_1]": 0.0008854579937178642,
"tests/libecalc/common/test_numbers.py::test_numbers[-100000001-6--100000001]": 0.0008445839921478182,
"tests/libecalc/common/test_numbers.py::test_numbers[-1e-06-6--0.000001]": 0.000808999000582844,
"tests/libecalc/common/test_numbers.py::test_numbers[-1e-07-6-0]": 0.0009267509885830805,
"tests/libecalc/common/test_numbers.py::test_numbers[-1e-08-6-0]": 0.0010128339927177876,
"tests/libecalc/common/test_numbers.py::test_numbers[-1e-09-6-0]": 0.0008607490017311648,
"tests/libecalc/common/test_numbers.py::test_numbers[-1e-10-6-0]": 0.0009260819933842868,
"tests/libecalc/common/test_numbers.py::test_numbers[-9e-07-6--0.000001]": 0.0009038339921971783,
"tests/libecalc/common/test_numbers.py::test_numbers[0-6-0_0]": 0.0009483749890932813,
"tests/libecalc/common/test_numbers.py::test_numbers[0-6-0_1]": 0.0007836250151740387,
"tests/libecalc/common/test_numbers.py::test_numbers[0.0001-6-0.0001]": 0.0008825419936329126,
"tests/libecalc/common/test_numbers.py::test_numbers[0.01-6-0.01]": 0.000912124989554286,
"tests/libecalc/common/test_numbers.py::test_numbers[0.09-0-0]": 0.000827249008580111,
"tests/libecalc/common/test_numbers.py::test_numbers[0.09-1-0.1]": 0.0008704989886609837,
"tests/libecalc/common/test_numbers.py::test_numbers[0.1-6-0.1_0]": 0.0009484170295763761,
"tests/libecalc/common/test_numbers.py::test_numbers[0.1-6-0.1_1]": 0.0010858749883482233,
"tests/libecalc/common/test_numbers.py::test_numbers[1-6-1]": 0.0009554589923936874,
"tests/libecalc/common/test_numbers.py::test_numbers[1.09-0-1]": 0.001005124009680003,
"tests/libecalc/common/test_numbers.py::test_numbers[1.09-1-1.1]": 0.0008587490010540932,
"tests/libecalc/common/test_numbers.py::test_numbers[10-6-10]": 0.000919001002330333,
"tests/libecalc/common/test_numbers.py::test_numbers[100-6-100]": 0.000997666982584633,
"tests/libecalc/common/test_numbers.py::test_numbers[1000-6-1000]": 0.0009359580144518986,
"tests/libecalc/common/test_numbers.py::test_numbers[1000.0-6-1000]": 0.0008614999969722703,
"tests/libecalc/common/test_numbers.py::test_numbers[1000.3333-3-1000]": 0.0007294579991139472,
"tests/libecalc/common/test_numbers.py::test_numbers[1000.3333-6-1000.333]": 0.0008196669950848445,
"tests/libecalc/common/test_numbers.py::test_numbers[1000.6666-3-1001]": 0.0007509179995395243,
"tests/libecalc/common/test_numbers.py::test_numbers[10000-6-10000]": 0.0008459579985355958,
"tests/libecalc/common/test_numbers.py::test_numbers[100000-6-100000]": 0.0007892079884186387,
"tests/libecalc/common/test_numbers.py::test_numbers[1000000-6-1000000]": 0.0007683330040890723,
"tests/libecalc/common/test_numbers.py::test_numbers[1000000.3333-3-1000000_0]": 0.0008197910065064207,
"tests/libecalc/common/test_numbers.py::test_numbers[1000000.3333-3-1000000_1]": 0.0009027920023072511,
"tests/libecalc/common/test_numbers.py::test_numbers[1000000.6666-3-1000001_0]": 0.0010523749951971695,
"tests/libecalc/common/test_numbers.py::test_numbers[1000000.6666-3-1000001_1]": 0.000959709010203369,
"tests/libecalc/common/test_numbers.py::test_numbers[1000000.6666-4-1000001]": 0.0007656670059077442,
"tests/libecalc/common/test_numbers.py::test_numbers[1000000.66663333-4-1000001]": 0.0008994579984573647,
"tests/libecalc/common/test_numbers.py::test_numbers[10000000-6-10000000]": 0.0007346250058617443,
"tests/libecalc/common/test_numbers.py::test_numbers[100000000-6-100000000_0]": 0.0008818749920465052,
"tests/libecalc/common/test_numbers.py::test_numbers[100000000-6-100000000_1]": 0.0008566250035073608,
"tests/libecalc/common/test_numbers.py::test_numbers[100000001-6-100000001]": 0.0009112499974435195,
"tests/libecalc/common/test_numbers.py::test_numbers[1e-06-6-0.000001]": 0.000897291989531368,
"tests/libecalc/common/test_numbers.py::test_numbers[1e-07-6-0]": 0.0010528339917073026,
"tests/libecalc/common/test_numbers.py::test_numbers[1e-08-6-0]": 0.0008772099972702563,
"tests/libecalc/common/test_numbers.py::test_numbers[1e-09-6-0]": 0.0009790420008357614,
"tests/libecalc/common/test_numbers.py::test_numbers[1e-10-6-0]": 0.0009245010005543008,
"tests/libecalc/common/test_numbers.py::test_numbers[9e-07-6-0.000001]": 0.0008839999791234732,
"tests/libecalc/common/test_string_utils.py::TestGenerateId::test_multiple_strings": 0.000764083000831306,
"tests/libecalc/common/test_string_utils.py::TestGenerateId::test_single_string": 0.0007396239961963147,
"tests/libecalc/common/test_string_utils.py::TestGetDuplicates::test_duplicates": 0.0007829989917809144,
"tests/libecalc/common/test_string_utils.py::TestGetDuplicates::test_no_duplicates": 0.0009315420029452071,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[M_-M]": 0.0008398339996347204,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[M_C-MC]": 0.0008975420205388218,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[_C-C]": 0.0008607920026406646,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[_c-c]": 0.0007752490055281669,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[m_-m]": 0.0007528740097768605,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[m_C-mC]": 0.0008606249903095886,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[m_c-mC]": 0.0008917500090319663,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[my_cAmeLCase-myCAmeLCase]": 0.0008175410039257258,
"tests/libecalc/common/test_string_utils.py::TestToCamelCase::test_to_camel_case[my_camel_case-myCamelCase]": 0.0008788340055616572,
"tests/libecalc/common/test_temporal_model.py::TestTemporalExpression::test_multiple_times": 0.0009832509967964143,
"tests/libecalc/common/test_temporal_model.py::TestTemporalExpression::test_multiple_times_with_references": 0.0009169169934466481,
"tests/libecalc/common/test_temporal_model.py::TestTemporalExpression::test_single_value_expression": 0.0011006659915437922,
"tests/libecalc/common/test_temporal_model.py::TestTemporalExpression::test_single_value_expression_with_start_date_after_time_vector_start": 0.0008833759929984808,
"tests/libecalc/common/test_time_utils.py::TestCalculateDeltaDays::test_calculate_delta_dates": 0.0008634590194560587,
"tests/libecalc/common/test_time_utils.py::TestCalculateDeltaDays::test_calculate_delta_days_single_date": 0.000746167017496191,
"tests/libecalc/common/test_time_utils.py::TestCreatePeriods::test_single_date": 0.00072354098665528,
"tests/libecalc/common/test_time_utils.py::TestCreatePeriods::test_three_dates": 0.0008589569915784523,
"tests/libecalc/common/test_time_utils.py::TestCreatePeriods::test_three_dates_not_include_after": 0.0008313330035889521,
"tests/libecalc/common/test_time_utils.py::TestCreatePeriods::test_three_dates_not_include_before": 0.0008200830052373931,
"tests/libecalc/common/test_time_utils.py::TestCreatePeriods::test_three_dates_not_include_before_and_after": 0.000934917014092207,
"tests/libecalc/common/test_time_utils.py::TestCreatePeriods::test_two_dates": 0.0007990420126589015,
"tests/libecalc/common/test_time_utils.py::TestDefineTimeModelForPeriod::test_equal_end": 0.0008763329969951883,
"tests/libecalc/common/test_time_utils.py::TestDefineTimeModelForPeriod::test_include_all": 0.0010388750088168308,
"tests/libecalc/common/test_time_utils.py::TestDefineTimeModelForPeriod::test_middle": 0.0008924999856390059,
"tests/libecalc/common/test_time_utils.py::TestDefineTimeModelForPeriod::test_outside": 0.0008992510120151564,
"tests/libecalc/common/test_time_utils.py::TestPeriod::test_all_timesteps_in_period": 0.0007794160046614707,
"tests/libecalc/common/test_time_utils.py::TestPeriod::test_end_not_defined": 0.0009049170184880495,
"tests/libecalc/common/test_time_utils.py::TestPeriod::test_no_timesteps_in_period": 0.000917040990316309,
"tests/libecalc/common/test_time_utils.py::TestPeriod::test_period_repr": 0.000779333000537008,
"tests/libecalc/common/test_time_utils.py::TestPeriod::test_some_timesteps_in_period": 0.0008873339975252748,
"tests/libecalc/common/test_time_utils.py::TestPeriod::test_start_end_defined": 0.0007542089879279956,
"tests/libecalc/common/test_time_utils.py::TestPeriod::test_start_not_defined": 0.0007981660164659843,
"tests/libecalc/common/test_unit.py::test_missing_conversions": 0.0018276670016348362,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[%-frac-0-0]": 0.0008692919946042821,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[%-frac-100-1]": 0.0008956669917097315,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[BOE-Sm3-6.29-1]": 0.0008450830064248294,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[C-K-100-373.15]": 0.0009932510001817718,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[J/kg-N.m/kg-9.81-1]": 0.0008836249908199534,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[J/kg-kJ/kg-1000-1]": 0.0011145419994136319,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[K-C-373.15-100]": 0.0008642089960630983,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[N.m/kg-J/kg-1-9.81]": 0.0010221249976893887,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[N.m/kg-kJ/kg-1000-9.81]": 0.000992291999864392,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[Pa-bara-100000.0-1]": 0.0008315830054925755,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[Sm3-BOE-1-6.29]": 0.000808083001174964,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[bara-Pa-1-100000.0]": 0.0009380830015288666,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[bara-kPa-1-100]": 0.0008407510031247512,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[frac-%-0-0]": 0.0012379579857224599,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[frac-%-1-100]": 0.0009345410071546212,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kJ/kg-J/kg-1-1000]": 0.0009919159929268062,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kJ/kg-N.m/kg-9.81-1000]": 0.0010032919817604125,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kPa-bara-100-1]": 0.0009446670155739412,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg-t--1000.0--1.0]": 0.0010426659864606336,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg-t-0.0-0.0]": 0.00087795800936874,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg-t-1.0-0.001]": 0.0010163749975617975,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg-t-1000.0-1.0]": 0.000872499993420206,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg/d-t/d--1000.0--1.0]": 0.0008755420130910352,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg/d-t/d-0.0-0.0]": 0.0009295829950133339,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg/d-t/d-1.0-0.001]": 0.0008919579995563254,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[kg/d-t/d-1000.0-1.0]": 0.0009285409905714914,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t-kg--1.0--1000.0]": 0.0008740839984966442,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t-kg-0.001-1.0]": 0.0008589159842813388,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t-kg-1.0-1000.0]": 0.001104416005546227,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t-t--1.0--1.0]": 0.0008999580022646114,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t-t-0.0-0.0]": 0.0009181250061374158,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t-t-1000.0-1000.0]": 0.0007951669977046549,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t/d-kg/d--1.0--1000.0]": 0.0008935429941629991,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t/d-kg/d-0.001-1.0]": 0.0009713329782243818,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t/d-kg/d-1.0-1000.0]": 0.0009757070074556395,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t/d-t/d--1.0--1.0]": 0.00104154298605863,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t/d-t/d-0.0-0.0]": 0.000956124989897944,
"tests/libecalc/common/test_unit.py::test_simple_unit_conversion[t/d-t/d-1000.0-1000.0]": 0.0008936659869505093,
"tests/libecalc/common/test_unit.py::test_unit_conversion_float": 0.0008722509955987334,
"tests/libecalc/common/test_unit.py::test_unit_conversion_int": 0.0010909160191658884,
"tests/libecalc/common/test_unit.py::test_unit_conversion_list_array": 0.0007944170065457001,
"tests/libecalc/common/test_unit.py::test_unit_conversion_numpy_array": 0.0008630009979242459,
"tests/libecalc/common/test_unit.py::test_verify_unit": 0.0009312929905718192,
"tests/libecalc/common/test_variable_speed_compressor_chart_dto.py::TestVariableSpeedCompressorChart::test_invalid_curves": 0.0010775830160127953,
"tests/libecalc/common/test_variable_speed_compressor_chart_dto.py::TestVariableSpeedCompressorChart::test_variable_speed_compressor_chart": 0.0012084589980076998,
"tests/libecalc/common/test_version.py::test_comparison_equal[first0-second0-False]": 0.0008984160085674375,
"tests/libecalc/common/test_version.py::test_comparison_equal[first1-second1-False]": 0.0007839169993530959,
"tests/libecalc/common/test_version.py::test_comparison_equal[first2-second2-False]": 0.000923332991078496,
"tests/libecalc/common/test_version.py::test_comparison_equal[first3-second3-False]": 0.0010306249896530062,
"tests/libecalc/common/test_version.py::test_comparison_equal[first4-second4-False]": 0.0009064999903785065,
"tests/libecalc/common/test_version.py::test_comparison_equal[first5-second5-False]": 0.0009474170074099675,
"tests/libecalc/common/test_version.py::test_comparison_equal[first6-second6-True]": 0.0008992069779196754,
"tests/libecalc/common/test_version.py::test_comparison_equal[first7-second7-False]": 0.0008813329914119095,
"tests/libecalc/common/test_version.py::test_comparison_equal[first8-second8-False]": 0.0008132090006256476,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first0-second0-False]": 0.0008098330145003274,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first1-second1-True]": 0.0007341250020544976,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first2-second2-False]": 0.0007499170169467106,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first3-second3-True]": 0.0008797089976724237,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first4-second4-False]": 0.0008293740102089942,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first5-second5-True]": 0.0008557489927625284,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first6-second6-False]": 0.0009780410036910325,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first7-second7-True]": 0.0008610429940745234,
"tests/libecalc/common/test_version.py::test_comparison_grater_than[first8-second8-False]": 0.0008669989765621722,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first0-second0-False]": 0.0010590419988147914,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first1-second1-True]": 0.0009328340238425881,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first2-second2-False]": 0.0009488330251770094,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first3-second3-True]": 0.0009872079972410575,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first4-second4-False]": 0.0009501260065007955,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first5-second5-True]": 0.0009511249954812229,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first6-second6-True]": 0.001073042003554292,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first7-second7-True]": 0.000936206997721456,
"tests/libecalc/common/test_version.py::test_comparison_grater_than_or_equal[first8-second8-False]": 0.0009196250030072406,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first0-second0-True]": 0.0008179160067811608,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first1-second1-False]": 0.000767915989854373,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first2-second2-True]": 0.0008377919875783846,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first3-second3-False]": 0.000898582991794683,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first4-second4-True]": 0.0008031260076677427,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first5-second5-False]": 0.0009714589978102595,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first6-second6-False]": 0.001053582993336022,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first7-second7-False]": 0.0008935420046327636,
"tests/libecalc/common/test_version.py::test_comparison_less_than[first8-second8-True]": 0.0008308330143336207,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first0-second0-True]": 0.000943208986427635,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first1-second1-False]": 0.000998125018668361,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first2-second2-True]": 0.0008008340082596987,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first3-second3-False]": 0.0007646250014659017,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first4-second4-True]": 0.0008256260043708608,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first5-second5-False]": 0.0008074160141404718,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first6-second6-True]": 0.0007567499997094274,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first7-second7-False]": 0.0008989570051198825,
"tests/libecalc/common/test_version.py::test_comparison_less_than_or_equal[first8-second8-True]": 0.0014427490095840767,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first0-second0]": 0.0008701259939698502,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first1-second1]": 0.0009305839921580628,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first2-second2]": 0.0008381259976886213,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first3-second3]": 0.0010635420039761811,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first4-second4]": 0.0007706250034971163,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first5-second5]": 0.0008118749974528328,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first6-second6]": 0.0008548750047339126,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first7-second7]": 0.000869917988893576,
"tests/libecalc/common/test_version.py::test_comparison_not_equal[first8-second8]": 0.0008547919860575348,
"tests/libecalc/common/test_version.py::test_versions[-1.-2.0-expected_version4]": 0.0008159580029314384,
"tests/libecalc/common/test_version.py::test_versions[-expected_version1]": 0.0008422090031672269,
"tests/libecalc/common/test_version.py::test_versions[0-expected_version10]": 0.0009166249947156757,
"tests/libecalc/common/test_version.py::test_versions[0.0.0-expected_version3]": 0.0009256250050384551,
"tests/libecalc/common/test_version.py::test_versions[0.1.2-expected_version11]": 0.0008253760170191526,
"tests/libecalc/common/test_version.py::test_versions[1.1.1-expected_version5]": 0.0009186669922200963,
"tests/libecalc/common/test_version.py::test_versions[10.10.10-expected_version6]": 0.0009738740045577288,
"tests/libecalc/common/test_version.py::test_versions[100-expected_version9]": 0.0009464579925406724,
"tests/libecalc/common/test_version.py::test_versions[100.100-expected_version8]": 0.0009678749775048345,
"tests/libecalc/common/test_version.py::test_versions[100.100.100-expected_version7]": 0.0010140000231331214,
"tests/libecalc/common/test_version.py::test_versions[None-expected_version0]": 0.0009364579746033996,
"tests/libecalc/common/test_version.py::test_versions[master-expected_version15]": 0.0008056249789660797,
"tests/libecalc/common/test_version.py::test_versions[master-latest-expected_version16]": 0.0008014589984668419,
"tests/libecalc/common/test_version.py::test_versions[v1.1.1-expected_version12]": 0.0007689580234000459,
"tests/libecalc/common/test_version.py::test_versions[v2025.10.0-expected_version13]": 0.0008301260095322505,
"tests/libecalc/common/test_version.py::test_versions[v2025.10.10-expected_version14]": 0.0008477090013911948,
"tests/libecalc/common/test_version.py::test_versions[weird-expected_version2]": 0.0010014589788625017,
"tests/libecalc/common/utils/test_adjustment.py::test_linear_transform": 0.001044916978571564,
"tests/libecalc/common/utils/test_ecalc_uuid.py::test_ecalc_id_generator_returns_uuid7": 0.0008657499856781214,
"tests/libecalc/common/utils/test_math_utils.py::test_elementwise_subtraction_by_key[empty-this6-that6-expected_result6-None]": 0.0009608759864931926,
"tests/libecalc/common/utils/test_math_utils.py::test_elementwise_subtraction_by_key[incorrect lengths-this0-that0-None-expected_exception0]": 0.0010607900039758533,
"tests/libecalc/common/utils/test_math_utils.py::test_elementwise_subtraction_by_key[mismatching keys-this1-that1-None-expected_exception1]": 0.0012983329797862098,
"tests/libecalc/common/utils/test_math_utils.py::test_elementwise_subtraction_by_key[mix of positive, zero and negative results-this3-that3-expected_result3-None]": 0.0009758330270415172,
"tests/libecalc/common/utils/test_math_utils.py::test_elementwise_subtraction_by_key[none-None-None-None-expected_exception5]": 0.0009605830127838999,
"tests/libecalc/common/utils/test_math_utils.py::test_elementwise_subtraction_by_key[same data, all diff results should be zero-this2-that2-expected_result2-None]": 0.00099516699265223,
"tests/libecalc/common/utils/test_math_utils.py::test_elementwise_subtraction_by_key[use string as key-this4-that4-expected_result4-None]": 0.0008159160206560045,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_equal_comparison[left0-right0]": 0.0008405409898841754,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_equal_comparison[left1-right1]": 0.0008393340103793889,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_equal_comparison[left2-right2]": 0.0008652910037199035,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_indexing": 0.0008597910054959357,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_list_indexing": 0.0009385419980389997,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_resample_boolean": 0.0014395839971257374,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_slice_indexing": 0.0009294999908888713,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_unequal_comparison[left0-right0]": 0.0010186259896727279,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_unequal_comparison[left1-right1]": 0.0010197080118814483,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_unequal_comparison[left2-right2]": 0.0008787080005276948,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_update_list_of_indices": 0.000783500014222227,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_update_single_value": 0.0008302079950226471,
"tests/libecalc/common/utils/test_rates.py::TestBooleanTimeSeries::test_update_slice": 0.0008413749892497435,
"tests/libecalc/common/utils/test_rates.py::TestComputeCumulative::test_compute_cumulative_from_daily_rate": 0.0010733749950304627,
"tests/libecalc/common/utils/test_rates.py::TestComputeCumulative::test_compute_cumulative_from_rates_and_delta_time": 0.0010834580170921981,
"tests/libecalc/common/utils/test_rates.py::TestComputeCumulative::test_compute_cumulative_from_rates_and_delta_time_simple_data": 0.0008537500107195228,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesFloat::test_resample_down_sampling": 0.001518168006441556,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesFloat::test_resample_up_sampling": 0.0014485839928966016,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_different_types": 0.0007980420050444081,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_float_different_unit": 0.000880082996445708,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_float_gap_between_periods": 0.0008634989935671911,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_float_overlapping_periods": 0.0008497080125380307,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_float_overlapping_timesteps": 0.0008479169919155538,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_rate_different_rate_types": 0.0008265840006060898,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_rate_different_types": 0.000993583002127707,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_rate_different_unit": 0.0009140840120380744,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_rate_overlapping_periods": 0.0016472499846713617,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesMerge::test_merge_time_series_rate_success": 0.0008782500080997124,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesRate::test_adding_timeseriesrate": 0.0008742089994484559,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesRate::test_for_period": 0.0009762489935383201,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesRate::test_mismatch_regularity_values": 0.0010443329956615344,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesRate::test_mismatch_timesteps_values": 0.0009013329836307094,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesRate::test_resample_rate_dropping_to_constant_value": 0.0026514170167502016,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesVolumesCumulative::test_resample_down_sampling": 0.0021635010052705184,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesVolumesCumulative::test_resample_upsampling": 0.002708543004700914,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesVolumesResample::test_resample": 0.0016984170069918036,
"tests/libecalc/common/utils/test_rates.py::TestTimeSeriesVolumesResample::test_resample_missing_year": 0.0017427920101908967,
"tests/libecalc/common/utils/test_rates.py::TestTimeseriesRateToVolumes::test_resample_down_sampling": 0.0060946670128032565,
"tests/libecalc/common/utils/test_rates.py::TestTimeseriesRateToVolumes::test_resample_up_and_down_sampling": 0.006617875027586706,
"tests/libecalc/common/utils/test_rates.py::TestTimeseriesRateToVolumes::test_resample_up_sampling": 0.003318709001177922,
"tests/libecalc/common/utils/test_rates.py::TestTimeseriesRateToVolumes::test_to_volumes": 0.0009603320067981258,
"tests/libecalc/common/utils/test_rates.py::test_compute_stream_day_rate": 0.001259583019418642,
"tests/libecalc/core/consumers/consumer_function/test_direct_expression_consumer_function.py::test_direct_expression_consumer_function": 0.002147209001122974,
"tests/libecalc/core/consumers/consumer_function/test_direct_expression_consumer_function.py::test_direct_expression_consumer_function_consumption_rate_type": 0.0012069999938830733,
"tests/libecalc/core/consumers/system/test_consumer_system.py::TestConsumerSystemConsumerFunction::test_crossover_with_compressor_train_regression": 0.11278495800797828,
"tests/libecalc/core/consumers/system/test_consumer_system.py::TestConsumerSystemConsumerFunction::test_crossovers[rates0-max_rates0-expected_crossover_used0-expected_is_valid0]": 0.0016077089821919799,
"tests/libecalc/core/consumers/system/test_consumer_system.py::TestConsumerSystemConsumerFunction::test_crossovers[rates1-max_rates1-expected_crossover_used1-expected_is_valid1]": 0.0012797499948646873,
"tests/libecalc/core/consumers/system/test_consumer_system.py::TestConsumerSystemConsumerFunction::test_crossovers[rates2-max_rates2-expected_crossover_used2-expected_is_valid2]": 0.0012109160015825182,
"tests/libecalc/core/consumers/system/test_consumer_system.py::TestConsumerSystemConsumerFunction::test_operational_settings_used[rates0-100-expected_operational_settings_used0-True]": 0.0011708749952958897,
"tests/libecalc/core/consumers/system/test_consumer_system.py::TestConsumerSystemConsumerFunction::test_operational_settings_used[rates1-100-expected_operational_settings_used1-True]": 0.001173999989987351,
"tests/libecalc/core/consumers/system/test_consumer_system.py::TestConsumerSystemConsumerFunction::test_operational_settings_used[rates2-100-expected_operational_settings_used2-False]": 0.0012114169949200004,
"tests/libecalc/core/consumers/test_genset.py::test_genset_late_startup": 0.002178415990783833,
"tests/libecalc/core/consumers/test_genset.py::test_genset_outside_capacity": 0.002106626008753665,
"tests/libecalc/core/consumers/test_genset.py::test_genset_with_elconsumer_nan_results": 0.002177374015445821,
"tests/libecalc/core/consumers/test_legacy_consumer.py::test_electricity_consumer": 0.0018893749947892502,
"tests/libecalc/core/consumers/test_legacy_consumer.py::test_electricity_consumer_mismatch_time_slots": 0.0016741670115152374,
"tests/libecalc/core/consumers/test_legacy_consumer.py::test_fuel_consumer": 0.001974290978978388,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_chart_curve_100_percent_efficient": 0.0009538750018691644,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_chart_curve_data_add_valid_and_invalid_curve_data_point": 0.0010765409824671224,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_chart_curve_data_invalid_setup_from_arrays": 0.019850749988108873,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_chart_curve_data_setup_from_arrays": 0.0009570839902153239,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_chart_curve_sort_input_values": 0.0009628329862607643,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_distance_efficiency": 0.0012425819877535105,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_efficiency_as_function_of_rate": 0.0013320429861778393,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_head_as_function_of_rate": 0.0014000839873915538,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_interpolation_functions": 0.0013234589714556932,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_maximum_head_as_function_of_rate": 0.0010006260126829147,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_maximum_rate_as_function_of_head": 0.001001874974463135,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_rate_head_and_efficiency_at_maximum_rate": 0.000910917020519264,
"tests/libecalc/core/models/chart/test_chart_curve.py::test_rate_head_and_efficiency_at_minimum_rate": 0.0009802510030567646,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_efficiency_as_function_of_rate_and_head_zero_chart_data": 0.0019062079954892397,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_find_closest_speeds": 0.001377124004648067,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_get_efficiency_variable_chart": 0.004296168001019396,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_is_100_percent_efficient": 0.001181375002488494,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_max_flow_head_functions": 0.0012262069940334186,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_maximum_flow_function": 0.00116787500155624,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_min_flow_function": 0.0012419570120982826,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_minimum_head_function": 0.0011989160120720044,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_minimum_head_function2": 0.001266708000912331,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_minimum_head_function_with_ill_defined_curve": 0.0011463339906185865,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_properties": 0.0011778749758377671,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_setup_minimum_and_maximum_rate_as_functions_of_speed": 0.0014464990090345964,
"tests/libecalc/core/models/chart/test_variable_speed_chart.py::test_speed_curve_sorting": 0.0010158319782931358,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_1d_compressor_pd": 0.002177916991058737,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_1d_compressor_rate": 0.0019110409921268001,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_2d_compressor_degenerated_pd": 0.0023394160089083016,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_2d_compressor_degenerated_ps": 0.0025470840046182275,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_2d_compressor_degenerated_rate": 0.002538291009841487,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_full_3d_compressor": 0.007079707982484251,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_full_3d_compressor_degenerated_pd": 0.0030355009803315625,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_full_3d_compressor_degenerated_ps": 0.003822956990916282,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_full_3d_compressor_degenerated_rate": 0.0028733340004691854,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_full_3d_compressor_degenerated_rate_ps": 0.0021120829915162176,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_turbine_with_actual_data": 0.0010988750000251457,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_turbine_with_different_lengths": 0.0009296250063925982,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled.py::test_turbine_with_no_data": 0.0021237079927232116,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_max_rate_pd": 0.0013970409927424043,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_max_rate_ps": 0.0014713330019731075,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_max_rate_rate": 0.0010753740061772987,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_pd": 0.001180291990749538,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_ps": 0.0011464170092949644,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_rate_ordered": 0.0015714580076746643,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_rate_unordered": 0.0011905839783139527,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_1d.py::test_rate_with_power": 0.0012639589986065403,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_2d.py::test_ps_pd": 0.002121832992997952,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_2d.py::test_rate_pd": 0.002418125994154252,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_2d.py::test_rate_ps": 0.0021310829906724393,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_3d.py::test_CompressorSampled3D": 0.013340126010007225,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_3d.py::test_CompressorSampled3D_cube": 0.006670167000265792,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_3d.py::test_CompressorSampled3D_non_monotonic_rate": 0.02967995699145831,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_3d.py::test_compressor_sampled_3d": 0.08156041700567584,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_3d.py::test_injection_comp": 0.024868833002983592,
"tests/libecalc/core/models/compressor_modelling/sampled/test_compressor_sampled_3d.py::test_projection_functions": 0.006131834001280367,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_Node_scale": 0.0013186669966671616,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_calculate_plane_equation": 0.0016729990020394325,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_compute_simplices_in_new_pointset": 0.001372250000713393,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_equation_of_plane": 0.0009923329926095903,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_get_lower_upper_qhull": 0.00493920901499223,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_linear_interpolation_simplices_defined": 0.001476417004596442,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_sampled_compressor_datedata2": 0.04727258200000506,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_setup_simplices_from_qhulltable": 0.0013322509912541136,
"tests/libecalc/core/models/compressor_modelling/sampled/test_convex_hull_common.py::test_simplex_evaluate_surface": 0.0013085410027997568,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_internal_point_speed_interpolation": 0.0019868320086970925,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_rate_below_minflow": 0.001995624988921918,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_rate_below_minflow_speed_in_data": 0.0018226249958388507,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_rate_too_large": 0.0018527089850977063,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_below_minimum": 0.0015508340147789568,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_given": 0.0022507520188810304,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_increased": 0.0019063330255448818,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_increased_rate_increased": 0.00179145899892319,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_increased_rate_too_large": 0.002213750994997099,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_too_large": 0.0021039179991930723,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_too_large_rate_below_minimum": 0.0017037069919751957,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::TestPolytropicHeadAndEfficiencyCalculation::test_calculate_polytropic_head_and_efficiency_single_point_speed_too_large_rate_too_large": 0.0019257920066593215,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::test_calculate_head_and_efficiency_for_internal_point_between_given_speeds": 0.0027404999709688127,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::test_calculate_scaling_factors_for_speed_below_and_above": 0.0010656249942258,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::test_compare_variable_speed_compressor_chart_head_and_efficiency_known_point_compared_to_interpolation": 0.0017411239969078451,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::test_single_speed_compressor_chart_control_margin": 0.0013123760145390406,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart.py::test_variable_speed_compressor_chart_control_margin": 0.0012503750185715035,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart_generator.py::test_compressor_chart_from_head_and_rate_data": 0.02027204100158997,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart_generator.py::test_compressor_chart_from_head_and_rate_data_2": 0.0009672910091467202,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart_generator.py::test_compressor_chart_generic_below_stone_wall": 0.0015248339768731967,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart_generator.py::test_compressor_chart_generic_internal_points": 0.0013288750051287934,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart_generator.py::test_compressor_chart_generic_mixed_chart_areas": 0.0015877499972702935,
"tests/libecalc/core/models/compressor_modelling/test_compressor_chart_generator.py::test_compressor_chart_generic_mixed_chart_areas_without_choking": 0.0013029590045334771,
"tests/libecalc/core/models/compressor_modelling/test_compressor_model_vs_unisim.py::test_calculate_enthalpy_change_campbell_method": 0.21378425098373555,
"tests/libecalc/core/models/compressor_modelling/test_compressor_model_vs_unisim.py::test_fluid_density_at_standard_conditions": 0.026602665995596908,
"tests/libecalc/core/models/compressor_modelling/test_compressor_model_vs_unisim.py::test_fluid_streams": 0.06324737500108313,
"tests/libecalc/core/models/compressor_modelling/test_compressor_model_vs_unisim.py::test_simplified_compressor_train_compressor_stage_work": 0.00871045900566969,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_base.py::test_calculate_pressure_ratios_per_stage": 0.002205541997682303,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_base.py::test_maximum_speed": 0.002049917005933821,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_base.py::test_minimum_speed": 0.0028478339954745024,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCalculateSingleSpeedCompressorStage::test_rate_below_minimum_chart_rate": 0.0015597070014337078,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCalculateSingleSpeedCompressorStage::test_rate_within_chart_curve_range": 0.01796749999630265,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaft::test_adjust_energy_constant_mw": 0.04811083299864549,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaft::test_evaluate_rate_ps_pd_asv_pressure_control": 1.8692339570116019,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaft::test_evaluate_rate_ps_pd_asv_rate_control": 0.5355126659851521,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaft::test_evaluate_rate_ps_pd_common_asv": 1.5364814159984235,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaft::test_evaluate_rate_ps_pd_downstream_choke_pressure_control": 0.8463151670148363,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaft::test_evaluate_rate_ps_pd_downstream_choke_pressure_control_and_maximum_discharge_pressure": 0.4661539999942761,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaft::test_evaluate_rate_ps_pd_upstream_choke_pressure_control": 4.695347290020436,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaftOneRateTwoPressures::test_points_above_and_below_maximum_power": 0.4860043329827022,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaftOneRateTwoPressures::test_single_point_downstream_choke": 0.00608816699241288,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaftOneRateTwoPressures::test_single_point_rate_too_high_no_pressure_control": 0.002886706992285326,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaftOneRateTwoPressures::test_single_point_recirculate_on_minimum_speed_curve_one_compressor": 0.08645070801139809,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaftOneRateTwoPressures::test_single_point_within_capacity_one_compressor": 0.11845708300825208,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaftOneRateTwoPressures::test_single_point_within_capacity_one_compressor_add_constant": 0.006124000996351242,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::TestCompressorTrainCommonShaftOneRateTwoPressures::test_zero_rate_zero_pressure": 0.0755889999854844,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_adjustment_constant_and_factor_one_compressor": 0.00623620800615754,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_calculate_compressor_train_given_speed_invalid": 0.00572441601252649,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_calculate_evaluate_rate_ps_pd_single_speed_train_with_max_rate": 0.14872762499726377,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_calculate_single_speed_compressor_stage_given_target_discharge_pressure": 0.09120120899751782,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_calculate_single_speed_train": 0.041972083010477945,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_calculate_single_speed_train_zero_mass_rate": 0.054514415984158404,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_find_and_calculate_for_compressor_shaft_speed_given_rate_ps_pd_invalid_point": 0.14320858399150893,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_get_max_standard_rate_with_and_without_maximum_power": 0.7484717089973856,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_points_above_and_below_maximum_power": 0.17410295800073072,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_single_speed_compressor_train_vs_unisim_methane": 0.058779376005986705,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft.py::test_variable_speed_compressor_train_vs_unisim_methane": 0.27350841599400155,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft_utils.py::test_calculate_asv_corrected_rate": 0.0008635419944766909,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft_utils.py::test_calculate_outlet_pressure_campbell": 0.000953583003138192,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft_utils.py::test_calculate_polytropic_exponent_expression": 0.0010076659818878397,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_common_shaft_utils.py::test_calculate_power_in_megawatt": 0.0008648750081192702,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_adjust_energy_usage[10]": 0.01396033400669694,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_adjust_energy_usage[1]": 0.015998333008610643,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_adjust_energy_usage[2]": 0.013337542986846529,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_adjust_energy_usage[3]": 0.014384998998139054,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_adjust_energy_usage[5]": 0.01319862500531599,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_different_volumes_of_ingoing_and_outgoing_streams": 0.0012843330041505396,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_evaluate_variable_speed_compressor_train_multiple_streams_and_pressures_with_interstage_pressure": 0.6204872919915942,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_get_maximum_standard_rate_at_stone_wall": 4.457466749008745,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_get_maximum_standard_rate_max_speed_curve": 0.59742558299331,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_get_maximum_standard_rate_too_high_pressure_ratio": 0.005307666011503898,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_points_within_capacity_two_compressors_two_streams": 0.12471983399882447,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_recirculate_mixing_streams_with_zero_mass_rate": 1.0537897090107435,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_variable_speed_multiple_streams_and_pressures_maximum_power": 0.010038042004453018,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_variable_speed_vs_variable_speed_multiple_streams_and_pressures": 1.3454052909801248,
"tests/libecalc/core/models/compressor_modelling/test_compressor_train_multiple_streams.py::test_zero_rate_zero_pressure_multiple_streams": 0.15027816698420793,
"tests/libecalc/core/models/compressor_modelling/test_compressor_with_turbine.py::test_turbine_max_rate": 0.07922020799014717,
"tests/libecalc/core/models/compressor_modelling/test_compressor_with_turbine.py::test_variable_speed_multiple_streams_and_pressures_with_turbine": 0.1485066659952281,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_adaptive_pressure_update_beta_recovers_after_stable_iterations": 0.000811167003121227,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_adaptive_pressure_update_beta_reduces_after_two_large_flips": 0.0008040410029934719,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_maximize_x_given_boolean_condition_function": 0.0009428749908693135,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_maximize_x_given_invalid_boolean_condition_function": 0.0009096239955397323,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_maximize_x_given_strange_boolean_condition_function": 0.0008263340132543817,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_root_finding_method_func": 0.0009734589839354157,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_root_finding_method_func_prime": 0.0014780409983359277,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_root_finding_method_func_quadratic": 0.0010739999852376059,
"tests/libecalc/core/models/compressor_modelling/test_numeric_methods.py::test_root_finding_solution_out_of_bounds": 0.000514000013936311,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_calculate_compressor_work": 0.1096211249823682,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_calculate_enthalpy_change_head_iteration_and_outlet_stream": 0.4111550840025302,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_calculate_head": 0.0012948749936185777,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_calculate_inlet_pressure_stages": 0.0010717499972088262,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_calculate_maximum_rate_for_stage": 0.30801654199603945,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_calculate_polytropic_exponent_expression": 0.001413209000020288,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_calculate_polytropic_head": 0.0011569999915082008,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_compressor_train_simplified_known_stages_generic_chart": 0.4929674589948263,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_compressor_train_simplified_known_stages_no_indices_to_calculate": 0.0060890419845236465,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_evaluate_compressor_simplified_valid_points": 0.4880214990116656,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_get_max_standard_rate_with_zero_pressure": 0.06898258300498128,
"tests/libecalc/core/models/compressor_modelling/test_simplified_compressor_train.py::test_simplified_compressor_train_known_stage_and_maximum_power": 0.019802125010755844,
"tests/libecalc/core/models/test_consumer_tabular_energy_function.py::test_ConsumerTabularEnergyFunction": 0.002533917999244295,
"tests/libecalc/core/models/test_fuel_model.py::test_fuel_model": 0.0010909569973591715,
"tests/libecalc/core/models/test_fuel_model.py::test_temporal_fuel_model": 0.0010731669899541885,
"tests/libecalc/core/models/test_generator_model.py::TestGeneratorModelSampled::test_capacity_margin": 0.000926584005355835,
"tests/libecalc/core/models/test_generator_model.py::TestGeneratorModelSampled::test_evaluate": 0.0010655839869286865,
"tests/libecalc/core/models/test_pump.py::test_adjust_for_head_margin": 0.0008710830006748438,
"tests/libecalc/core/models/test_pump.py::test_pump_single_speed": 0.0019381680176593363,
"tests/libecalc/core/models/test_pump.py::test_pump_single_speed_above_maximum_head": 0.0020099999965168536,
"tests/libecalc/core/models/test_pump.py::test_single_speed_pump_energy_usage_and_failure_status": 0.004629376009688713,
"tests/libecalc/core/models/test_pump.py::test_variable_speed_pump": 0.0031889169913483784,
"tests/libecalc/core/models/test_pump.py::test_variable_speed_pump_pt2": 0.009253500000340864,
"tests/libecalc/core/models/test_turbine.py::test_turbine": 0.001396834006300196,
"tests/libecalc/core/models/test_turbine.py::test_turbine_with_power_adjustment_constant": 0.0010550420120125636,
"tests/libecalc/core/models/test_turbine.py::test_turbine_with_power_adjustment_constant_and_factor": 0.0009762920089997351,
"tests/libecalc/core/models/test_turbine.py::test_turbine_with_power_adjustment_factor": 0.0010197919909842312,
"tests/libecalc/domain/emission/test_emission_intensity.py::TestEmissionIntensityByPeriods::test_emission_intensity": 0.0009103740012506023,
"tests/libecalc/domain/emission/test_emission_intensity.py::TestEmissionIntensityByPeriods::test_emission_intensity_single_year": 0.0009346250008093193,
"tests/libecalc/domain/emission/test_emission_intensity.py::TestEmissionIntensityByPeriods::test_emission_intensity_without_start_of_the_year_in_time_vector": 0.000910458984435536,
"tests/libecalc/domain/emission/test_emission_intensity.py::TestEmissionIntensityByPeriods::test_emission_intensity_year_not_present_in_time_vector": 0.0008865420240908861,
"tests/libecalc/domain/emission/test_emission_intensity.py::TestEmissionIntensityByPeriods::test_emission_resample_by_year": 0.002597000013338402,
"tests/libecalc/domain/emission/test_emission_intensity.py::TestEmissionIntensityCumulative::test_emission_intensity": 0.0010607919975882396,
"tests/libecalc/domain/emission/test_emission_intensity.py::TestEmissionIntensityCumulative::test_emission_intensity_single_year": 0.0010423339845146984,
"tests/libecalc/domain/infrastructure/emitters/test_venting_emitter.py::test_direct_venting_emitter_with_condition": 0.001541250996524468,
"tests/libecalc/domain/infrastructure/emitters/test_venting_emitter.py::test_direct_venting_emitter_with_conditions": 0.001231957008712925,
"tests/libecalc/domain/infrastructure/emitters/test_venting_emitter.py::test_oil_venting_emitter_with_condition": 0.0012206659885123372,
"tests/libecalc/domain/infrastructure/emitters/test_venting_emitter.py::test_oil_venting_emitter_with_conditions": 0.0010623760026646778,
"tests/libecalc/domain/infrastructure/energy_components/legacy_consumer/test_tabular_consumer_function.py::test_tabular_consumer_single_period_returns_list": 0.0014361670037033036,
"tests/libecalc/domain/infrastructure/energy_components/turbine/test_turbine.py::TestTurbine::test_invalid_efficiency_fractions": 0.0009908330102916807,
"tests/libecalc/domain/infrastructure/energy_components/turbine/test_turbine.py::TestTurbine::test_turbine": 0.0008599589928053319,
"tests/libecalc/domain/infrastructure/energy_components/turbine/test_turbine.py::TestTurbine::test_unequal_load_and_efficiency_lengths": 0.0007709160126978531,
"tests/libecalc/domain/process/compressor/test_compressor_train.py::TestCompressorTrain::test_compatible_stages": 0.002086459018755704,
"tests/libecalc/domain/process/compressor/test_compressor_train.py::TestCompressorTrain::test_incompatible_stages": 0.052886375022353604,
"tests/libecalc/domain/process/compressor/test_compressor_train.py::TestCompressorTrain::test_valid_train_known_stages": 0.002376376010943204,
"tests/libecalc/domain/process/entities/process_units/test_legacy_splitter.py::test_splitter": 0.02942279100534506,
"tests/libecalc/domain/test_regularity.py::test_invalid_regularity": 0.0012777499941876158,
"tests/libecalc/domain/test_regularity.py::test_valid_regularity": 0.0013023739884374663,
"tests/libecalc/dto/results/model/test_requested_pressures_compressors.py::test_requested_pressures_compressor_system_temporal_model": 0.11786287599534262,
"tests/libecalc/dto/results/model/test_requested_pressures_compressors.py::test_requested_pressures_compressor_train_temporal_model": 2.54003441700479,
"tests/libecalc/dto/test_composition.py::test_composition": 0.0013682500139111653,
"tests/libecalc/dto/test_electricity_consumer.py::TestElectricityConsumer::test_valid_electricity_consumer": 0.001323041011346504,
"tests/libecalc/dto/test_fuel_consumer.py::TestFuelConsumer::test_no_fuel_installation_and_blank_reference_consumer": 0.010573874998954125,
"tests/libecalc/dto/test_generator_set.py::TestGeneratorSet::test_missing_installation_fuel": 0.015444541015313007,
"tests/libecalc/dto/test_generator_set.py::TestGeneratorSet::test_valid": 0.0012520419986685738,
"tests/libecalc/dto/test_generator_set.py::TestGeneratorSetSampled::test_invalid_headers": 0.0011258330196142197,
"tests/libecalc/dto/test_generator_set.py::TestGeneratorSetSampled::test_valid": 0.0012533339904621243,
"tests/libecalc/dto/utils/test_validators.py::TestConvertDateToDatetime::test_date": 0.0010965420224238187,
"tests/libecalc/dto/utils/test_validators.py::TestConvertDateToDatetime::test_datetime": 0.001211082999361679,
"tests/libecalc/dto/utils/test_validators.py::TestConvertExpression::test_expression": 0.00100187401403673,
"tests/libecalc/dto/utils/test_validators.py::TestConvertExpression::test_none": 0.0010997920035151765,
"tests/libecalc/dto/utils/test_validators.py::TestConvertExpression::test_time_dependent_expression": 0.0010794170084409416,
"tests/libecalc/dto/utils/test_validators.py::TestDefaultDate::test_date": 0.001070165992132388,
"tests/libecalc/dto/utils/test_validators.py::TestDefaultDate::test_date_dict": 0.0013278330152388662,
"tests/libecalc/dto/utils/test_validators.py::TestDefaultDate::test_invalid_date_dict": 0.0010367499926360324,
"tests/libecalc/dto/utils/test_validators.py::TestDefaultDate::test_none": 0.0010407499939901754,
"tests/libecalc/dto/utils/test_validators.py::TestDefaultDate::test_set_default": 0.0012638339831028134,
"tests/libecalc/expression/test_expression.py::TestExpression::test_constant": 0.0008317910105688497,
"tests/libecalc/expression/test_expression.py::TestExpression::test_divide_zero": 0.0008854579937178642,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expression_add_variable_references": 0.0009324150014435872,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[(((5 {+} 4) {+} 3 ) {+} 2)-14]": 0.0011236659775022417,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[((5 {+} 4) {*} 2 {-} 3) {+} 1-16]": 0.001035458015394397,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[(5 > 4) {+} (3 >= 3)-2]": 0.0012403329892549664,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[(5 {+} 4) {*} 2-18]": 0.0013221249828347936,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[(5)-5]": 0.0011111659987363964,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[10 {*} 2 {^} 2-40.0]": 0.0009726249991217628,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[10 {/} 4-2.5]": 0.001150498996139504,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[12 < 7 {+} 6-1]": 0.00130824999359902,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[12 < 7-0]": 0.0010836250003194436,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[12 >= 7-1]": 0.0008674160053487867,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[12 {*} 7-84]": 0.0010898320033447817,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[12 {+} 7-19]": 0.0009628749976400286,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[12 {-} 7 == 5-1]": 0.0013382509932853281,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[12 {-} 7-5]": 0.0008348750125151128,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[2 {+} 2 {^} 4 {*} 2-34.0]": 0.0009471239900449291,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[2 {^} 4-16.0]": 0.000900708997505717,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[3 {^} 3-27]": 0.0009583350038155913,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[4 {^} 3 {^} 2-262144]": 0.000978498996119015,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[5 4 {+}-9]": 0.0009279569785576314,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[5 > 4 {+} 3-0]": 0.0010974580218316987,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[5 {+} 4 != 9-0]": 0.0010414589778520167,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[5 {+} 4 == 9-1]": 0.0011759170010918751,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions[5-5]": 0.001371084013953805,
"tests/libecalc/expression/test_expression.py::TestExpression::test_expressions_with_scientific_notation": 0.0009289590234402567,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[((3{+}4){/}2{*}) {+} 2-expected6]": 0.001125291979406029,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(10 {+} 1 {+} ( 5 {*} 2>0)-expected13]": 0.0008986250031739473,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(10 {+} 1 {+} 5 {*} (2>0)-expected11]": 0.0012194580049254,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(10 {+} 1 {+} 5 ) {*} (2>0-expected12]": 0.0011467910080682486,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(3{+}4){/}2{*} {+} 2-expected7]": 0.0011008750007022172,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(5 {+})-expected15]": 0.0008010009914869443,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(5*4)==9-expected3]": 0.0010590409947326407,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(5+4)==9-expected1]": 0.0011218750150874257,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(5-4)==9-expected2]": 0.001149375006207265,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(5/4)==9-expected4]": 0.0010030410048784688,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(5^4)==9-expected5]": 0.000944749015616253,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[(5{+}4)=9-expected0]": 0.009924499987391755,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[10 {+} 1 {+} 5) {*} (2>0)-expected10]": 0.0010420840117149055,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[4{^}-expected9]": 0.0009399169939570129,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[5 {+}-expected14]": 0.0008643749897601083,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_expressions[{/}4-expected8]": 0.0009399579867022112,
"tests/libecalc/expression/test_expression.py::TestExpression::test_invalid_nof_parentheses": 0.0017842499946709722,
"tests/libecalc/expression/test_expression.py::TestExpression::test_missing_variable[((FULL;GAS_LIFT {+} FULL;GAS_INJ){/}FULL;REGULARITY){*} (((FULL;GAS_LIFT {+} FULL;GAS_INJ){/}FULL;REGULARITY)<8200000) {+} (8200000){*} (((FULL;GAS_LIFT {+} FULL;GAS_INJ){/}FULL;REGULARITY)>8200000)-expected3]": 0.0010388749942649156,
"tests/libecalc/expression/test_expression.py::TestExpression::test_missing_variable[GAS_INJ_TOTAL:GRP-expected0]": 0.000887001006049104,
"tests/libecalc/expression/test_expression.py::TestExpression::test_missing_variable[SIM1;GAS_INJ_TOTAL:FOOBAR {*} 2-expected2]": 0.0009683340031187981,
"tests/libecalc/expression/test_expression.py::TestExpression::test_missing_variable[SIM2;GAS_INJ_TOTAL:GRP-expected1]": 0.000869040988618508,
"tests/libecalc/expression/test_expression.py::TestExpression::test_pydantic_parse": 0.0009654579916968942,
"tests/libecalc/expression/test_expression.py::TestExpression::test_serialization": 0.001318666007136926,
"tests/libecalc/expression/test_expression.py::TestExpression::test_simple": 0.0008084169821813703,
"tests/libecalc/expression/test_expression.py::TestExpression::test_with_operators": 0.0011503760033519939,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer": 0.0010551660088822246,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.111e+1-expected8-expected_token_tags8]": 0.0008904159913072363,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.111e-1-expected9-expected_token_tags9]": 0.0008489590109093115,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.111e-111-expected10-expected_token_tags10]": 0.0008544589945813641,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.111e1-expected7-expected_token_tags7]": 0.0009045409824466333,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.1e+1-expected2-expected_token_tags2]": 0.0009358340175822377,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.1e+111-expected5-expected_token_tags5]": 0.0007741660083411261,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.1e-000001-expected4-expected_token_tags4]": 0.0007367080106632784,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.1e-1-expected3-expected_token_tags3]": 0.0012697490165010095,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.1e-111-expected6-expected_token_tags6]": 0.0014286270015873015,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.1e1-expected0-expected_token_tags0]": 0.001413333011441864,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1.1e111-expected1-expected_token_tags1]": 0.0010451250127516687,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1e+1-expected12-expected_token_tags12]": 0.0009664999961387366,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1e-1-expected13-expected_token_tags13]": 0.0008724570070626214,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1e-111-expected14-expected_token_tags14]": 0.0009431680082343519,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[1e1-expected11-expected_token_tags11]": 0.0007975010084919631,
"tests/libecalc/expression/test_expression_evaluator.py::test_lexer_scientific[2.4e6 {/} 100 {*} 1.35e-05{+} 2e14 {-} 6.543e+11 {^} VARIABLE;VAL1-expected15-expected_token_tags15]": 0.0009694159962236881,
"tests/libecalc/input/mappers/test_consumer_chart.py::TestCompressorChartSingleSpeed::test_invalid_unequal_speed": 0.0008628750219941139,
"tests/libecalc/input/mappers/test_consumer_chart.py::TestCompressorChartSingleSpeed::test_valid_with_speed": 0.001131334007368423,
"tests/libecalc/input/mappers/test_consumer_chart.py::TestCompressorChartSingleSpeed::test_valid_without_speed": 0.0010022079950431362,
"tests/libecalc/input/mappers/test_consumer_chart.py::TestSingleSpeedChart::test_invalid_unequal_speed": 0.000961125988396816,
"tests/libecalc/input/mappers/test_consumer_chart.py::TestSingleSpeedChart::test_valid_with_speed": 0.0011970830091740936,
"tests/libecalc/input/mappers/test_consumer_chart.py::TestSingleSpeedChart::test_valid_without_speed": 0.0010712499934015796,
"tests/libecalc/input/mappers/test_model_mapper.py::TestCompressorChartMapping::test_compressor_chart_from_file_and_in_yaml_is_equal": 0.005079500013380311,
"tests/libecalc/input/mappers/test_utils.py::TestMapCondition::test_valid_multiple": 0.0010202100093010813,
"tests/libecalc/input/mappers/test_utils.py::TestMapCondition::test_valid_multiple_with_single_item": 0.0008370840077986941,
"tests/libecalc/input/mappers/test_utils.py::TestMapCondition::test_valid_single": 0.0009125419892370701,
"tests/libecalc/input/mappers/test_utils.py::test_convert_efficiency_to_fraction": 0.0009439999994356185,
"tests/libecalc/input/mappers/test_utils.py::test_convert_head_to_joule_per_kg": 0.0008977490069810301,
"tests/libecalc/input/mappers/test_utils.py::test_convert_head_to_meter_liquid_column": 0.0008714159921510145,
"tests/libecalc/input/mappers/test_utils.py::test_convert_rate_to_am3_per_hour": 0.0007827079971320927,
"tests/libecalc/input/mappers/test_utils.py::test_convert_temperature_to_kelvin": 0.0008919990068534389,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_resource_names[SIM*]": 0.001000874995952472,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_resource_names[SIM;1]": 0.0010198329982813448,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_resource_names[~@ABC]": 0.0009556660079397261,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_resource_names[~ABC]": 0.0010680830164346844,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[*A]": 0.0009860830032266676,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[1]": 0.0010140000085812062,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[A $]": 0.0008427090215263888,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[A!A]": 0.0008740829944144934,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[A)A]": 0.0008785829995758832,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[A?A]": 0.0008157499978551641,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[A\\xa3]": 0.000919749989407137,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[C*]": 0.0007764999900246039,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[COLUMN;1]": 0.0008991259819595143,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_time_series_headers[~ABC]": 0.0009469590004300699,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers0-columns0-error_message0]": 0.020119581997278146,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers1-columns1-error_message1]": 0.0019730420026462525,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers2-columns2-error_message2]": 0.0019208340090699494,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers3-columns3-error_message3]": 0.0011153759987792,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers4-columns4-error_message4]": 0.0016317089757649228,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers5-columns5-error_message5]": 0.0015936249983496964,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers6-columns6-error_message6]": 0.0016049170080805197,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers7-columns7-error_message7]": 0.0015355840005213395,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_invalid_timeseries[headers8-columns8-error_message8]": 0.0016423749912064523,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_invalid_datetime_types[mix of date and datetime]": 0.0018692510057007894,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_invalid_datetime_types[mix of eu and us style date, with time]": 0.0015624169900547713,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_invalid_datetime_types[mix of eu and us style date]": 0.001739623985486105,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_invalid_datetime_types[string year and some dates]": 0.002285709007992409,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_invalid_datetime_types[us style date]": 0.0015811249904800206,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_invalid_datetime_types[us style datetime, am/pm]": 0.0016235840012086555,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_invalid_datetime_types[us style datetime]": 0.0016078330081654713,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[ISO-8601 date only]": 0.0014452089963015169,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[ISO-8601 datetime]": 0.0014264999917941168,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[eu style date]": 0.0015321670070989057,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[eu style datetime, without seconds]": 0.0020524590072454885,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[eu style datetime]": 0.0027056660037487745,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[integer and string year mix]": 0.0014785009843762964,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[integer year only]": 0.0016264589939964935,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_valid_datetime_types[string year only]": 0.0014630410150857642,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_timeseries_with_int_as_date": 0.001740331994369626,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_undefined_type_for_miscellaneous_resource": 0.0011187500058440492,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_minimal_timeseries_different_types[MISCELLANEOUS-True-True-LEFT-True]": 0.0020862910023424774,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_headers[A+B]": 0.00189291599963326,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_headers[A.]": 0.0022757070109946653,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_headers[A:/2]": 0.0014848339924355969,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_headers[A:2]": 0.001993292025872506,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_headers[COLUMN 1]": 0.0023007910058367997,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_headers[SAT:20,20,20]": 0.0015690839936723933,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_headers[a#b]": 0.0016090840072138235,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_multiple_columns": 0.001668791999691166,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries.py::TestTimeSeries::test_valid_time_series_unsorted": 0.001546292012790218,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestFitTimeSeriesToTimeVector::test_extrapolate_outside_false": 0.0008102910069283098,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestFitTimeSeriesToTimeVector::test_extrapolate_outside_true": 0.000840625012642704,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestFitTimeSeriesToTimeVector::test_interpolate_left": 0.0010845829965546727,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestFitTimeSeriesToTimeVector::test_interpolate_linear": 0.0010814989946084097,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestFitTimeSeriesToTimeVector::test_interpolate_right": 0.0008995829994091764,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestFitTimeSeriesToTimeVector::test_interpolate_single_date_to_single_date_global_time_vector": 0.0012517489958554506,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestFitTimeSeriesToTimeVector::test_interpolate_to_shorter_global_time_vector": 0.0011893330229213461,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestGetGlobalTimeVector::test_additional_dates": 0.000787208991823718,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestGetGlobalTimeVector::test_only_end": 0.0008957920072134584,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestGetGlobalTimeVector::test_only_start_and_end": 0.0008679580059833825,
"tests/libecalc/input/mappers/variables_mapper/test_timeseries_utils.py::TestGetGlobalTimeVector::test_trim_start_and_end": 0.0008712090057088062,
"tests/libecalc/input/mappers/variables_mapper/test_variables_mapper.py::TestEvaluateVariables::test_many_layers": 0.0010918760090135038,
"tests/libecalc/input/mappers/variables_mapper/test_variables_mapper.py::TestEvaluateVariables::test_time_variable": 0.0006414589879568666,
"tests/libecalc/input/mappers/variables_mapper/test_variables_mapper.py::TestEvaluateVariables::test_two_layers": 0.0010550410079304129,
"tests/libecalc/input/mappers/variables_mapper/test_variables_mapper.py::TestEvaluateVariables::test_unsolvable": 0.0011463730043033138,
"tests/libecalc/input/mappers/variables_mapper/test_variables_mapper.py::TestVariableProcessor::test_process_time_variable_without_references": 0.0010033330036094412,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_header_name_not_found": 0.003375832995516248,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_header_names_are_case_insensitive": 0.0036717069888254628,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_missing_headers": 0.02478220799821429,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_no_nans": 0.0051133759843651205,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa \", bb-False]": 0.005349499988369644,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa #, bb-True]": 0.003564666010788642,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa %, bb-False]": 0.003992083016782999,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa &, bb-False]": 0.005353915999876335,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa ', bb-False]": 0.003729374991962686,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa )(, bb-False]": 0.004222791991196573,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa +, bb-True]": 0.004732334011350758,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa -, bb-True]": 0.0039234580035554245,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa ., bb-True]": 0.00335241699940525,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa /, bb-True]": 0.005009625005186535,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa 0, bb-True]": 0.003124166003544815,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa :, bb-True]": 0.004867166018811986,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa ><, bb-False]": 0.004794248990947381,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa ?, bb-False]": 0.004755541987833567,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa @, bb-False]": 0.003990708995843306,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa ][, bb-False]": 0.003263707010773942,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa _, bb-True]": 0.004718750002211891,
"tests/libecalc/input/test_file_io.py::TestReadFacilityResource::test_valid_characters[aa }{, bb-False]": 0.003720542008522898,
"tests/libecalc/input/test_file_io.py::TestReadResourceFromString::test_floating_point_precision": 0.001284040990867652,
"tests/libecalc/input/test_file_io.py::TestReadResourceFromString::test_missing_value": 0.0012535429850686342,
"tests/libecalc/input/test_file_io.py::TestReadResourceFromString::test_string": 0.0016043760115280747,
"tests/libecalc/input/test_file_io.py::TestReadTimeseriesResource::test_read_timeseries_missing_value": 0.008035208011278883,
"tests/libecalc/input/test_file_io.py::TestReadTimeseriesResource::test_read_timeseries_with_thousand_spacing": 0.0034080829937011003,
"tests/libecalc/input/test_file_io.py::TestReadYaml::test_detect_duplicate_keys_in_yaml": 0.0014452089963015169,
"tests/libecalc/input/test_file_io.py::TestReadYaml::test_dump_yaml_include": 0.001753207019646652,
"tests/libecalc/input/test_file_io.py::TestReadYaml::test_empty_optional_list_keyword": 0.00252566700510215,
"tests/libecalc/input/test_file_io.py::TestReadYaml::test_facility_input_missing_headers": 0.0023332089913310483,
"tests/libecalc/input/test_file_io.py::TestReadYaml::test_read_yaml": 0.00164508301531896,
"tests/libecalc/input/test_file_io.py::TestReadYaml::test_read_yaml_include": 0.0016417920123785734,
"tests/libecalc/input/test_file_io.py::TestReadYaml::test_time_series_missing_headers": 0.00237762501637917,
"tests/libecalc/input/test_file_io.py::TestZipUpload::test_find_longest_common_path": 0.0011926680308533832,
"tests/libecalc/input/test_file_io.py::TestZipUpload::test_make_relative_paths": 0.0010620839893817902,
"tests/libecalc/input/test_file_io.py::TestZipUpload::test_rename_duplicates": 0.0012434999807737768,
"tests/libecalc/input/test_yaml_configuration.py::TestYamlConfiguration::test_invalid_timeseries_type": 0.009462082976824604,
"tests/libecalc/input/test_yaml_configuration.py::TestYamlConfiguration::test_read_chart_curve_files_from_models": 0.0010400010069133714,
"tests/libecalc/input/test_yaml_configuration.py::TestYamlConfiguration::test_read_dates_from_dict": 0.0012063739850418642,
"tests/libecalc/input/yaml_types/test_yaml_variable.py::TestVariables::test_invalid_first_character": 0.0012255000037839636,
"tests/libecalc/input/yaml_types/test_yaml_variable.py::TestVariables::test_invalid_second_character": 0.001172666990896687,
"tests/libecalc/input/yaml_types/test_yaml_variable.py::TestVariables::test_time_variable": 0.0013067500112811103,
"tests/libecalc/input/yaml_types/test_yaml_variable.py::TestVariables::test_valid_entry": 0.0015419989940710366,
"tests/libecalc/integration/test_all_energy_usage_models.py::test_all_results": 3.5095758750103414,
"tests/libecalc/integration/test_example_models_validity.py::test_example_models_validity[advanced_sampled]": 1.5644757080008276,
"tests/libecalc/integration/test_example_models_validity.py::test_example_models_validity[drogon]": 0.34153037500800565,
"tests/libecalc/integration/test_example_models_validity.py::test_example_models_validity[simple]": 0.024128082994138822,
"tests/libecalc/integration/test_example_models_validity.py::test_example_models_validity[simple_temporal]": 0.026426458003697917,
"tests/libecalc/integration/test_minimal_is_valid.py::test_is_valid_is_boolean": 0.005545832987991162,
"tests/libecalc/integration/test_multiple_installations.py::test_asset_with_multiple_installations": 0.007869206994655542,
"tests/libecalc/output/flow_diagram/test_ecalc_model_mapper.py::TestEcalcModelMapper::test_all_energy_usage_models": 0.11177191798924468,
"tests/libecalc/output/flow_diagram/test_ecalc_model_mapper.py::TestEcalcModelMapper::test_case_with_dates": 0.006949001006432809,
"tests/libecalc/output/test_frequencies.py::test_frequency": 0.0028091659914935008,
"tests/libecalc/output/test_frequencies.py::test_frequency_to_string": 0.0009592919959686697,
"tests/libecalc/presentation/exporter/formatters/test_csv_formatter.py::TestCSVFormatter::test_format_comma": 0.0010142500104848295,
"tests/libecalc/presentation/exporter/formatters/test_csv_formatter.py::TestCSVFormatter::test_format_tabs": 0.0013325000036275014,
"tests/libecalc/presentation/exporter/handlers/test_handlers.py::TestHandlers::test_file_handler": 0.011537875005160458,
"tests/libecalc/presentation/exporter/handlers/test_handlers.py::TestHandlers::test_multi_file_handler": 0.009921043019858189,
"tests/libecalc/presentation/exporter/handlers/test_handlers.py::TestHandlers::test_multi_stream_handler": 0.001213916009874083,
"tests/libecalc/presentation/exporter/handlers/test_handlers.py::TestHandlers::test_stream_handler_defaults": 0.0010799159936141223,
"tests/libecalc/presentation/exporter/handlers/test_handlers.py::TestHandlers::test_stream_handler_with_names": 0.0006880829751025885,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_boiler_heater_categories": 0.04243808300816454,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_electrical_and_mechanical_power_asset": 0.018471708026481792,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_electrical_and_mechanical_power_installation": 0.013001875995541923,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_emissions_diesel_fixed_and_mobile": 0.0850200830027461,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_max_usage_from_shore": 0.05355245900864247,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_only_venting_emitters_no_fuelconsumers": 0.073869833999197,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_power_from_shore": 0.10205062599561643,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_temporal_models_compressor": 0.046076708007603884,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_temporal_models_detailed": 0.05201375001342967,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_temporal_models_offshore_wind": 0.04430237598717213,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_venting_emitters": 0.09012495800561737,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_venting_emitters_direct_multiple_emissions_ltp": 0.030841166008030996,
"tests/libecalc/presentation/exporter/test_ltp.py::TestLtp::test_venting_emitters_volume_multiple_emissions_ltp": 0.06405045799328946,
"tests/libecalc/presentation/simple_result/test_simple.py::TestDeltaProfile::test_common_timesteps_common_components": 0.0014636669948231429,
"tests/libecalc/presentation/simple_result/test_simple.py::TestDeltaProfile::test_common_timesteps_different_components": 0.001945123978657648,
"tests/libecalc/presentation/simple_result/test_simple.py::TestDeltaProfile::test_different_emissions": 0.001251374967978336,
"tests/libecalc/presentation/simple_result/test_simple.py::TestDeltaProfile::test_different_periods_common_components_common_first_and_last_dates": 0.0014937500091036782,
"tests/libecalc/presentation/simple_result/test_simple.py::TestDeltaProfile::test_different_periods_common_components_different_first_and_last_dates": 0.0013402920012595132,
"tests/libecalc/presentation/simple_result/test_simple.py::TestDeltaProfile::test_same_model": 0.0012053749960614368,
"tests/libecalc/presentation/yaml/domain/test_time_series_cable_loss.py::test_single_category_other": 0.0011744159855879843,
"tests/libecalc/presentation/yaml/domain/test_time_series_cable_loss.py::test_single_category_power_from_shore": 0.0013966659898869693,
"tests/libecalc/presentation/yaml/domain/test_time_series_cable_loss.py::test_temporal_category_switch": 0.0010028349934145808,
"tests/libecalc/presentation/yaml/domain/test_time_series_cable_loss.py::test_temporal_category_switch_back": 0.0009173760045086965,
"tests/libecalc/presentation/yaml/domain/test_time_series_flow_rate.py::test_negative_fuel_rate_direct_fuel_consumer": 0.0011494570062495768,
"tests/libecalc/presentation/yaml/domain/test_time_series_mask.py::test_expression_time_series_variable_get_values_with_mask": 0.0010885010124184191,
"tests/libecalc/presentation/yaml/domain/test_time_series_mask.py::test_time_series_mask_condition_mask": 0.001200667000375688,
"tests/libecalc/presentation/yaml/domain/test_time_series_mask.py::test_time_series_mask_float_mask": 0.0010804169869516045,
"tests/libecalc/presentation/yaml/domain/test_time_series_mask.py::test_time_series_mask_int_mask": 0.001176416000816971,
"tests/libecalc/presentation/yaml/domain/test_time_series_mask.py::test_time_series_mask_none": 0.0011347090039635077,
"tests/libecalc/presentation/yaml/domain/test_time_series_pressure.py::test_expression_where_sum_of_variables_give_negative_pressure": 0.001309167011640966,
"tests/libecalc/presentation/yaml/domain/test_time_series_pressure.py::test_expression_with_negative_pressure": 0.000965875995461829,
"tests/libecalc/presentation/yaml/domain/test_time_series_pressure.py::test_expressions_with_pressure_ratio_less_than_one": 0.0009037080017151311,
"tests/libecalc/presentation/yaml/mappers/test_simplified_train_mapping_utils.py::test_calculate_number_of_stages[2-suction_pressures0-discharge_pressures0-1]": 0.0009010410285554826,
"tests/libecalc/presentation/yaml/mappers/test_simplified_train_mapping_utils.py::test_calculate_number_of_stages[2-suction_pressures1-discharge_pressures1-2]": 0.0008859590161591768,
"tests/libecalc/presentation/yaml/mappers/test_simplified_train_mapping_utils.py::test_calculate_number_of_stages[2-suction_pressures2-discharge_pressures2-3]": 0.0008596249972470105,
"tests/libecalc/presentation/yaml/test_location.py::TestLocation::test_keys_with_date": 0.0009128339879680425,
"tests/libecalc/presentation/yaml/test_location.py::TestLocation::test_keys_with_int": 0.0009864999883575365,
"tests/libecalc/presentation/yaml/test_location.py::TestLocation::test_single_key": 0.0007482069922843948,
"tests/libecalc/presentation/yaml/test_location.py::TestLocationParseDate::test_parse_key_date": 0.0008871680038282648,
"tests/libecalc/presentation/yaml/test_validate_for_run_no_neqsim.py::test_validate_for_run_does_not_use_neqsim": 0.11460791701392736,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_no_emissions_direct": 0.0011035839997930452,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_no_volume_oil": 0.0010605420102365315,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_venting_emitter": 0.0018627069948706776,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_venting_emitter_condition_mapping_and_evaluation": 0.005465875001391396,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_venting_emitter_oil_volume": 0.0014483339909929782,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_venting_emitters_direct_uppercase_emissions_name": 0.0010929580021183938,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_venting_emitters_volume_uppercase_emissions_name": 0.0009870829962892458,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_yaml_direct_type_emitter_with_condition": 0.000921042010304518,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_yaml_direct_type_emitter_with_conditions": 0.0008729999826755375,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_yaml_oil_type_emitter_with_condition": 0.0009562069753883407,
"tests/libecalc/presentation/yaml/test_venting_emitter.py::TestVentingEmitter::test_yaml_oil_type_emitter_with_conditions": 0.0009860400023171678,
"tests/libecalc/presentation/yaml/test_venting_emitter_validation_errors.py::test_wrong_unit_emitters": 0.0009200829808833078,
"tests/libecalc/presentation/yaml/test_venting_emitter_validation_errors.py::test_wrong_unit_format_emitters": 0.0009415000095032156,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_invalid_expression_token": 0.05029979100800119,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_invalid_model_reference": 0.003054917004192248,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_invalid_yaml": 0.014588209000066854,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_no_emitters_or_fuelconsumers": 0.003039624003577046,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_valid_cases[advanced]": 0.04990195900609251,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_valid_cases[all_energy_usage_models]": 0.10706816699530464,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_valid_cases[drogon]": 0.016919500994845293,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_valid_cases[ltp]": 0.7358763740048744,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_valid_cases[simple]": 0.021743582998169586,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_valid_cases[simple_temporal]": 0.02292583300732076,
"tests/libecalc/presentation/yaml/test_yaml_model.py::TestYamlModelValidation::test_wrong_keyword_name": 0.00202041698503308,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[electricity_consumer-asset]": 0.004927040994516574,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[electricity_consumer-fuel_consumer]": 0.005100790018332191,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[electricity_consumer-installation]": 0.004890041978796944,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[electricity_consumer-venting_emitter]": 0.004826125004910864,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[fuel_consumer-asset]": 0.004717374002211727,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[fuel_consumer-installation]": 0.004875208003795706,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[fuel_consumer-venting_emitter]": 0.005310918015311472,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[genset-asset]": 0.00546158199722413,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[genset-electricity_consumer]": 0.005811292008729652,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[genset-fuel_consumer]": 0.005042166987550445,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[genset-installation]": 0.004835499988985248,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[genset-venting_emitter]": 0.005113041988806799,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[installation-asset]": 0.004717460004030727,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[venting_emitter-asset]": 0.004869333002716303,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_duplicate_names_combinations[venting_emitter-installation]": 0.005080582996015437,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_fuel_types_unique_name": 0.004496126013691537,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_genset_duplicate_names": 0.01698158298677299,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_models_unique_name[facility_inputs0-models0-expected_error_message0]": 0.0039214169955812395,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_models_unique_name[facility_inputs1-models1-expected_error_message1]": 0.005262583988951519,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_models_unique_name[facility_inputs2-models2-expected_error_message2]": 0.0061609160038642585,
"tests/libecalc/presentation/yaml/test_yaml_model_unique_name.py::test_timeseries_unique_name": 0.00512704299762845,
"tests/libecalc/presentation/yaml/yaml_models/test_yaml_model_errors.py::test_invalid_models[PYYAML-\\nVARIABLES:\\n some_var: 1\\n some_var: 2\\n-duplicate_keys]": 0.0010979170037899166,
"tests/libecalc/presentation/yaml/yaml_models/test_yaml_model_errors.py::test_invalid_models[PYYAML-\\n`INSTALLATIONS: []\\n-invalid_token_start]": 0.0015081250021466985,
"tests/libecalc/presentation/yaml/yaml_models/test_yaml_model_errors.py::test_invalid_models[PYYAML-\\n{}INSTALLATIONS: []\\n-invalid_object_start]": 0.001074167012120597,
"tests/libecalc/presentation/yaml/yaml_models/test_yaml_model_errors.py::test_invalid_models[RUAMEL-\\nVARIABLES:\\n some_var: 1\\n some_var: 2\\n-duplicate_keys]": 0.003424249996896833,
"tests/libecalc/presentation/yaml/yaml_models/test_yaml_model_errors.py::test_invalid_models[RUAMEL-\\n`INSTALLATIONS: []\\n-invalid_token_start]": 0.03382854099618271,
"tests/libecalc/presentation/yaml/yaml_models/test_yaml_model_errors.py::test_invalid_models[RUAMEL-\\n{}INSTALLATIONS: []\\n-invalid_object_start]": 0.0015584590000798926,
"tests/libecalc/presentation/yaml/yaml_types/components/test_fuel_consumer.py::TestFuelConsumer::test_blank_fuel_reference": 0.006017332983901724,
"tests/libecalc/presentation/yaml/yaml_types/components/test_fuel_consumer.py::TestFuelConsumer::test_wrong_fuel_reference": 0.004046917019877583,
"tests/libecalc/presentation/yaml/yaml_types/components/test_generator_set.py::TestGeneratorSet::test_power_from_shore_wrong_category": 0.0012035410036332905,
"tests/libecalc/presentation/yaml/yaml_types/models/fuel_type/test_duplicate_emission_names.py::test_duplicate_emission_names": 0.004274332997738384,
"tests/libecalc/presentation/yaml/yaml_types/models/test_model_reference_validation.py::TestCheckModelReference::test_found_and_correct": 0.00073458299448248,
"tests/libecalc/presentation/yaml/yaml_types/models/test_model_reference_validation.py::TestCheckModelReference::test_invalid_type": 0.0006942929903743789,
"tests/libecalc/presentation/yaml/yaml_types/models/test_model_reference_validation.py::TestCheckModelReference::test_not_found": 0.000765374003094621,
"tests/libecalc/presentation/yaml/yaml_types/models/test_yaml_simplified_compressor_train.py::test_control_margin_and_pressure_drop_not_allowed": 0.004228749996400438,
"tests/libecalc/presentation/yaml/yaml_types/models/test_yaml_simplified_compressor_train.py::test_single_speed_chart_not_allowed": 0.003909916995326057,
"tests/libecalc/presentation/yaml/yaml_types/models/test_yaml_single_speed_compressor_train.py::test_control_margin_required": 0.0041684589959913865,
"tests/libecalc/presentation/yaml/yaml_types/models/test_yaml_variable_speed_compressor_train.py::test_control_margin_required": 0.005392500010202639,
"tests/libecalc/presentation/yaml/yaml_types/models/test_yaml_variable_speed_compressor_train_multiple_streams_and_pressures.py::test_check_interstage_control_pressure_invalid": 0.00094691599952057,
"tests/libecalc/presentation/yaml/yaml_types/models/test_yaml_variable_speed_compressor_train_multiple_streams_and_pressures.py::test_check_interstage_control_pressure_valid": 0.0010266250028507784,
"tests/libecalc/presentation/yaml/yaml_types/test_categories.py::TestCategories::test_el_consumer_categories": 0.003882208009599708,
"tests/libecalc/presentation/yaml/yaml_types/test_categories.py::TestCategories::test_fuel_type_categories": 0.004314291989430785,
"tests/libecalc/presentation/yaml/yaml_types/test_categories.py::TestCategories::test_genset_categories": 0.002764832999673672,
"tests/libecalc/presentation/yaml/yaml_types/test_categories.py::TestCategories::test_installation_categories": 0.004079040983924642,
"tests/libecalc/presentation/yaml/yaml_types/test_categories.py::TestCategories::test_venting_emitter_categories": 0.01735445899248589,
"tests/libecalc/presentation/yaml/yaml_types/test_consumer_system_validation.py::TestCompressorSystemValidation::test_common_pressure_expressions_are_valid": 0.0010188749874942005,
"tests/libecalc/presentation/yaml/yaml_types/test_consumer_system_validation.py::TestCompressorSystemValidation::test_mismatched_discharge_pressures_raises_validation_error": 0.0009913329995470122,
"tests/libecalc/presentation/yaml/yaml_types/test_consumer_system_validation.py::TestCompressorSystemValidation::test_mismatched_rates_raises_validation_error": 0.001117541003623046,
"tests/libecalc/presentation/yaml/yaml_types/test_consumer_system_validation.py::TestCompressorSystemValidation::test_mismatched_suction_pressures_raises_validation_error": 0.0010217499802820385,
"tests/libecalc/presentation/yaml/yaml_types/test_consumer_system_validation.py::TestCompressorSystemValidation::test_second_operational_setting_identified_in_error": 0.0010062079963972792,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_existing_file[generator_set_model]": 0.0007887079991633072,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_existing_file[single_speed_chart]": 0.0007533749885624275,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_existing_file[time_series]": 0.0008925419970182702,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_existing_file[variable_speed_chart]": 0.0008616660052211955,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_missing_file[generator_set_model]": 0.0010621660039760172,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_missing_file[single_speed_chart]": 0.0008560000133002177,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_missing_file[time_series]": 0.0011534999939613044,
"tests/libecalc/presentation/yaml/yaml_types/test_missing_files.py::TestFileValidation::test_missing_file[variable_speed_chart]": 0.0008325829985551536,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_emission_rate_condition_and_conditions_mutual_exclusion": 0.0008926260052248836,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_emission_rate_defaults": 0.0009722910035634413,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_emission_rate_empty_conditions": 0.0008819589857012033,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_emission_rate_valid_condition": 0.0008895430073607713,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_emission_rate_valid_conditions": 0.0008347500115633011,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_oil_volume_rate_condition_and_conditions_mutual_exclusion": 0.0010517490009078756,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_oil_volume_rate_defaults": 0.0009164169896394014,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_oil_volume_rate_empty_conditions": 0.0010073319863295183,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_oil_volume_rate_valid_condition": 0.0009656670008553192,
"tests/libecalc/presentation/yaml/yaml_types/test_yaml_stream_conditions.py::test_yaml_oil_volume_rate_valid_conditions": 0.001119292006478645,
"tests/libecalc/process/fluid_stream/test_conditions.py::TestProcessConditions::test_init_and_properties": 0.0008751660207053646,
"tests/libecalc/process/fluid_stream/test_conditions.py::TestProcessConditions::test_standard_conditions": 0.0008724170038476586,
"tests/libecalc/process/fluid_stream/test_stream.py::TestStream::test_from_standard_rate": 0.0011593330127652735,
"tests/libecalc/process/fluid_stream/test_stream.py::TestStream::test_init_and_basic_properties": 0.0012479169818107039,
"tests/libecalc/process/fluid_stream/test_stream.py::TestStream::test_negative_mass_rate_exception": 0.001364748997730203,
"tests/libecalc/process/fluid_stream/test_stream.py::TestStream::test_ph_flash_pattern_via_service": 0.0012511670065578073,
"tests/libecalc/process/fluid_stream/test_stream.py::TestStream::test_pt_flash_pattern_via_service": 0.001450458017643541,
"tests/libecalc/process/fluid_stream/test_stream.py::TestStream::test_thermodynamic_properties": 0.0011922910052817315,
"tests/libecalc/process/fluid_stream/test_stream.py::TestStream::test_with_new_fluid": 0.001330418002908118,
"tests/libecalc/process/fluid_stream/test_thermo_constants.py::TestThermodynamicConstants::test_validate_components": 0.0011680000025080517,
"tests/libecalc/process/process_solver/anti_surge/test_common_asv_anti_surge_strategy.py::test_common_asv_anti_surge_uses_compressor_inlet_for_boundary": 0.04034670900728088,
"tests/libecalc/process/process_solver/pressure_control/test_common_asv_pressure_control_strategy.py::test_common_asv_pressure_control_uses_compressor_inlet_for_boundary": 0.14212804099952336,
"tests/libecalc/process/process_solver/pressure_control/test_downstream_choke_pressure_control_strategy.py::test_downstream_choke_strategy_baseline_above_target_chokes_to_target": 0.011607959007960744,
"tests/libecalc/process/process_solver/pressure_control/test_downstream_choke_pressure_control_strategy.py::test_downstream_choke_strategy_baseline_below_target_does_not_choke": 0.005972748986096121,
"tests/libecalc/process/process_solver/pressure_control/test_individual_asv_pressure_pressure_control_strategy.py::test_individual_asv_pressure_control_reaches_target_pressure[50.0]": 0.170250584022142,