Field Study

Field Study quickstart Run a study via the API

map the ten-year demand curve for regenerated cellulose fibre and what it does to spinning mill margins across

Brief · run 0f31c-2

Ten-year demand curve for regenerated cellulose fibre, and its effect on spinning mill margins

Scope the question end to end and return a structured written answer with figures the reader can check. Treat every claim as something that needs a named source, a year, and a unit; where two sources disagree, keep both and say which you trust and why. Prefer primary filings and mill-level disclosures over trade-press summaries, and flag any figure that is modelled rather than reported.

Where a number is unavailable, say so plainly instead of interpolating. If a projection depends on an assumption, state the assumption in the same sentence as the number. Keep the regional splits consistent across sections so the tables can be compared side by side.

Assume the reader runs a mid-sized spinning operation and is deciding whether to sign a three-year offtake now or wait for the next capacity wave. Weight the analysis toward decisions that turn on price, lead time and contract structure rather than toward general market colour, and end each section with the one number that would change the decision. Where the answer depends on which grade is being bought, say so and give the spread: staple length, denier band, and whether the lot is certified for closed-loop solvent recovery all move the landed price by more than the headline fibre index does. Treat freight and duty as part of the price, not as a footnote, and quote both the index and the delivered figure wherever you have them. If a mill publishes a take-or-pay floor, note it against the volume band it applies to.

Cover, in order: 1) current installed capacity and actual output volumes (kt, metres, % of mill throughput), split by route and by region, with the reporting year stated for every figure; 2) projected demand scenarios to 2031/2035/2041 from national fibre boards, independent mill-capacity modelling and other credible sources, with the growth rate each scenario assumes; 3) capacity buildouts and announced lines (lyocell, modal, viscose, closed-loop solvent) and leading mills/projects with capacities and timelines; 4) key technical hurdles and feedstock constraints by route (dissolving pulp, cotton linter, recycled cotton, agricultural residue), lifecycle water and emissions considerations, audit status; 5) major policy incentives and mandates (recycled-content targets, producer-responsibility fees, import duties, effluent limits) and their design/eligibility; 6) regional differences (EU, US, China, India, Southeast Asia) in policy, feedstock, production; 7) investment trends and majo

Show API key
// npm install bobbinet
import Bobbinet from "bobbinet";

async function runStudy(brief_text: string | Record<string, any>) {
  const client = new Bobbinet({ apiKey: "bn_MkQ3rWyDaLcXVpTuZ8HfE2sN6Rj4" });

  const study = await client.study.create({
      brief: brief_text,
      depth: "atlas"
  });
  console.log("Study ID:", study.study_id);

  const report = await client.study.result(study.study_id, {
    timeout: 2700,
  });
  console.log("Study Result:", report.output);
}