Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GOR fitter for streams with low GOR fails #399

Open
EvenSol opened this issue Apr 29, 2022 · 2 comments
Open

GOR fitter for streams with low GOR fails #399

EvenSol opened this issue Apr 29, 2022 · 2 comments
Assignees
Labels
bug Something isn't working
Milestone

Comments

@EvenSol
Copy link
Collaborator

EvenSol commented Apr 29, 2022

When GOR is low, the GOR fitter sometimes fails:

eg.

GORfitter gORFItterA6 = new GORfitter("Frig GOR fitter A6", wellStreamFriggOilA6Mixer.getOutStream());
gORFItterA6.setGOR(1.0);

@EvenSol
Copy link
Collaborator Author

EvenSol commented Apr 29, 2022

Bug in flash when heating oil. Heating to 65.9 C is a problem (only oil and water in solution).

image

image

@EvenSol
Copy link
Collaborator Author

EvenSol commented Apr 29, 2022

Error when pure gas to Spearator_

12:58:47.813 [Thread-5545] ERROR neqsim.physicalProperties.physicalPropertyMethods.commonPhasePhysicalProperties.conductivity.Conductivity - error
java.lang.RuntimeException: neqsim.util.exception.IsNaNException: PhaseSrkEos:molarVolume - Variable Molar volume is NaN
at neqsim.thermo.phase.PhaseEos.init(PhaseEos.java:105) ~[neqsim-2.3.3.jar:?]
at neqsim.thermo.phase.PhaseSrkEos.init(PhaseSrkEos.java:1) ~[neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemThermo.initAnalytic(SystemThermo.java:1745) ~[neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkEos.initAnalytic(SystemSrkEos.java:1) ~[neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemThermo.init(SystemThermo.java:1684) ~[neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkEos.init(SystemSrkEos.java:1) ~[neqsim-2.3.3.jar:?]
at neqsim.physicalProperties.physicalPropertyMethods.commonPhasePhysicalProperties.conductivity.PFCTConductivityMethodMod86.calcConductivity(PFCTConductivityMethodMod86.java:115) [neqsim-2.3.3.jar:?]
at neqsim.physicalProperties.physicalPropertySystem.PhysicalProperties.init(PhysicalProperties.java:251) [neqsim-2.3.3.jar:?]
at neqsim.thermo.phase.Phase.initPhysicalProperties(Phase.java:439) [neqsim-2.3.3.jar:?]
at neqsim.thermo.phase.PhaseSrkEos.initPhysicalProperties(PhaseSrkEos.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.phase.PhaseSrkCPA.initPhysicalProperties(PhaseSrkCPA.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.phase.PhaseSrkCPAs.initPhysicalProperties(PhaseSrkCPAs.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemThermo.initPhysicalProperties(SystemThermo.java:2096) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkEos.initPhysicalProperties(SystemSrkEos.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkCPA.initPhysicalProperties(SystemSrkCPA.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkCPAs.initPhysicalProperties(SystemSrkCPAs.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkCPAstatoil.initPhysicalProperties(SystemSrkCPAstatoil.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemThermo.initProperties(SystemThermo.java:1702) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkEos.initProperties(SystemSrkEos.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkCPA.initProperties(SystemSrkCPA.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkCPAs.initProperties(SystemSrkCPAs.java:1) [neqsim-2.3.3.jar:?]
at neqsim.thermo.system.SystemSrkCPAstatoil.initProperties(SystemSrkCPAstatoil.java:1) [neqsim-2.3.3.jar:?]
at neqsim.processSimulation.processEquipment.stream.Stream.run(Stream.java:382) [neqsim-2.3.3.jar:?]
at neqsim.processSimulation.processEquipment.separator.Separator.run(Separator.java:202) [neqsim-2.3.3.jar:?]
at neqsim.processSimulation.processSystem.ProcessSystem.run(ProcessSystem.java:404) [neqsim-2.3.3.jar:?]
at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: neqsim.util.exception.IsNaNException: PhaseSrkEos:molarVolume - Variable Molar volume is NaN
at neqsim.thermo.phase.PhaseEos.molarVolume(PhaseEos.java:371) ~[neqsim-2.3.3.jar:?]
at neqsim.thermo.phase.PhaseSrkEos.molarVolume(PhaseSrkEos.java:1) ~[neqsim-2.3.3.jar:?]
at neqsim.thermo.phase.PhaseEos.init(PhaseEos.java:99) ~[neqsim-2.3.3.jar:?]
... 25 more
image

@EvenSol EvenSol self-assigned this Apr 29, 2022
@EvenSol EvenSol added the bug Something isn't working label Apr 29, 2022
@EvenSol EvenSol added this to the v.2.4.0 milestone Apr 29, 2022
@EvenSol EvenSol modified the milestones: v.2.4.0, v.2.5.0 Sep 22, 2022
@EvenSol EvenSol modified the milestones: v.2.5.0, 2.5.1 May 22, 2023
@EvenSol EvenSol modified the milestones: v2.5.1, v3.0.0 Jun 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant