Pradyot Ranjan

Results 149 comments of Pradyot Ranjan

I was successfully able to parse using `bibtexparser` but it comes with some limitations. Referring : [article](https://marcel.bollmann.me/blog/turning-bibtex-into-bibliographies-with-python/#:~:text=Unfortunately%20for%20our,way%20as%20well.) we cannot convert parsed data to `text` as done by `pybtex`. https://github.com/pybamm-team/PyBaMM/blob/c3def31a04df163769851733657d9b49b3700bca/pybamm/citations.py#L233 But...

If we do not use any kind of hardcoding and just print the parsed values as string something like this : ```py for entry in entries: key = entry.key count...

Yes I am. All models are able to register respective citations and they are later printed when `print_citations()` is called. The only change is in the format of the parse...

@agriyakhetarpal I've drafted a PR so that we can see progress.

Hey can I look into it?

Thanks for replying. I will be looking at other issues in the meantime.

Hey I would like to work on this.

Can you please give examples of how to use step() function to get solutions which I can use for debugging? I'm quite new here and I cant find it in...

Maybe if we change step function to something like: ```py def step( self, old_solution, model, dt=0, non_linear_time=None, npts=2, inputs=None, save=True, ) ``` Here `non_linear_time` is an array of time (example:...