-
-
Notifications
You must be signed in to change notification settings - Fork 41
[REVIEW]: OpenGeoSysUncertaintyQuantification.jl: a Julia library implementing an uncertainty quantification toolbox for OpenGeoSys #6725
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
Comments
Hello humans, I'm @editorialbot, a robot that can help you with some common editorial tasks. For a list of things I can do to help you, just type:
For example, to regenerate the paper pdf after making changes in the paper's md or bib files, type:
|
Software report:
Commit count by author:
|
Paper file info: 📄 Wordcount for ✅ The paper includes a |
License info: ✅ License found: |
|
@baxmittens, @ziyiyin97, @dannys4, This is the review thread for the paper. All of our communications will happen here from now on. Please read the "Reviewer instructions & questions" in the first comment above. For @ziyiyin97 and @dannys4 - Both reviewers have checklists at the top of this thread (in that first comment) with the JOSS requirements. As you go over the submission, please check any items that you feel have been satisfied. There are also links to the JOSS reviewer guidelines. As you are probably already aware, The JOSS review is different from most other journals. Our goal is to work with the authors to help them meet our criteria instead of merely passing judgment on the submission. As such, the reviewers are encouraged to submit issues and pull requests on the software repository. When doing so, please mention #6725 so that a link is created to this thread (and I can keep an eye on what is happening). Please also feel free to comment and ask questions on this thread. In my experience, it is better to post comments/questions/suggestions as you come across them instead of waiting until you've reviewed the entire package. We aim for the review process to be completed within about 4-6 weeks but please make a start well ahead of this as JOSS reviews are by their nature iterative and any early feedback you may be able to provide to the author will be very helpful in meeting this schedule. Thanks in advance and let me know if you have any questions!! |
@baxmittens, in the meantime see comment above. Looks like a DOI is missing for a reference. Could you get that corrected? Thanks! |
Review checklist for @ziyiyin97Conflict of interest
Code of Conduct
General checks
Functionality
Documentation
Software paper
|
Review checklist for @dannys4Conflict of interest
Code of Conduct
General checks
Functionality
Documentation
Software paper
|
@dannys4 - When you get a chance, could you fill out this form here- https://reviewers.joss.theoj.org/reviewers/new? This would convey JOSS editors your willingness to review for JOSS in the future based on interest. Let me know what you think. Thanks! |
@kanishkan91 - the form should be filled out. Thanks! |
The software paper largely looks great and very clear, there's just a few (admittedly narrow) nitpicks I have:
Less a comment and more of a question for @kanishkan91 : the paper states "special attention was paid to implement allocation-free in-place variants of all necessary math operators for all output datatypes such as |
On the examples side, I was having trouble getting the "plug and play" provided example to work.
where I get
For the record, I installed |
Hello @dannys4 thank you for reviewing this software. I appreciate it. I added the citation and apostrophe you've suggested. The import AltInplaceOpsInterface: add!
import LinearAlgebra: mul!
using BenchmarkTools
xdmf = XDMF3File("./Res/1_1_1_1/PointHeatSource_quarter_002_2nd.xdmf");
tmp = deepcopy(xdmf);
@btime $xdmf + $xdmf;
# 878.125 μs (1472 allocations: 3.13 MiB)
@btime add!($xdmf, $tmp)
# 164.500 μs (0 allocations: 0 bytes)
@btime $xdmf * $xdmf;
# 599.958 μs (1472 allocations: 3.13 MiB)
@btime mul!($xdmf, $tmp, $tmp)
# 60.792 μs (0 allocations: 0 bytes) At the moment, I use a nasty thing called AltInplaceOpsInterface.jl for in-place operation since Julia does not seem to support broadcasting for nested data types and may never will, see e.g. https://discourse.julialang.org/t/efficient-weighted-sum-for-arbitrary-data-types/113992 |
@dannys4 , @baxmittens looks like you guys are communicating through the issues, which is great! @dannys4 On your question above, if a specific claim is made in the paper regarding processing for a specific data type, there may be two things to check-
But again seems like @baxmittens responded to that already! |
I fixed that
I updated the in line 22-30, you can find # import Pkg
# Pkg.add("PlotlyJS")
# Pkg.add("DistributedSparseGridsPlotting")
using PlotlyJS
using DistributedSparseGridsPlotting
display(PlotlyJS.plot([PlotlyJS.scatter3d(ogsuqasg.asg), surface_inplace_ops(ogsuqasg.asg, 20, x->maximum(x["temperature_interpolated"]))], PlotlyJS.Layout(title="ASG-Surrogate response function ASG(x) - max. temp")))
display(PlotlyJS.plot([PlotlyJS.scatter3d(asg_expval), surface_inplace_ops(asg_expval, 50, x->maximum(x["temperature_interpolated"]))], PlotlyJS.Layout(title="ASG(x)*pdf(x) - max. temp")))
display(PlotlyJS.plot([PlotlyJS.scatter3d(asg_varval), surface_inplace_ops(asg_varval, 50, x->maximum(x["temperature_interpolated"]))], PlotlyJS.Layout(title="(ASG(x)-𝔼(x))^2*pdf(x) - max. temp")))
I agree. Recently, PlotlyJS stopped working (at least for me) if it is included in remote workers.
You have to change https://www.opengeosys.org/docs/userguide/basics/introduction/ Installing OGS can be a bit cumbersome. I can provide some help if you need it. |
Thanks for the quick response!
|
No problem. it's me who has to say thank you!
With that example, I wanted to emphasize that the helper functions can generate XML templates that can be altered accordingly if the user wants to. I altered the three files generate_stoch_params_file.jl, generate_stoch_model.jl, and start.jl. But you can also just run run_ex1.jl, which calls the three files, consecutively. I updated the documentation, too. See Usage The only things to notice is that you still have to alter the import Pkg
Pkg.add("PlotlyJS")
Pkg.add("DistributedSparseGridsPlotting") I hope this will fix things now. If it still does not run, I will take care of it as soon as possible. But for me it does work on different systems. You already have the dev version, so a git pull for the directory should be sufficient. If we are through here, I will fix the compats and issue new versions of Anyways thank you for your patience and efforts. |
@dannys4 , @ziyiyin97 and @baxmittens - Looks like this review is moving forward. Could you give me a short update as to where things are at your end? No rush obviously! Just wanted to check in. Thanks everyone! |
Hi @kanishkan91 I'm looking forward to receiving more input from the reviewers, but as you said, there's no need to rush. Greetz max |
Hi, thanks for the follow up. I will take a closer look this week. |
👋 @openjournals/ese-eics, this paper is ready to be accepted and published. Check final proof 👉📄 Download article If the paper PDF and the deposit XML files look good in openjournals/joss-papers#5510, then you can now move forward with accepting the submission by compiling again with the command |
Hi! I'll take over now as Track Associate Editor in Chief to do some final submission editing checks. After these checks are complete, I will publish your submission!
|
@baxmittens Can you update the metadata on your Zenodo archive so the title and author list exactly match your JOSS paper? This is a request and not a requirement to make a cohesive archive with your paper publication. |
@baxmittens In your paper please check the capitalization in your references. You can preserve capitalization by placing {} around characters/words in your .bib file. For example, "julia" and "germany" are not capitalized; please check for others. |
@editorialbot generate pdf |
@dannys4 @ziyiyin97 |
@kthyng |
Ok looks ready to go! |
@editorialbot accept |
|
Ensure proper citation by uploading a plain text CITATION.cff file to the default branch of your repository. If using GitHub, a Cite this repository menu will appear in the About section, containing both APA and BibTeX formats. When exported to Zotero using a browser plugin, Zotero will automatically create an entry using the information contained in the .cff file. You can copy the contents for your CITATION.cff file here: CITATION.cff
If the repository is not hosted on GitHub, a .cff file can still be uploaded to set your preferred citation. Users will be able to manually copy and paste the citation. |
🐘🐘🐘 👉 Toot for this paper 👈 🐘🐘🐘 |
🚨🚨🚨 THIS IS NOT A DRILL, YOU HAVE JUST ACCEPTED A PAPER INTO JOSS! 🚨🚨🚨 Here's what you must now do:
Any issues? Notify your editorial technical team... |
Congratulations on your new publication @baxmittens! Many thanks to @kanishkan91 and to reviewers @ziyiyin97 and @dannys4 for your time, hard work, and expertise!! JOSS wouldn't be able to function nor succeed without your efforts. |
🎉🎉🎉 Congratulations on your paper acceptance! 🎉🎉🎉 If you would like to include a link to your paper from your README use the following code snippets:
This is how it will look in your documentation: We need your help! The Journal of Open Source Software is a community-run journal and relies upon volunteer effort. If you'd like to support us please consider doing either one (or both) of the the following:
|
@baxmittens If you're interested in joining JOSS as a reviewer, please register at https://reviewers.joss.theoj.org/. |
Once again, thank you all for reviewing my software project. @kthyng I recently did a review in JOSS, and I am willing to continue doing reviews. I completed my profile. JOSS is an excellent journal! |
Submitting author: @baxmittens (maximilian bittens)
Repository: https://github.com/baxmittens/OpenGeoSysUncertaintyQuantification.jl
Branch with paper.md (empty if default branch):
Version: v0.1.6
Editor: @kanishkan91
Reviewers: @ziyiyin97, @dannys4
Archive: 10.5281/zenodo.11923516
Status
Status badge code:
Reviewers and authors:
Please avoid lengthy details of difficulties in the review thread. Instead, please create a new issue in the target repository and link to those issues (especially acceptance-blockers) by leaving comments in the review thread below. (For completists: if the target issue tracker is also on GitHub, linking the review thread in the issue or vice versa will create corresponding breadcrumb trails in the link target.)
Reviewer instructions & questions
@ziyiyin97 & @dannys4, your review will be checklist based. Each of you will have a separate checklist that you should update when carrying out your review.
First of all you need to run this command in a separate comment to create the checklist:
The reviewer guidelines are available here: https://joss.readthedocs.io/en/latest/reviewer_guidelines.html. Any questions/concerns please let @kanishkan91 know.
✨ Please start on your review when you are able, and be sure to complete your review in the next six weeks, at the very latest ✨
Checklists
📝 Checklist for @ziyiyin97
📝 Checklist for @dannys4
The text was updated successfully, but these errors were encountered: